diff --git a/.changeset/lazy-pets-accept.md b/.changeset/lazy-pets-accept.md deleted file mode 100644 index 9e73e36043e..00000000000 --- a/.changeset/lazy-pets-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-eslint/eslint-plugin': minor ---- - -feat: add new rule `no-root-type` diff --git a/.changeset/metal-squids-listen.md b/.changeset/metal-squids-listen.md deleted file mode 100644 index a5ffbcd7cb8..00000000000 --- a/.changeset/metal-squids-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-eslint/eslint-plugin': patch ---- - -fix: make works graphql-eslint in yarn berry diff --git a/.changeset/shiny-buttons-relax.md b/.changeset/shiny-buttons-relax.md deleted file mode 100644 index d2e676c8f87..00000000000 --- a/.changeset/shiny-buttons-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-eslint/eslint-plugin': minor ---- - -fix false positive case in `no-unreachable-types` rule when directive on root schema is used diff --git a/.changeset/short-dolphins-brush.md b/.changeset/short-dolphins-brush.md deleted file mode 100644 index e3f7f251bee..00000000000 --- a/.changeset/short-dolphins-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphql-eslint/eslint-plugin': minor ---- - -fix false positive case in `known-fragment-names` when import nested fragment diff --git a/examples/basic/package.json b/examples/basic/package.json index 7f71295597c..3a44fd2b2b0 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -12,7 +12,7 @@ "graphql": "16.0.1" }, "devDependencies": { - "@graphql-eslint/eslint-plugin": "2.4.1", + "@graphql-eslint/eslint-plugin": "2.5.0", "eslint": "8.2.0" } } diff --git a/examples/code-file/package.json b/examples/code-file/package.json index 960f449cee4..5ce00c89f49 100644 --- a/examples/code-file/package.json +++ b/examples/code-file/package.json @@ -12,7 +12,7 @@ "graphql": "16.0.1" }, "devDependencies": { - "@graphql-eslint/eslint-plugin": "2.4.1", + "@graphql-eslint/eslint-plugin": "2.5.0", "eslint": "8.2.0" } } diff --git a/examples/graphql-config-code-file/package.json b/examples/graphql-config-code-file/package.json index 3244b63fd41..b49cc069746 100644 --- a/examples/graphql-config-code-file/package.json +++ b/examples/graphql-config-code-file/package.json @@ -13,7 +13,7 @@ "graphql-tag": "2.12.6" }, "devDependencies": { - "@graphql-eslint/eslint-plugin": "2.4.1", + "@graphql-eslint/eslint-plugin": "2.5.0", "eslint": "8.2.0" } } diff --git a/examples/graphql-config/package.json b/examples/graphql-config/package.json index 5b0c4bbe77c..48b32210744 100644 --- a/examples/graphql-config/package.json +++ b/examples/graphql-config/package.json @@ -12,7 +12,7 @@ "graphql": "16.0.1" }, "devDependencies": { - "@graphql-eslint/eslint-plugin": "2.4.1", + "@graphql-eslint/eslint-plugin": "2.5.0", "eslint": "8.2.0" } } diff --git a/examples/prettier/package.json b/examples/prettier/package.json index 8829d9d5317..bc40a0f88a8 100644 --- a/examples/prettier/package.json +++ b/examples/prettier/package.json @@ -12,7 +12,7 @@ "graphql": "16.0.1" }, "devDependencies": { - "@graphql-eslint/eslint-plugin": "2.4.1", + "@graphql-eslint/eslint-plugin": "2.5.0", "eslint": "8.2.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-prettier": "4.0.0", diff --git a/packages/plugin/CHANGELOG.md b/packages/plugin/CHANGELOG.md index 7974b6cfa08..db048602477 100644 --- a/packages/plugin/CHANGELOG.md +++ b/packages/plugin/CHANGELOG.md @@ -1,5 +1,17 @@ # @graphql-eslint/eslint-plugin +## 2.5.0 + +### Minor Changes + +- 64c302c: feat: add new rule `no-root-type` +- c837c99: fix false positive case in `no-unreachable-types` rule when directive on root schema is used +- 1914d6a: fix false positive case in `known-fragment-names` when import nested fragment + +### Patch Changes + +- 4c29de7: fix: make works graphql-eslint in yarn berry + ## 2.4.1 ### Patch Changes diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 441277da1ce..ec57c24929d 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-eslint/eslint-plugin", - "version": "2.4.1", + "version": "2.5.0", "repository": "https://github.com/dotansimha/graphql-eslint", "author": "Dotan Simha ", "license": "MIT",