diff --git a/.changeset/many-phones-tan.md b/.changeset/many-phones-tan.md deleted file mode 100644 index 9d322f38..00000000 --- a/.changeset/many-phones-tan.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@escape.tech/graphql-armor-max-depth': minor -'@escape.tech/graphql-armor': minor ---- - -Add flattenFragments option to max-depth plugin. [#436](https://github.com/Escape-Technologies/graphql-armor/pull/436) diff --git a/.changeset/weak-dolphins-shout.md b/.changeset/weak-dolphins-shout.md deleted file mode 100644 index ba504d25..00000000 --- a/.changeset/weak-dolphins-shout.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@escape.tech/graphql-armor-max-tokens': minor -'@escape.tech/graphql-armor': minor ---- - -Remove the found count from the max tokens plugin. [#430](https://github.com/Escape-Technologies/graphql-armor/pull/430) diff --git a/packages/graphql-armor/CHANGELOG.md b/packages/graphql-armor/CHANGELOG.md index 7f2a4d3a..23fccdc7 100644 --- a/packages/graphql-armor/CHANGELOG.md +++ b/packages/graphql-armor/CHANGELOG.md @@ -1,5 +1,19 @@ # @escape.tech/graphql-armor +## 2.1.0 + +### Minor Changes + +- f238e37: Add flattenFragments option to max-depth plugin. [#436](https://github.com/Escape-Technologies/graphql-armor/pull/436) +- 781450a: Remove the found count from the max tokens plugin. [#430](https://github.com/Escape-Technologies/graphql-armor/pull/430) + +### Patch Changes + +- Updated dependencies [f238e37] +- Updated dependencies [781450a] + - @escape.tech/graphql-armor-max-depth@2.1.0 + - @escape.tech/graphql-armor-max-tokens@2.1.0 + ## 2.0.0 ### Major Changes diff --git a/packages/graphql-armor/package.json b/packages/graphql-armor/package.json index 81f6bef7..76c9ebe4 100644 --- a/packages/graphql-armor/package.json +++ b/packages/graphql-armor/package.json @@ -1,6 +1,6 @@ { "name": "@escape.tech/graphql-armor", - "version": "2.0.0", + "version": "2.1.0", "description": "Dead-simple, yet highly customizable security middleware for Apollo GraphQL servers shield", "keywords": [ "apollo", @@ -37,9 +37,9 @@ "@escape.tech/graphql-armor-block-field-suggestions": "2.0.0", "@escape.tech/graphql-armor-cost-limit": "2.0.0", "@escape.tech/graphql-armor-max-aliases": "2.0.0", - "@escape.tech/graphql-armor-max-depth": "2.0.0", + "@escape.tech/graphql-armor-max-depth": "2.1.0", "@escape.tech/graphql-armor-max-directives": "2.0.0", - "@escape.tech/graphql-armor-max-tokens": "2.0.0", + "@escape.tech/graphql-armor-max-tokens": "2.1.0", "graphql": "^16.0.0" }, "optionalDependencies": { diff --git a/packages/plugins/max-depth/CHANGELOG.md b/packages/plugins/max-depth/CHANGELOG.md index b067ab66..19a7c888 100644 --- a/packages/plugins/max-depth/CHANGELOG.md +++ b/packages/plugins/max-depth/CHANGELOG.md @@ -1,5 +1,11 @@ # @escape.tech/graphql-armor-max-depth +## 2.1.0 + +### Minor Changes + +- f238e37: Add flattenFragments option to max-depth plugin. [#436](https://github.com/Escape-Technologies/graphql-armor/pull/436) + ## 2.0.0 ### Major Changes diff --git a/packages/plugins/max-depth/package.json b/packages/plugins/max-depth/package.json index 7007043c..5712d2b8 100644 --- a/packages/plugins/max-depth/package.json +++ b/packages/plugins/max-depth/package.json @@ -1,6 +1,6 @@ { "name": "@escape.tech/graphql-armor-max-depth", - "version": "2.0.0", + "version": "2.1.0", "description": "Limit the depth allowed in a GraphQL query.", "packageManager": "yarn@3.6.0", "main": "dist/graphql-armor-max-depth.cjs.js", diff --git a/packages/plugins/max-tokens/CHANGELOG.md b/packages/plugins/max-tokens/CHANGELOG.md index c517800f..e3bd1f10 100644 --- a/packages/plugins/max-tokens/CHANGELOG.md +++ b/packages/plugins/max-tokens/CHANGELOG.md @@ -1,5 +1,11 @@ # @escape.tech/graphql-armor-max-tokens +## 2.1.0 + +### Minor Changes + +- 781450a: Remove the found count from the max tokens plugin. [#430](https://github.com/Escape-Technologies/graphql-armor/pull/430) + ## 2.0.0 ### Major Changes diff --git a/packages/plugins/max-tokens/package.json b/packages/plugins/max-tokens/package.json index 7ad6538b..fc217973 100644 --- a/packages/plugins/max-tokens/package.json +++ b/packages/plugins/max-tokens/package.json @@ -1,6 +1,6 @@ { "name": "@escape.tech/graphql-armor-max-tokens", - "version": "2.0.0", + "version": "2.1.0", "description": "Limit the number of tokens allowed in a GraphQL document.", "packageManager": "yarn@3.6.0", "main": "dist/graphql-armor-max-tokens.cjs.js",