From d8396b3cfadb6f2710732a3cd6f1ae6bc2851e85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivo=20Mei=C3=9Fner?= Date: Thu, 21 Oct 2021 06:49:58 -0500 Subject: [PATCH] Drop support for graphql < v14.5.0 --- .circleci/config.yml | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2dbb463..f59e3ec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -22,7 +22,7 @@ jobs: parameters: graphql-version: type: string - default: "" + default: '' docker: # specify the version you desire here @@ -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 >> diff --git a/package.json b/package.json index 5e86a21..c6efcfe 100644 --- a/package.json +++ b/package.json @@ -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",