diff --git a/.changeset/pre.json b/.changeset/pre.json index 836dd012f3b..c7e1b9c628b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -18,8 +18,10 @@ "@graphql-eslint_eslint-plugin-1792-dependencies", "@graphql-eslint_eslint-plugin-1813-dependencies", "breezy-seals-sparkle", + "curly-socks-boil", "dull-scissors-destroy", "few-mails-sparkle", + "friendly-singers-rush", "itchy-ads-compete", "lovely-laws-hide", "rare-planes-love", diff --git a/packages/plugin/CHANGELOG.md b/packages/plugin/CHANGELOG.md index 3388c09afd3..fb7096d3d47 100644 --- a/packages/plugin/CHANGELOG.md +++ b/packages/plugin/CHANGELOG.md @@ -1,5 +1,34 @@ # @graphql-eslint/eslint-plugin +## 4.0.0-alpha.3 + +### Patch Changes + +- [#2466](https://github.com/dimaMachina/graphql-eslint/pull/2466) + [`da608d7`](https://github.com/dimaMachina/graphql-eslint/commit/da608d735f7e292b15955ace2fd4b1f17406105e) + Thanks [@dimaMachina](https://github.com/dimaMachina)! - fix `require is not defined` in flat + configs for Vue/Svelte projects + +- [#2468](https://github.com/dimaMachina/graphql-eslint/pull/2468) + [`733a66e`](https://github.com/dimaMachina/graphql-eslint/commit/733a66e38cb5a444ff3a2f9ed7c1b31665fca404) + Thanks [@dimaMachina](https://github.com/dimaMachina)! - - rename flat configs exports + + ```diff + -graphql.flatConfigs['schema-recommended'] + +graphql.configs['flat/schema-recommended'] + -graphql.flatConfigs['schema-relay'] + +graphql.configs['flat/schema-relay'] + -graphql.flatConfigs['schema-all'] + +graphql.configs['flat/schema-all'] + -graphql.flatConfigs['operations-recommended'] + +graphql.configs['flat/operations-recommended'] + -graphql.flatConfigs['operations-all'] + +graphql.configs['flat/operations-all'] + ``` + + - fix with programmatic usage when passing large schema as string causes `pattern too long` error + - fix loading ESM `graphql.config.js` configs + ## 4.0.0-alpha.2 ### Patch Changes diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 13d8f3ab12a..e8a55333435 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-eslint/eslint-plugin", - "version": "4.0.0-alpha.2", + "version": "4.0.0-alpha.3", "type": "module", "description": "GraphQL plugin for ESLint", "repository": "https://github.com/B2o5T/graphql-eslint",