Release 2.0.0 - #49
Merged
Merged
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Closed
There was a problem hiding this comment.
Pull request overview
This PR prepares the booqable gem for the 2.0.0 release, reflecting a breaking behavioral change that already landed on main (raising Booqable::MissingAttribute for absent attributes), plus the Rails 8.1+/CGI fix and Ruby 4.0 support.
Changes:
- Bump gem version to
2.0.0. - Update
Gemfile.lockto reflect the new gem version. - Finalize the changelog entry for
2.0.0(dated 2026-07-14) including the breaking change and dependency/runtime notes.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| lib/booqable/version.rb | Updates the gem’s VERSION constant to 2.0.0. |
| Gemfile.lock | Updates the local path gem version to 2.0.0. |
| CHANGELOG.md | Adds the 2.0.0 release section describing breaking change + runtime dependency fix. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Supersedes #48. The
Booqable::MissingAttributechange (#46) landed on main after that PR was opened — it's breaking, so this release is 2.0.0 instead of 1.2.2.Included since 1.2.1:
Booqable::MissingAttributeinstead of silently returning nil (Raise Booqable::MissingAttribute for reads of absent attributes #46)cgiand declare it as a runtime dependency, fixingundefined method 'parse' for class CGIwhen handlinginvalid_grantOAuth errors under Rails 8.1+ (Support ruby 4.0 #47)🤖 Generated with Claude Code