Skip to content

Commit

Permalink
Drop support for graphql < v14.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivome committed Oct 21, 2021
1 parent 7d045b1 commit d8396b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Expand Up @@ -12,7 +12,7 @@ workflows:
# definitions for field extensions in older @types/graphql versions
matrix:
parameters:
graphql-version: ["~0.13", "~14.0", "~14.5", "~14.6", "~15.0"]
graphql-version: ['~14.5', '~14.6', '~15.0']
- test-and-build:
# Leave graphql-version unspecified to respect the lockfile and also run tsc
name: test-and-build-with-typecheck
Expand All @@ -22,7 +22,7 @@ jobs:
parameters:
graphql-version:
type: string
default: ""
default: ''

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

- when:
condition: << parameters.graphql-version >>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,7 +24,7 @@
"lodash.get": "^4.4.2"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
"graphql": "^14.5.0 || ^15.0.0"
},
"files": [
"dist",
Expand Down

0 comments on commit d8396b3

Please sign in to comment.