Skip to content

Releases: dimaMachina/graphql-eslint

November 21, 2024

21 Nov 20:40
7ed84b3
Compare
Choose a tag to compare
November 21, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.15

Patch Changes

November 19, 2024

19 Nov 16:39
bd27a98
Compare
Choose a tag to compare
November 19, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.14

Patch Changes

November 19, 2024

19 Nov 08:13
3ecda81
Compare
Choose a tag to compare
November 19, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.13

Minor Changes

  • #2719
    57d6edf
    Thanks @dimaMachina! - check for deprecated arguments and object
    field nodes in graphql operations in no-deprecated rule

November 17, 2024

17 Nov 20:09
18996fa
Compare
Choose a tag to compare
November 17, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.12

Patch Changes

November 17, 2024

17 Nov 19:19
5d63d08
Compare
Choose a tag to compare
November 17, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.11

Major Changes

  • #2281
    c53cb4e
    Thanks @maciesielka! - Add new config option
    ignoredFieldSelectors to no-unused-fields rule to ignore all the relay pagination fields for
    every connection exposed in schema for example

November 16, 2024

16 Nov 11:45
bbd88f9
Compare
Choose a tag to compare
November 16, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.10

Major Changes

November 16, 2024

16 Nov 11:01
0bc742b
Compare
Choose a tag to compare
November 16, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.9

Patch Changes

  • #2277
    3b35bae
    Thanks @yoavain-sundaysky! - fix false positive cases for
    require-import-fragment on Windows, when graphql-config's documents key contained glob
    pattern => source file path of document contained always forward slashes

November 16, 2024

16 Nov 03:40
adc31fe
Compare
Choose a tag to compare
November 16, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.8

Minor Changes

  • #2385
    afa8b8a
    Thanks @deathemperor! - feat: add a new option { for
    alphabetize rule to sort fields selection set

  • #2293
    01f7087
    Thanks @yoavsion! - Support the fragment spread group when defining
    alphabetize rule's groups with new option ...

November 13, 2024

13 Nov 22:19
1f2420b
Compare
Choose a tag to compare
November 13, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.7

Major Changes

  • #2598
    e771499
    Thanks @bmulholland! - 1. graphql plugin can now we be specified
    as

    plugins: {
    -  '@graphql-eslint': {
    -    graphqlPlugin.rules
    -  }
    +  '@graphql-eslint': graphqlPlugin
    }
    1. Config rules should now be accessed through the rules property

        rules: {
      -   ...graphqlESLint.configs['flat/operations-recommended']
      +   ...graphqlESLint.configs['flat/operations-recommended'].rules
    2. processor can now be specified with accessing processor property

      - processor: graphql.processors.graphql
      + processor: graphqlPlugin.processor
    3. The plugin can now be imported using a default import

      - import * as graphql from '@graphql-eslint/eslint-plugin'
      + import graphqlPlugin from '@graphql-eslint/eslint-plugin'

Patch Changes

October 18, 2024

18 Oct 01:15
c9cbf6d
Compare
Choose a tag to compare
October 18, 2024 Pre-release
Pre-release

@graphql-eslint/eslint-plugin@4.0.0-alpha.6

Patch Changes

  • #2616
    c0f1b07
    Thanks @fcortes! - The import attribute syntax (with { type: "json"
    }) is still experimental so warnings showed up when using the library as it was being used to
    import the package.json file to extract the package version

    As an alternative, the current version will be injected on build time through tsup configuration.