File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## 0.2.1 - 2021-02-09
9
+
10
+ ### Fixed
11
+
12
+ - Ruby 3.0 compatibility. [ @Envek ]
13
+
8
14
## 0.2.0 - 2020-03-21
9
15
10
16
### Changed
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ def before_query(query)
6
6
end
7
7
8
8
def after_query ( query )
9
- cache ( query ) . each do |_path , tags : , duration : |
10
- Yabeda . graphql . field_resolve_runtime . measure ( tags , duration )
11
- Yabeda . graphql . fields_request_count . increment ( tags )
9
+ cache ( query ) . each do |_path , options |
10
+ Yabeda . graphql . field_resolve_runtime . measure ( options [ : tags] , options [ : duration] )
11
+ Yabeda . graphql . fields_request_count . increment ( options [ : tags] )
12
12
end
13
13
end
14
14
Original file line number Diff line number Diff line change 1
1
module Yabeda
2
2
module GraphQL
3
- VERSION = "0.2.0 "
3
+ VERSION = "0.2.1 "
4
4
end
5
5
end
You can’t perform that action at this time.
0 commit comments