diff --git a/.changeset/spotty-kiwis-crash.md b/.changeset/spotty-kiwis-crash.md deleted file mode 100644 index 59f3a4fa5a5..00000000000 --- a/.changeset/spotty-kiwis-crash.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@graphql-tools/utils": patch ---- - -Disallow new lines in paths when checking with `isValidPath` - -A string may sometimes look like a path but is not (like an SDL of a simple -GraphQL schema). To make sure we don't yield false-positives in such cases, -we disallow new lines in paths (even though most Unix systems support new -lines in file names). diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index bf9edec8bc5..b08e1694581 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,16 @@ # @graphql-tools/utils +## 10.1.3 + +### Patch Changes + +- [#6055](https://github.com/ardatan/graphql-tools/pull/6055) [`4093f70`](https://github.com/ardatan/graphql-tools/commit/4093f7043a195fda1f2f8315e3cb1d4d05723415) Thanks [@enisdenjo](https://github.com/enisdenjo)! - Disallow new lines in paths when checking with `isValidPath` + + A string may sometimes look like a path but is not (like an SDL of a simple + GraphQL schema). To make sure we don't yield false-positives in such cases, + we disallow new lines in paths (even though most Unix systems support new + lines in file names). + ## 10.1.2 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index ede28766163..2d096d0bf5e 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-tools/utils", - "version": "10.1.2", + "version": "10.1.3", "type": "module", "description": "Common package containing utils and types for GraphQL tools", "repository": {