Skip to content

Commit 1ad31eb

Browse files
committed
squash: damage
1 parent 0656c8f commit 1ad31eb

File tree

1 file changed

+6
-23
lines changed

1 file changed

+6
-23
lines changed

instrumentation/graphql/Appraisals

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,16 @@
44
#
55
# SPDX-License-Identifier: Apache-2.0
66

7-
# Max compatible version of 1.x
8-
appraise 'graphql-1.x' do
9-
gem 'graphql', '~> 1.13'
10-
end
11-
12-
# A bug was introduced in 2.0.18 that was fixed in 2.0.19
13-
appraise 'graphql-2.0.18' do
14-
gem 'graphql', '2.0.18'
15-
end
16-
177
# Max compatible version of 2.0.x
18-
appraise 'graphql-2.0' do
19-
gem 'graphql', '~> 2.0.27'
20-
end
21-
22-
# Max compatible version of 2.1.x
23-
appraise 'graphql-2.1' do
24-
gem 'graphql', '~> 2.1.8'
25-
end
268

27-
appraise 'graphql-c_parser-2.2.x' do
28-
gem 'graphql', '~> 2.2.1'
29-
gem 'graphql-c_parser', '~> 1.0.7'
9+
(0..4).each do |minor_version|
10+
appraise "graphql-2.#{minor_version}.x" do
11+
gem 'graphql', "~> 2.#{minor_version}.0"
12+
end
3013
end
3114

32-
appraise 'graphql-2.2.x' do
33-
gem 'graphql', '~> 2.2.1', '< 3.0.0'
15+
(0..1).each do |minor_version|
16+
gem 'graphql-c_parser', "~> 1.#{minor_version}.0"
3417
end
3518

3619
appraise 'graphql-c_parser-latest' do

0 commit comments

Comments
 (0)