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/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
"gemfiles/graphql_2_1_4.gemfile",
"gemfiles/graphql_2_3_0.gemfile",
"gemfiles/graphql_2_3_11.gemfile",
"gemfiles/graphql_2_4_8.gemfile",
"gemfiles/graphql_master.gemfile"
]
exclude:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
ruby-version: 3.1
bundler-cache: true
bundler: 2.2.0
- name: Lint Ruby code with RuboCop
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master

- [PR#125](https://github.com/DmitryTsepelev/graphql-ruby-fragment_cache/pull/125) Introduce cache lookup instrumentation hook ([@danielhartnell][])

## 1.20.5 (2024-11-02)

- [PR#120](https://github.com/DmitryTsepelev/graphql-ruby-fragment_cache/pull/120) Fix warning on ActiveSupport::Cache.format_version ([@Drowze][])
Expand Down Expand Up @@ -211,3 +213,4 @@
[@diegofigueroa]: https://github.com/diegofigueroa
[@noma4i]: https://github.com/noma4i
[@Drowze]: https://github.com/Drowze
[@danielhartnell]: https://github.com/danielhartnell
5 changes: 5 additions & 0 deletions gemfiles/graphql_2_4_8.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "graphql", "~> 2.4.8"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rubocop.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ source "https://rubygems.org" do
gem "rubocop-md", "~> 0.3"
gem "standard", "1.20.0"
gem "ruby-next", ">= 0.7.0"
gem "base64"
end
Loading