Release 1.2.2 - #48
Closed
shime wants to merge 1 commit into
Closed
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR publishes release 1.2.2, primarily to ship the Rails 8.1+ CGI.parse crash fix (by requiring cgi) and the Ruby 4.0 compatibility changes from #47.
Changes:
- Bump gem version from 1.2.1 → 1.2.2
- Update lockfile to reflect the new version
- Add a 1.2.2 changelog entry describing Ruby 4.0 support and the
cgirequire/dependency fix
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| lib/booqable/version.rb | Version constant bumped to 1.2.2 |
| Gemfile.lock | Updates local gem version reference to 1.2.2 |
| CHANGELOG.md | Adds 1.2.2 release notes for Ruby 4.0 + cgi runtime dependency/require |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1
to
2
| ## [1.2.2] - 2026-07-14 | ||
|
|
Merged
Member
Author
shime
added a commit
that referenced
this pull request
Jul 14, 2026
Supersedes #48. The `Booqable::MissingAttribute` change (#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: - **Breaking:** reading an attribute absent from an API payload raises `Booqable::MissingAttribute` instead of silently returning nil (#46) - Require `cgi` and declare it as a runtime dependency, fixing `undefined method 'parse' for class CGI` when handling `invalid_grant` OAuth errors under Rails 8.1+ (#47) - Ruby 4.0 support (#47) 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- devin-review-badge-begin --> --- <a href="https://app.devin.ai/review/booqable/booqable.rb/pull/49" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://static.devin.ai/assets/gh-open-in-devin-review-dark.svg?v=1"> <img src="https://static.devin.ai/assets/gh-open-in-devin-review-light.svg?v=1" alt="Open in Devin Review"> </picture> </a> <!-- devin-review-badge-end --> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
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.
Releases the
require "cgi"fix (#47) so apps stop crashing withundefined method 'parse' for class CGIwhen the gem handlesinvalid_grantOAuth errors — Rails 8.1+ only loadscgi/escape, soCGI.parsewas undefined at the pointBooqable::Errorclassified the response.Also includes Ruby 4.0 support from #47.
🤖 Generated with Claude Code