Skip to content

Commit d8396b3

Browse files
committed
Drop support for graphql < v14.5.0
1 parent 7d045b1 commit d8396b3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ workflows:
1212
# definitions for field extensions in older @types/graphql versions
1313
matrix:
1414
parameters:
15-
graphql-version: ["~0.13", "~14.0", "~14.5", "~14.6", "~15.0"]
15+
graphql-version: ['~14.5', '~14.6', '~15.0']
1616
- test-and-build:
1717
# Leave graphql-version unspecified to respect the lockfile and also run tsc
1818
name: test-and-build-with-typecheck
@@ -22,7 +22,7 @@ jobs:
2222
parameters:
2323
graphql-version:
2424
type: string
25-
default: ""
25+
default: ''
2626

2727
docker:
2828
# specify the version you desire here
@@ -36,9 +36,9 @@ jobs:
3636
# Download and cache dependencies
3737
- restore_cache:
3838
keys:
39-
- v1-dependencies-{{ checksum "package.json" }}-<< parameters.graphql-version >>
40-
# fallback to using the latest cache if no exact match is found
41-
- v1-dependencies-
39+
- v1-dependencies-{{ checksum "package.json" }}-<< parameters.graphql-version >>
40+
# fallback to using the latest cache if no exact match is found
41+
- v1-dependencies-
4242

4343
- when:
4444
condition: << parameters.graphql-version >>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"lodash.get": "^4.4.2"
2525
},
2626
"peerDependencies": {
27-
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
27+
"graphql": "^14.5.0 || ^15.0.0"
2828
},
2929
"files": [
3030
"dist",

0 commit comments

Comments
 (0)