Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- '3.2'
- '3.3'
- '3.4'
- '4.0'
fail-fast: false

steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [Unreleased]

- Support Ruby 4.0

## [1.2.1] - 2026-06-10

- Require `oauth2 >= 2.0.22` to address GHSA-pp92-crg2-gfv9, where a
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ PATH
specs:
booqable (1.2.1)
addressable (~> 2.8)
cgi (~> 0.5)
faraday (~> 2.13)
faraday-retry (~> 2.3)
jwt (~> 3.1)
Expand Down Expand Up @@ -44,6 +45,7 @@ GEM
base64 (0.3.0)
benchmark (0.5.0)
bigdecimal (4.1.2)
cgi (0.5.2)
concurrent-ruby (1.3.7)
connection_pool (3.0.2)
crack (1.0.1)
Expand Down
1 change: 1 addition & 0 deletions booqable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "addressable", "~> 2.8"
spec.add_dependency "oauth2", "~> 2.0", ">= 2.0.22"
spec.add_dependency "jwt", "~> 3.1"
spec.add_dependency "cgi", "~> 0.5"
Comment thread
shime marked this conversation as resolved.
Comment thread
shime marked this conversation as resolved.

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down
1 change: 1 addition & 0 deletions lib/booqable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
require "json"
require "sawyer"
require "sawyer/link_parsers/simple"
require "cgi"

# Internal
require_relative "booqable/version"
Expand Down
Loading