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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ end

group :test do
gem "rspec", "~> 3.0", "< 3.10" # resrict rspec version until https://github.com/rspec/rspec-support/pull/537 gets merged
gem "vcr", github: 'vcr/vcr', ref: '8ced6c96e01737a418cd270e0382a8c2c6d85f7f' # needs https://github.com/vcr/vcr/pull/907 for ruby 3.1
gem "vcr", github: 'vcr/vcr', ref: 'ce35c236fe48899f02ddf780973b44cdb756c0ee' # needs https://github.com/vcr/vcr/issues/1057 for ruby 3.5
gem "webmock"
gem "simplecov"
end
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ Removed features:
Internal improvements:

* explicitly require ostruct for ruby >= 3.3.5 ([694](https://github.com/arsduo/koala/pull/694))
* explicitly require cgi for ruby >= 3.5.0 ([702](https://github.com/arsduo/koala/pull/702))

Testing improvements:

* Add ruby 3.4 to CI ([696](https://github.com/arsduo/koala/pull/696))
* Fix json assertions in CI ([701](https://github.com/arsduo/koala/pull/701))
* Fix ruby 3.5 CI ([702](https://github.com/arsduo/koala/pull/702))

Others:

Expand Down
1 change: 1 addition & 0 deletions koala.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency("rexml")
gem.add_runtime_dependency("base64")
gem.add_runtime_dependency("ostruct")
gem.add_runtime_dependency("cgi")
end
1 change: 1 addition & 0 deletions lib/koala/api/graph_collection.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require 'addressable/uri'
require 'cgi'

module Koala
module Facebook
Expand Down