Update appraisal gemfiles with latest versions #66
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.
I ran
bundle exec appraisal update
to update the gemfiles with the latest versions. I couldn't figure out how to run that command for updating Bundler so I updated each committed lock file with the current Bundler version to resolve thewarning: constant DidYouMean::SPELL_CHECKERS is deprecated
warnings.CI is currently failing in other PR's because several dependencies (e.g. sass-embedded, zeitwerk, sqlite3, net-imap, etc.) now have different Ruby version requirements and since the lock files were being deleted in CI, it was pulling incompatible versions. This set a baseline in the default Gemfile, for example, using zeitwerk 2.6.x since 2.7.x requires Ruby 3.2+.
This required even more version locks due to other dependencies dropping Ruby 3.0 support. I figured it would be acceptable to remove Ruby 3.0 from the CI matrix to less the burden of gemfile management. If Ruby 3.0 support is preferred, it can be resolved it'll just take more work to get the gemfiles in a good state.