[update-config.csx] Add ability to "freeze" updates for an artifact. #602
+11
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We recently added a binding for
Xamarin.Google.Android.InstallReferrer. However, we only bound version1.0.0because it wasApache 2.0licensed. Newer versions of this package are licensed asAndroid Software Development Kit Licenseand thus we cannot bind them without reworking the package to use XBD.However, our update script is going to see the newer version every week and attempt to automatically update it. Eventually we will forget and approve it, which will put us out of license compliance.
As a fix, add a new feature to the update script where an artifact can be marked as
"frozen": true. When an artifact is marked like this the update script will not attempt to update the package. Additionally, the package will be marked with a#in the output to indicate it is frozen:This feature may also come in handy if there is a package update that will require substantial manual intervention. We could mark that package as frozen so we can continue to automatically update other packages while we do the needed manual work.