You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running the GenerateDocs.ps1 script, ahead of releasing version
2.3.0, it was found that the production docs has been updated to make
some changes, for example, removal of older version numbers that no
longer need to be displayed. This commit addresses this change in the
production docs, but making the same change in the source code, so that
the next time that GenerateDocs.ps1 is run, the output will better
match what is already in place.
config.Features.UsePackageRepositoryOptimizations=SetFeatureFlag(ApplicationParameters.Features.UsePackageRepositoryOptimizations,configFileSettings,defaultEnabled:true,description:"Use Package Repository Optimizations - Turn on optimizations for reducing bandwidth with repository queries during package install/upgrade/outdated operations. Should generally be left enabled, unless a repository needs to support older methods of query. When disabled, this makes queries similar to the way they were done in earlier versions of Chocolatey.");
341
341
config.Features.UsePackageHashValidation=SetFeatureFlag(ApplicationParameters.Features.UsePackageHashValidation,configFileSettings,defaultEnabled:false,description:"Use Package Hash Validation - Check the hash of the downloaded package file against the source provided hash. Only supports sources that provide SHA512 hashes. Disabled by default. Available in 2.3.0+");
342
342
config.PromptForConfirmation=!SetFeatureFlag(ApplicationParameters.Features.AllowGlobalConfirmation,configFileSettings,defaultEnabled:false,description:"Prompt for confirmation in scripts or bypass.");
343
-
config.DisableCompatibilityChecks=SetFeatureFlag(ApplicationParameters.Features.DisableCompatibilityChecks,configFileSettings,defaultEnabled:false,description:"Disable Compatibility Checks - Disable showing a warning when there is an incompatibility between Chocolatey CLI and Chocolatey Licensed Extension. Available in 1.1.0+");
343
+
config.DisableCompatibilityChecks=SetFeatureFlag(ApplicationParameters.Features.DisableCompatibilityChecks,configFileSettings,defaultEnabled:false,description:"Disable Compatibility Checks - Disable showing a warning when there is an incompatibility between Chocolatey CLI and Chocolatey Licensed Extension.");
"SkipCompatibilityChecks - Prevent warnings being shown before and after command execution when a runtime compatibility problem is found between the version of Chocolatey and the Chocolatey Licensed Extension. Available in 1.1.0+",
459
+
"SkipCompatibilityChecks - Prevent warnings being shown before and after command execution when a runtime compatibility problem is found between the version of Chocolatey and the Chocolatey Licensed Extension.",
"Allow Self-Service - Should this source be allowed to be used with self-service? Requires business edition (v1.10.0+) with feature 'useBackgroundServiceWithSelfServiceSourcesOnly' turned on. Defaults to false.",
73
+
"Allow Self-Service - Should this source be allowed to be used with self-service? Requires business edition with feature 'useBackgroundServiceWithSelfServiceSourcesOnly' turned on. Defaults to false.",
0 commit comments