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.
Now that we have a chain upgrade test #430, this forces our repository to always have an active upgrade handler. With this PR, I propose that we have a
latest
upgrade handler where all the upcoming upgrade logic goes into. This way any missing upgrade handling will be caught immediately by the developer who was working on the feature, as opposed to whoever adds in the upgrade handler prior to release. Whenever we decide to cut a release, we can rename the upgrade handler fromlatest
tov5.0.0
or something like that.One overhead with this to keep track of is that once we tag a release, we would have to do a maintenance PR like this which creates a new upgrade handler post release.