-
Notifications
You must be signed in to change notification settings - Fork 903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove deprecated configurations from Config #2630
Comments
AdmiringWorm
added
the
ADD AUTO TESTS
Things that typically go to Test-Kitchen - once completed, IN REGRESSION TEST SUITE label added
label
Mar 8, 2022
gep13
added a commit
to gep13/choco
that referenced
this issue
Mar 8, 2022
These properties had previously been marked as Obsolete, and since we are releasing the 1.0.0 version of Chocolatey, the decision has been taken to remove these properties completely. There were some usages of these properties, in the Equals and GetHashCode methods for the class, but their removal isn't believed to cause any issues. A new OfEach method was added to the HashCode class to handle the scenario where the first property passed in to generate the overall hashcode for the class was of type IEnumerable.
9 tasks
This is bumped back to v2.0.0 instead. Removal of these will break the compatibility of some versions of other products we support, as such until we stop supporting these versions we can not remove these configuration values. |
AdmiringWorm
added
Blocked - External
Requires Upstream Change
Requires changes to a different location once issue is fixed or implemented
labels
Mar 10, 2022
gep13
added a commit
to gep13/choco
that referenced
this issue
Mar 17, 2023
These properties had previously been marked as Obsolete, and since we are releasing the 2.0.0 version of Chocolatey, the decision has been taken to remove these properties completely. There were some usages of these properties, in the Equals and GetHashCode methods for the class, but their removal isn't believed to cause any issues. In addition, we have moved away from using the custom HashCode class, in favour of the new HashCode class that has been created in the .NET Framework. We didn't have access to this class before, since we were still targetting .NET Framework 4.0.
gep13
added a commit
that referenced
this issue
Mar 17, 2023
…-from-configfilesettings (#2630) Remove properties from ConfigFileSettings
gep13
added
4 - Done
and removed
3 - Review
Blocked - External
Requires Upstream Change
Requires changes to a different location once issue is fixed or implemented
ADD AUTO TESTS
Things that typically go to Test-Kitchen - once completed, IN REGRESSION TEST SUITE label added
labels
Mar 17, 2023
🎉 This issue has been resolved in version 2.0.0 🎉 The release is available on: Your GitReleaseManager bot 📦🚀 |
gep13
added a commit
to gep13/choco
that referenced
this issue
Jun 22, 2023
Previously, in this commit: chocolatey@da19356#diff-cb6a0471e41268b22a928bd57a59d51b70b7024e9beb30e89a330e193a089eba The usage of the top level CacheLocation and CommandExecutionTimeoutSeconds values had been removed, since these top level properties within the chocolatey.config had been replaced with values contained within the config section of the chocolatey.config file. However, the changes in that commit were too aggressive, and removed the call to the set_config_item (which has subsequently been renamed to SetConfigItem). The method call does the work of taking any value that is defined in the chocolatey.config for a given property name, and adding it to the ChocolateyConfiguration instance. When this method call was removed, it stopped setting the property value on the instance, and as a result, values that had been configured in the chocolatey.config file were ignored. They were still in play when the configuration was passed in via a command line option, but not when defining them in the chocolatey.config file. The removal of this call to the set_config_item method also explains why it was necessary to apply this bug fix in Chocolatey GUI: chocolatey/ChocolateyGUI#1003 The method call also had the effect of setting the description on the configuration value, which would have meant that Chocolatey GUI wouldn't have thrown a null reference exception. The change in Chocolatey GUI is still valid though, as there are times when a config value can have a missing description, so it makes sense to leave that fix in place.
10 tasks
gep13
added a commit
to gep13/choco
that referenced
this issue
Jun 23, 2023
Previously, in this commit: chocolatey@da19356#diff-cb6a0471e41268b22a928bd57a59d51b70b7024e9beb30e89a330e193a089eba The usage of the top level CacheLocation and CommandExecutionTimeoutSeconds values had been removed, since these top level properties within the chocolatey.config had been replaced with values contained within the config section of the chocolatey.config file. However, the changes in that commit were too aggressive, and removed the call to the set_config_item (which has subsequently been renamed to SetConfigItem). The method call does the work of taking any value that is defined in the chocolatey.config for a given property name, and adding it to the ChocolateyConfiguration instance. When this method call was removed, it stopped setting the property value on the instance, and as a result, values that had been configured in the chocolatey.config file were ignored. They were still in play when the configuration was passed in via a command line option, but not when defining them in the chocolatey.config file. The removal of this call to the set_config_item method also explains why it was necessary to apply this bug fix in Chocolatey GUI: chocolatey/ChocolateyGUI#1003 The method call also had the effect of setting the description on the configuration value, which would have meant that Chocolatey GUI wouldn't have thrown a null reference exception. The change in Chocolatey GUI is still valid though, as there are times when a config value can have a missing description, so it makes sense to leave that fix in place.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The root elements
cacheLocation
andcommandExecutionTimoutSeconds
are deprecated as these are now handled in a different way instead together with other configuration values.These two are scheduled to be removed in v1 of Chocolatey.
https://github.com/chocolatey/choco/blob/develop/src/chocolatey/infrastructure.app/configuration/ConfigFileSettings.cs#L30-L36
The text was updated successfully, but these errors were encountered: