Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase on latest #1

Open
wants to merge 125 commits into
base: master
Choose a base branch
from
Open

Rebase on latest #1

wants to merge 125 commits into from

Commits on Apr 30, 2021

  1. Configuration menu
    Copy the full SHA
    2deb657 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2021

  1. Stop validator mutating the provided *Schema

    The `VariablesInAllowedPosition` rule mutates the provided *ast.Value
    which causes future validation to fails as well as altering the result
    of the introspect query in gqlgen.
    xzyfer committed May 27, 2021
    Configuration menu
    Copy the full SHA
    2bc0a95 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2021

  1. Reproduce error for update by reference

    "VariablesInAllowedPosition" rule updates "value.ExpectedType.NonNull = false",
    resulting in "ProvidedRequiredArguments" rule to have "argDef.Type.NonNull" changed on the next call.
    aurelijusbanelis committed Aug 26, 2021
    Configuration menu
    Copy the full SHA
    dcb2357 View commit details
    Browse the repository at this point in the history
  2. Fix update ast.Type by reference

    Both ast.Value.ExpectedType and ast.VariableDefinition.Type are the pointers,
    and it is easy to update values by accidence.
    
    Therefore creating a copy, so changes in one validation rule (E.g. VariablesInAllowedPosition)
    would not affect the behavior of the other rule (ProvidedRequiredArguments).
    
    Not doing deep copy, so change should not have a big impact for memory or CPU even for large GraphQL applications.
    
    Testing private methods, to not be confused by complex golang syntax.
    (those are pure functions, so in case testing package is changed – refactoring should not be hard)
    aurelijusbanelis committed Aug 26, 2021
    Configuration menu
    Copy the full SHA
    bc6d7b3 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2021

  1. Merge pull request #155 from danielnovograd/update-prelude-deprecated

    Update prelude to match graphql_spec for @deprecated directive
    lwc authored Sep 7, 2021
    Configuration menu
    Copy the full SHA
    1b64d83 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #158 from xzyfer/fix-schema-mutation

    Stop validator mutating the provided *Schema
    lwc authored Sep 7, 2021
    Configuration menu
    Copy the full SHA
    2a3d320 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2021

  1. Merge remote-tracking branch 'upstream/master' into by-reference

    Conflicts:
    	validator/validator_test.go - include both tests
    aurelijusbanelis committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    9630df1 View commit details
    Browse the repository at this point in the history
  2. Leaving only tests as already fixed in VariablesInAllowedPosition

    It was possible to fix the single cause,
    or to prevent accidental changes in future functions.
    
    Assuming tests would cover future changes,
    so removing additional check (that could in theory impact performance).
    aurelijusbanelis committed Sep 10, 2021
    Configuration menu
    Copy the full SHA
    76372a2 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2021

  1. Add @SpecifiedBy directive declaration

    Also include specifiedBy in __Type
    wilhelmeek committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    ea323e3 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2021

  1. Configuration menu
    Copy the full SHA
    24aed27 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1cb3111 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b1a3d57 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2021

  1. fix micro typos

    enisdenjo authored Dec 29, 2021
    Configuration menu
    Copy the full SHA
    dca6b8b View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2022

  1. Merge pull request #174 from enisdenjo/patch-1

    docs: Fix a few typos in the README
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    c55e33b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #172 from PentoHQ/master

    feat: do not mark __typename field as unknown in the schema validation
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    994c7e4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #170 from jufemaiz/bugfix/164/argument-slice-compa…

    …rison
    
    Fix: argument comparison between two sets of args
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    8d86355 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #168 from wilhelmeek/specified-by

    Add @SpecifiedBy directive declaration
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    5b9828d View commit details
    Browse the repository at this point in the history
  5. Merge pull request #161 from aurelijusbanelis/by-reference

    Fix for update by reference of default variable values
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    25e3630 View commit details
    Browse the repository at this point in the history
  6. Add release script

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    69d7afa View commit details
    Browse the repository at this point in the history
  7. Merge pull request #175 from vektah/release_script

    Add release script
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    f2612cc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2753ad4 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #176 from vektah/revert-168-specified-by

    Revert "Add @SpecifiedBy directive declaration"
    StevenACoffman authored Jan 26, 2022
    Configuration menu
    Copy the full SHA
    2776c98 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2022

  1. Configuration menu
    Copy the full SHA
    51abe83 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1709928 View commit details
    Browse the repository at this point in the history
  3. Add validator test case

    wilhelmeek authored and StevenACoffman committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    0157360 View commit details
    Browse the repository at this point in the history
  4. Naming

    wilhelmeek authored and StevenACoffman committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    9b0e4a7 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #169 from wilhelmeek/intermediate-interfaces

    Support intermediate interfaces
    StevenACoffman authored Feb 21, 2022
    Configuration menu
    Copy the full SHA
    3e7886d View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. Configuration menu
    Copy the full SHA
    9213f26 View commit details
    Browse the repository at this point in the history
  2. go generate

    Code-Hex committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    4892f65 View commit details
    Browse the repository at this point in the history
  3. fixed test to be correct

    Code-Hex committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    3e389b2 View commit details
    Browse the repository at this point in the history
  4. supported schema description

    Code-Hex committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    fdaf60e View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2022

  1. Merge pull request #182 from Code-Hex/fix/prelude-october-2021

    fixed prelude.graphql to be correct in the latest spec
    StevenACoffman authored Feb 25, 2022
    Configuration menu
    Copy the full SHA
    7336035 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #183 from Code-Hex/fix/schema-description

    supported schema description for introspection
    StevenACoffman authored Feb 25, 2022
    Configuration menu
    Copy the full SHA
    25dc9ba View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2022

  1. update Node.js harness (#181)

    * update Node.js harness
    
    * update environments
    
    * regenerate test specs
    
    * Fix Rule suffix
    
    These should match the strings passed into AddRule()
    
    * Update metadata for interface implements so covariance check works
    
    * Adjust quoting and verbiage to match new test suite expectations
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    * fixed to be starting indent from line 1
    
    * regenerate test specs
    
    * fixed UniqueVariableNames validator rule to add the same error only once
    
    * fixed ValuesOfCorrectTypeRule test for #181
    
    * fixed UniqueArgumentNames test for #181
    
    * fixed SingleFieldSubscriptions tests for #181
    
    * fixed deviations to ignore NoDeprecatedCustomRule because optional
    
    * fixed deviations to ignore NoSchemaIntrospectionCustomRule because optional
    
    * fixed KnownDirectives validation for #181
    
    * fixed deviations.yml
    
    * fixed FieldsOnCorrectType for #181
    
    * fixed OverlappingFieldsCanBeMergedRule for #181
    
    * fixed ProvidedRequiredArguments for #181
    
    * fixed UniqueVariableNames validator rule to add the same error only once
    
    * fixed UniqueArgumentNames test for #181
    
    * fixed SingleFieldSubscriptions tests for #181
    
    * fixed KnownDirectives validation for #181
    
    * fixed FieldsOnCorrectType for #181
    
    * fixed OverlappingFieldsCanBeMergedRule for #181
    
    * fixed ProvidedRequiredArguments for #181
    
    * fixed walk logic for directive
    
    * fixed UniqueDirectivesPerLocation for repeatable
    
    * fixed KnownTypeNames for #181
    
    * fixed NoUndefinedVariables for #181
    
    * upgrade go version
    
    * fixed modules
    
    * added interfaces.graphql for 14aecc0
    
    Co-authored-by: vvakame <[email protected]>
    Co-authored-by: Adam Scarr <[email protected]>
    Co-authored-by: Kei Kamikawa <[email protected]>
    4 people authored Feb 28, 2022
    Configuration menu
    Copy the full SHA
    f952228 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a188593 View commit details
    Browse the repository at this point in the history
  3. Bump gopkg.in/yaml.v2 from 2.2.4 to 2.2.8 (#199)

    Bumps [gopkg.in/yaml.v2](https://github.com/go-yaml/yaml) from 2.2.4 to 2.2.8.
    - [Release notes](https://github.com/go-yaml/yaml/releases)
    - [Commits](go-yaml/yaml@v2.2.4...v2.2.8)
    
    ---
    updated-dependencies:
    - dependency-name: gopkg.in/yaml.v2
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 28, 2022
    Configuration menu
    Copy the full SHA
    0b1c22a View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2022

  1. Configuration menu
    Copy the full SHA
    b894abf View commit details
    Browse the repository at this point in the history
  2. added validateTypeImplementsAncestors to validate implemented types (#…

    …202)
    
    * added validateTypeImplementsAncestors to validate implemented types
    
    * added period
    
    * fixed to make key slices
    Code-Hex authored Mar 3, 2022
    Configuration menu
    Copy the full SHA
    4fa60dc View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

  1. Report definition name in validateDefinition errors (#206)

    * Report definition name in validateDefinition errors
    
    * Fix error report
    sonatard authored Mar 11, 2022
    Configuration menu
    Copy the full SHA
    c535e0b View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2022

  1. Configuration menu
    Copy the full SHA
    931cd76 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2022

  1. formatter: support setting space indent (#208)

    * formatter: support setting space indent
    
    * fix: change SpaceIndent to Indent
    giautm authored Mar 26, 2022
    Configuration menu
    Copy the full SHA
    2c7bcc9 View commit details
    Browse the repository at this point in the history
  2. fix: only write newline in the description if needs (#209)

    * fix: only write newline in the description if needs
    
    * chore: update tests
    giautm authored Mar 26, 2022
    Configuration menu
    Copy the full SHA
    14b8f03 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2022

  1. Bump minimist from 1.2.5 to 1.2.6 in /validator/imported (#210)

    Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
    - [Release notes](https://github.com/substack/minimist/releases)
    - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)
    
    ---
    updated-dependencies:
    - dependency-name: minimist
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 1, 2022
    Configuration menu
    Copy the full SHA
    082e287 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2022

  1. formatter fix: include argument directives (#213)

    Co-authored-by: Jason Leasure <[email protected]>
    jpleasu and Jason Leasure authored Apr 5, 2022
    Configuration menu
    Copy the full SHA
    c0c2729 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2022

  1. Embed prelude (#214)

    * use file embedding (Go 1.16) to embed prelude.graphql rather than using a long (and redundant) string literal
    
    * Remove inliner.go and its //go:generate use in schema.go.  This is no longer necessary with use of //go:embed prelude.graphql
    AndrewWPhillips authored Apr 6, 2022
    Configuration menu
    Copy the full SHA
    1f5572c View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2022

  1. Configuration menu
    Copy the full SHA
    db38a01 View commit details
    Browse the repository at this point in the history
  2. fix bug and delete String of Int and Float (#205)

    * fix bug and delete String of Int and Float
    
    * fix bug and delete String of Int and Float
    
    * add string
    
    * add changes
    
    * change module name
    
    * change all module name
    
    * Add helper functions and short circuit to avoid performance regression
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    Co-authored-by: Steve Coffman <[email protected]>
    pjmd89 and StevenACoffman authored Apr 10, 2022
    Configuration menu
    Copy the full SHA
    815d602 View commit details
    Browse the repository at this point in the history
  3. fix issue #160: validateVarType parsing numbers (#216)

    * fix issue #160: validateVarType parsing numbers
    
    * Fix typo
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    Co-authored-by: scboffspring <[email protected]>
    StevenACoffman and f10et authored Apr 10, 2022
    Configuration menu
    Copy the full SHA
    5bb131d View commit details
    Browse the repository at this point in the history

Commits on May 8, 2022

  1. Configuration menu
    Copy the full SHA
    d3d9eb0 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2022

  1. Report error about null value for any type that cannot be null, not f…

    …or only built-in (#222)
    
    * Report error for null values that cannot be null
    
    * fix tests pass
    
    Co-authored-by: Roman A. Grigorovich <[email protected]>
    atzedus and Roman A. Grigorovich authored May 26, 2022
    Configuration menu
    Copy the full SHA
    6519773 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. Allow doubly-defined builtin directives (#226)

    Normally we don't want to let you define a directive twice.* But if the
    directive is builtin, and one copy of it is from your schema while the
    other is from the prelude, then we have to, because the spec only says
    that such directives "may" be excluded from SDL. (This happens in
    practice when you generate a schema from introspection, which does
    define all builtins, and your generator doesn't filter them out.) So now
    we allow it, only for builtin directives.
    
    *Fun fact: technically the spec doesn't say we shouldn't. But I think
    that's an error in the spec, and it's reasonable and correct to check.
    In general I think the schema validation portions of the spec are
    pretty incomplete :| .
    benjaminjkraft authored Jun 6, 2022
    Configuration menu
    Copy the full SHA
    6eec772 View commit details
    Browse the repository at this point in the history
  2. Validate that the operation's root type is valid (#225)

    Turns out neither we (nor anyone else) were validating this, because the
    spec didn't say explicitly to validate it.  So you could do
    `mutation { bogus }` even if the schema has no mutation types, or worse,
    any syntactically valid query if the schema is totally empty.
    
    In graphql/graphql-spec#955 I'm adding it to the spec, and in
    graphql/graphql-js#3592 someone else is adding it to graphql-js.  So we
    should too, once those land!  At that point we should also likely
    reimport the relevant tests, instead of the ones I wrote here, but I
    figured I'd put the PR up now so folks can review the non-test parts if
    you like.
    
    Fixes #221.
    benjaminjkraft authored Jun 6, 2022
    Configuration menu
    Copy the full SHA
    0e3e4c2 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2022

  1. Check for non-enum values on validation (#227)

    * check for non enum values on validation
    
    * add newline to end of schema_test.yml
    ameyarao98 authored Jun 25, 2022
    Configuration menu
    Copy the full SHA
    48f5a86 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2022

  1. Replace deprecated ioutil pkg with os & io (#228)

    As of Go 1.16, the same functionality is now provided by package io or
    package os, and those implementations should be preferred in new code.
    
    So replacing all usage of ioutil pkg with io & os.
    abhinavnair authored Jun 26, 2022
    Configuration menu
    Copy the full SHA
    6498086 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

  1. Fix #229 (#230)

    * account for newline characters in block str
    
    * fix test and simplify block string line increment logic, fixes #229
    
    * place block str test in correct section
    
    Co-authored-by: Ahmad Moudani <[email protected]>
    zmay2030 and Ahmad Moudani authored Jul 20, 2022
    Configuration menu
    Copy the full SHA
    6d5506b View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2022

  1. Add UnmarshalJSON implementations. (#232)

    This commit adds custom UnmarshalJSON implementations around the
    SelectionSet type, so that it is now possible to directly deserialize an
    appropriately-formed JSON object into an AST document struct.
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    Signed-off-by: Philip Conrad <[email protected]>
    philipaconrad authored Aug 18, 2022
    Configuration menu
    Copy the full SHA
    6d97050 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2022

  1. fix : returning error instead of *gqlError.Error (#234)

    Co-authored-by: Suraj Chafle <[email protected]>
    schafle and Suraj Chafle authored Aug 26, 2022
    Configuration menu
    Copy the full SHA
    fe91596 View commit details
    Browse the repository at this point in the history
  2. Fix release notes link

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    59941a9 View commit details
    Browse the repository at this point in the history
  3. Fix release notes link. again. better.

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    88d9590 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. Fixes #231: Parsing a field type with a bang should not increase the …

    …line number (#236)
    
    Co-authored-by: Ahmad Moudani <[email protected]>
    zmay2030 and Ahmad Moudani authored Sep 9, 2022
    Configuration menu
    Copy the full SHA
    eae2341 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Add github actions to lint and test (#241)

    Signed-off-by: Steve Coffman <[email protected]>
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 14, 2022
    Configuration menu
    Copy the full SHA
    372cb17 View commit details
    Browse the repository at this point in the history
  2. GH Actions CI Additions + Linter fixups (#242)

    * Add basic PR CI/CD checks.
    
    This commit adds two manual Github Actions workflows, and one automated
    workflow that runs both jobs on every PR commit.
    
    The workflows include:
    
     - Automated linting with golangci-lint
     - Automated `go test ./...`
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    * Linter ignores for dot imports.
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    * Fix linter issues with changes + ignores.
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    * Fix prealloc linter suggestions.
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    * Switch to `ubuntu-latest` + use GH Action for golangci-lint.
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    * Disable MacOS tests.
    
    Signed-off-by: Philip Conrad <[email protected]>
    
    Signed-off-by: Philip Conrad <[email protected]>
    philipaconrad authored Sep 14, 2022
    Configuration menu
    Copy the full SHA
    b3be96f View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. Prefer to wrap third party errors (#243)

    Signed-off-by: Steve Coffman <[email protected]>
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 23, 2022
    Configuration menu
    Copy the full SHA
    bbe8d04 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2022

  1. Configuration menu
    Copy the full SHA
    aed070f View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2022

  1. Configuration menu
    Copy the full SHA
    d21cfca View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. Bump json5 from 2.2.0 to 2.2.3 in /validator/imported (#251)

    Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3.
    - [Release notes](https://github.com/json5/json5/releases)
    - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
    - [Commits](json5/json5@v2.2.0...v2.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: json5
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 9, 2023
    Configuration menu
    Copy the full SHA
    3596b2e View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2023

  1. support @defer directive. (#255)

    fiatjaf authored Apr 22, 2023
    Configuration menu
    Copy the full SHA
    25e09f9 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. Configuration menu
    Copy the full SHA
    e084d7b View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2023

  1. Validate directive arguments during schema parsing (#258)

    * Validate directive arguments
    
    * nits clean
    
    * Check for pass in null explicitly
    fredzqm authored Jun 10, 2023
    Configuration menu
    Copy the full SHA
    761b8f0 View commit details
    Browse the repository at this point in the history
  2. Validate enum values directive are legit (#257)

    * validate enum values directive is legit
    
    * Add tests
    fredzqm authored Jun 10, 2023
    Configuration menu
    Copy the full SHA
    b74a952 View commit details
    Browse the repository at this point in the history
  3. Update modules (#259)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Jun 10, 2023
    Configuration menu
    Copy the full SHA
    d9c7581 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2023

  1. feat(lexer): comment token support (#261)

    * feat(lexer): return comment tokens
    
    * fix(testrunner): fix error comparison in testrunner
    
    * test(lexer): add position test for comments
    
    * test(parser): add position tests
    
    * feat(parser): skip comments in parsing
    Warashi authored Jun 23, 2023
    Configuration menu
    Copy the full SHA
    5e5180f View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2023

  1. feat: format with comments (#263)

    * feat(ast): add comment fields
    
    * feat(formatter): implement getComment
    
    * feat(parser): store comments in parser
    
    * feat(ast): add Comment field for Definition
    
    * feat(ast): implement Dumper interface for CommentGroup
    
    * feat(parser): add comment support for schema parsing
    
    * fix(parser): add comments to schema extensions
    
    * test(formatter): add comments for schema test
    
    * fix(ast,parser): treat multiline comments
    
    * feat(formatter): format schema comments
    
    * test(formatter): update golden
    
    * feat(parser): implement comment parsing
    
    * test(formatter): add query comment tests
    
    * refactor(formatter): remove unused function
    
    * refactor(parser): use dot import
    
    * refactor(ast): remove unused methods
    
    * fix: support comments before and after description
    
    * test(parser): add test case with comments and descriptions
    
    * fix: fix lost of comments after desription
    
    * test(formatter): add description to scalar test case
    
    * fix(parser): remove empty line
    Warashi authored Jun 24, 2023
    Configuration menu
    Copy the full SHA
    98e9b07 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2023

  1. feat: support end of definition comment and end of file comment (#264)

    * fix: treat end of definition comments
    
    * feat(formatter): emit end of definition comments
    
    * feat(parser): treat end of file comment
    
    * feat: add EndOfDefinitionComment to SchemaDefinition
    
    * fix(formatter): treat schema description and comments
    
    * feat(formatter): support end of file comments
    Warashi authored Jun 25, 2023
    Configuration menu
    Copy the full SHA
    fd040d1 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2023

  1. Configuration menu
    Copy the full SHA
    35199fc View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. fix: validator/imported/package.json & validator/imported/package-loc…

    …k.json to reduce vulnerabilities (#267)
    
    The following vulnerabilities are fixed with an upgrade:
    - https://snyk.io/vuln/SNYK-JS-SEMVER-3247795
    
    Co-authored-by: snyk-bot <[email protected]>
    lwc and snyk-bot authored Jul 5, 2023
    Configuration menu
    Copy the full SHA
    b8ec355 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. Bump semver from 5.7.1 to 5.7.2 in /validator/imported (#268)

    Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2.
    - [Release notes](https://github.com/npm/node-semver/releases)
    - [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md)
    - [Commits](npm/node-semver@v5.7.1...v5.7.2)
    
    ---
    updated-dependencies:
    - dependency-name: semver
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 12, 2023
    Configuration menu
    Copy the full SHA
    4b44f9b View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2023

  1. Allow ommitting Directive arguments that are non-null if they have de…

    …faults (#270)
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Jul 15, 2023
    Configuration menu
    Copy the full SHA
    9fb1c32 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Put comments behind an option in formatter (#271)

    * Put comments behind an option in formatter
    
    In #263, we introduced parsing of comments, as well as support for them
    in the formatter. In some cases this is surely useful, but in others
    it's just bloat. (And as I describe in Khan/genqlient#282, it may even
    be a problem in some cases which depended on the fact that formatting
    the query didn't include comments.)
    
    In this commit I introduce an option to control whether comments are
    formatted. I set the default to false (i.e. restoring the previous
    behavior if no options are set), because adding this felt to me
    like a breaking change, and because it seems to me like the more common
    usage. `WithComments()` restores the behavior added in #263. If others
    disagree I'm happy to keep the changed default, and instead provide
    `WithoutComments()`. I also added tests both ways (and for the existing
    `WithIndent()` option), and checked that the `comments` tests match the
    existing ones, and the `default` tests match those from `v2.6.3` (except
    for the addition of a few descriptions whose omission seem to have been
    a bug).
    
    Comments are still parsed in any case, as adding new struct fields is no
    problem; and they are still included in `Dump` since that seems
    obviously parallel to struct fields and is more of a debugging thing.
    
    * docs
    benjaminjkraft authored Jul 17, 2023
    Configuration menu
    Copy the full SHA
    8d1bedc View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Convenience to avoid wrapping nil (#274)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    2159f67 View commit details
    Browse the repository at this point in the history
  2. Add WrapIfUnwrapped and other Lint fixes (#275)

    * Add WrapIfUnwrapped
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    * Lint fixes
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    ---------
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    450a0ee View commit details
    Browse the repository at this point in the history
  3. More lint (#276)

    * More lint
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    * Update versions
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    ---------
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    77ba251 View commit details
    Browse the repository at this point in the history
  4. More minor tweaks (#277)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    a7d0f67 View commit details
    Browse the repository at this point in the history
  5. Make all fields of *gqlerror.Error public (#273)

    * make *gqlerror.Error err public
    
    * Update error.go
    fredzqm authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    c0a44fb View commit details
    Browse the repository at this point in the history
  6. Revert Path change (#278)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 7, 2023
    Configuration menu
    Copy the full SHA
    f2809bd View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    d734cf8 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. fix for #281 (#282)

    Co-authored-by: Jan Zombik <[email protected]>
    Metamogul and Jan Zombik authored Sep 15, 2023
    Configuration menu
    Copy the full SHA
    cb1d657 View commit details
    Browse the repository at this point in the history
  2. Format the error file from #282 (#283)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Sep 15, 2023
    Configuration menu
    Copy the full SHA
    88e2f8c View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2023

  1. Bump get-func-name from 2.0.0 to 2.0.2 in /validator/imported (#284)

    Bumps [get-func-name](https://github.com/chaijs/get-func-name) from 2.0.0 to 2.0.2.
    - [Release notes](https://github.com/chaijs/get-func-name/releases)
    - [Commits](https://github.com/chaijs/get-func-name/commits/v2.0.2)
    
    ---
    updated-dependencies:
    - dependency-name: get-func-name
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 27, 2023
    Configuration menu
    Copy the full SHA
    e5a1b67 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Bump @babel/traverse from 7.22.6 to 7.23.2 in /validator/imported (#285)

    Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.22.6 to 7.23.2.
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.23.2/packages/babel-traverse)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/traverse"
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 19, 2023
    Configuration menu
    Copy the full SHA
    bf1736a View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Fix description (#289)

    blmhemu authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    a942954 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. gqlerror: implement List.Unwrap (#290)

    Go 1.20 has added a new Unwrap method for error values
    holding multiple errors. Implement this method as that
    errors.Is/As work as expected.
    emersion authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    591c98b View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Configuration menu
    Copy the full SHA
    59e3c3a View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. WithBuiltin FormatterOption added (#294)

    Co-authored-by: Roman A. Grigorovich <[email protected]>
    atzedus and Roman A. Grigorovich authored May 16, 2024
    Configuration menu
    Copy the full SHA
    3c0d3ac View commit details
    Browse the repository at this point in the history
  2. Redo github actions (#295)

    * Redo github actions
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    * Update golangci-lint to match gqlgen
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    * Linter fixes
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    ---------
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored May 16, 2024
    Configuration menu
    Copy the full SHA
    6d16c05 View commit details
    Browse the repository at this point in the history
  3. Add Dependabot.yml

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman committed May 16, 2024
    Configuration menu
    Copy the full SHA
    55ebe37 View commit details
    Browse the repository at this point in the history
  4. Bump github.com/stretchr/testify in the actions-deps group (#296)

    Bumps the actions-deps group with 1 update: [github.com/stretchr/testify](https://github.com/stretchr/testify).
    
    
    Updates `github.com/stretchr/testify` from 1.4.0 to 1.9.0
    - [Release notes](https://github.com/stretchr/testify/releases)
    - [Commits](stretchr/testify@v1.4.0...v1.9.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/stretchr/testify
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 16, 2024
    Configuration menu
    Copy the full SHA
    9638a21 View commit details
    Browse the repository at this point in the history
  5. Bump the actions-deps group in /validator/imported with 8 updates (#297)

    Bumps the actions-deps group in /validator/imported with 8 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.16.8` | `7.24.5` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.16.12` | `7.24.5` |
    | [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) | `7.16.8` | `7.23.9` |
    | [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.16.8` | `7.24.5` |
    | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.22.6` | `7.24.5` |
    | [@babel/preset-flow](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-flow) | `7.16.7` | `7.24.1` |
    | [chai](https://github.com/chaijs/chai) | `4.3.6` | `5.1.1` |
    | [prettier](https://github.com/prettier/prettier) | `2.5.1` | `3.2.5` |
    
    
    Updates `@babel/cli` from 7.16.8 to 7.24.5
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-cli)
    
    Updates `@babel/core` from 7.16.12 to 7.24.5
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-core)
    
    Updates `@babel/node` from 7.16.8 to 7.23.9
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.23.9/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.16.8 to 7.24.5
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.22.6 to 7.24.5
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-preset-env)
    
    Updates `@babel/preset-flow` from 7.16.7 to 7.24.1
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.1/packages/babel-preset-flow)
    
    Updates `chai` from 4.3.6 to 5.1.1
    - [Release notes](https://github.com/chaijs/chai/releases)
    - [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
    - [Commits](chaijs/chai@v4.3.6...v5.1.1)
    
    Updates `prettier` from 2.5.1 to 3.2.5
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@2.5.1...3.2.5)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-flow"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: chai
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: actions-deps
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 16, 2024
    Configuration menu
    Copy the full SHA
    00fd36f View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Bump the actions-deps group in /validator/imported with 6 updates (#298)

    Bumps the actions-deps group in /validator/imported with 6 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.24.5` | `7.24.6` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.5` | `7.24.6` |
    | [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) | `7.23.9` | `7.24.6` |
    | [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.24.5` | `7.24.6` |
    | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.24.5` | `7.24.6` |
    | [@babel/preset-flow](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-flow) | `7.24.1` | `7.24.6` |
    
    
    Updates `@babel/cli` from 7.24.5 to 7.24.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.6/packages/babel-cli)
    
    Updates `@babel/core` from 7.24.5 to 7.24.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.6/packages/babel-core)
    
    Updates `@babel/node` from 7.23.9 to 7.24.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.6/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.24.5 to 7.24.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.6/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.24.5 to 7.24.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.6/packages/babel-preset-env)
    
    Updates `@babel/preset-flow` from 7.24.1 to 7.24.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.6/packages/babel-preset-flow)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-flow"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 27, 2024
    Configuration menu
    Copy the full SHA
    0ed4973 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Bump prettier in /validator/imported in the actions-deps group (#299)

    Bumps the actions-deps group in /validator/imported with 1 update: [prettier](https://github.com/prettier/prettier).
    
    
    Updates `prettier` from 3.2.5 to 3.3.0
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.2.5...3.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 3, 2024
    Configuration menu
    Copy the full SHA
    7c770f6 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Bump the actions-deps group in /validator/imported with 7 updates (#301)

    Bumps the actions-deps group in /validator/imported with 7 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.24.6` | `7.24.7` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.6` | `7.24.7` |
    | [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) | `7.24.6` | `7.24.7` |
    | [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.24.6` | `7.24.7` |
    | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.24.6` | `7.24.7` |
    | [@babel/preset-flow](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-flow) | `7.24.6` | `7.24.7` |
    | [prettier](https://github.com/prettier/prettier) | `3.3.0` | `3.3.1` |
    
    
    Updates `@babel/cli` from 7.24.6 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-cli)
    
    Updates `@babel/core` from 7.24.6 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-core)
    
    Updates `@babel/node` from 7.24.6 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.24.6 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.24.6 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-preset-env)
    
    Updates `@babel/preset-flow` from 7.24.6 to 7.24.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-preset-flow)
    
    Updates `prettier` from 3.3.0 to 3.3.1
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.3.0...3.3.1)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-flow"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 10, 2024
    Configuration menu
    Copy the full SHA
    3900414 View commit details
    Browse the repository at this point in the history
  2. Bump braces from 3.0.2 to 3.0.3 in /validator/imported (#302)

    Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
    - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
    - [Commits](micromatch/braces@3.0.2...3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: braces
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 10, 2024
    Configuration menu
    Copy the full SHA
    6db1bd3 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Token limit fix CVE-2023-49559 (#291)

    * Add directive limit to prevent overloading
    
    * Added token limit to parser for query and schema parsing, removed my previous directive limit
    
    * Added token limit to parser for query and schema parsing, removed my previous directive limit
    
    * Update parser/parser.go
    
    * Update parser/parser.go
    
    * Update parser/query.go
    
    * Fix lint
    
    Signed-off-by: Steve Coffman <[email protected]>
    
    ---------
    
    Signed-off-by: Steve Coffman <[email protected]>
    Co-authored-by: Yuval Moravchick <[email protected]>
    Co-authored-by: Steve Coffman <[email protected]>
    Co-authored-by: Steve Coffman <[email protected]>
    4 people authored Jun 11, 2024
    Configuration menu
    Copy the full SHA
    d457fc0 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. Add ParseQueryWithLimit (#304)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    36a3658 View commit details
    Browse the repository at this point in the history
  2. Revert ParseSchema default token limit of 1500, add ParseSchemaWithLi…

    …mit, ParseSchemasWithLimit (#306)
    
    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    55a3c47 View commit details
    Browse the repository at this point in the history
  3. Retract buggy v2.5.13 and v2.5.14

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    8bb54d3 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Configuration menu
    Copy the full SHA
    832be16 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Bump prettier in /validator/imported in the actions-deps group (#308)

    Bumps the actions-deps group in /validator/imported with 1 update: [prettier](https://github.com/prettier/prettier).
    
    
    Updates `prettier` from 3.3.1 to 3.3.2
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.3.1...3.3.2)
    
    ---
    updated-dependencies:
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 18, 2024
    Configuration menu
    Copy the full SHA
    162c9a4 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. Bump the actions-deps group in /validator/imported with 6 updates (#310)

    Bumps the actions-deps group in /validator/imported with 6 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.24.7` | `7.24.8` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.7` | `7.24.9` |
    | [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) | `7.24.7` | `7.24.8` |
    | [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.24.7` | `7.24.8` |
    | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.24.7` | `7.24.8` |
    | [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.3.3` |
    
    
    Updates `@babel/cli` from 7.24.7 to 7.24.8
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.8/packages/babel-cli)
    
    Updates `@babel/core` from 7.24.7 to 7.24.9
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.9/packages/babel-core)
    
    Updates `@babel/node` from 7.24.7 to 7.24.8
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.8/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.24.7 to 7.24.8
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.8/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.24.7 to 7.24.8
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.24.8/packages/babel-preset-env)
    
    Updates `prettier` from 3.3.2 to 3.3.3
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.3.2...3.3.3)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: prettier
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 15, 2024
    Configuration menu
    Copy the full SHA
    da27ce6 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Bump golangci/golangci-lint-action in the actions-deps group (#313)

    Bumps the actions-deps group with 1 update: [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action).
    
    
    Updates `golangci/golangci-lint-action` from 6.0.1 to 6.1.0
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v6.0.1...v6.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    d5bcc3d View commit details
    Browse the repository at this point in the history
  2. Bump the actions-deps group across 1 directory with 4 updates (#312)

    Bumps the actions-deps group with 4 updates in the /validator/imported directory: [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core), [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node), [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) and [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env).
    
    
    Updates `@babel/core` from 7.24.9 to 7.25.2
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.2/packages/babel-core)
    
    Updates `@babel/node` from 7.24.8 to 7.25.0
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.0/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.24.8 to 7.25.2
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.2/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.24.8 to 7.25.3
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.3/packages/babel-preset-env)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    26ff391 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. Bump @babel/preset-env in /validator/imported in the actions-deps gro…

    …up (#314)
    
    Bumps the actions-deps group in /validator/imported with 1 update: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env).
    
    
    Updates `@babel/preset-env` from 7.25.3 to 7.25.4
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.4/packages/babel-preset-env)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 27, 2024
    Configuration menu
    Copy the full SHA
    ed10d5c View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. validator: make rules exported and allow custom set of rules for Vali…

    …date (#320)
    
    * validator: make rules exported and allow custom set of rules be passed to the Validate
    
    * use format string as a first argument to Message()
    
    ---------
    
    Co-authored-by: Kirill Grigorev <[email protected]>
    kgrigorev and Kirill Grigorev authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    068eddf View commit details
    Browse the repository at this point in the history
  2. Supporting directive on the schema (#318)

    * fix
    
    * wip
    
    * rename
    
    * test args
    
    * fix
    
    ---------
    
    Co-authored-by: 堀之内皓隆 <horinouchiakiratakashi@horinouchiakiratakashinonotobukkukonpyuta.local>
    hori0926 and 堀之内皓隆 authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    eedca08 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. [SECURITY PROBLEM] Implement a configuration option to disable the su…

    …ggestion feature when a GraphQL query fails (#319)
    
    * impl: add validate option
    
    * impl: disable field name and type name suggestion
    
    * test: fix signature (validate option)
    
    * fix: logic of suggestion
    
    * test: implement test for fields_on_correct_type_rule
    
    * test: add disable suggestion tests
    
    * fix: use variadic arguments
    
    * test: implement DIsableSuggestion
    
    * test: remove ValidateOption
    
    * remove unneccesary changes
    
    * test: add tests for disable suggestion
    
    * .
    tomoikey authored Sep 29, 2024
    Configuration menu
    Copy the full SHA
    888baf8 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Bump @babel/cli in /validator/imported in the actions-deps group (#315)

    Bumps the actions-deps group in /validator/imported with 1 update: [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli).
    
    
    Updates `@babel/cli` from 7.24.8 to 7.25.6
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.6/packages/babel-cli)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 1, 2024
    Configuration menu
    Copy the full SHA
    4eab083 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Bump the actions-deps group in /validator/imported with 6 updates (#323)

    Bumps the actions-deps group in /validator/imported with 6 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.25.6` | `7.25.7` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.25.2` | `7.25.7` |
    | [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) | `7.25.0` | `7.25.7` |
    | [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.25.2` | `7.25.7` |
    | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.25.4` | `7.25.7` |
    | [@babel/preset-flow](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-flow) | `7.24.7` | `7.25.7` |
    
    
    Updates `@babel/cli` from 7.25.6 to 7.25.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-cli)
    
    Updates `@babel/core` from 7.25.2 to 7.25.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-core)
    
    Updates `@babel/node` from 7.25.0 to 7.25.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.25.2 to 7.25.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.25.4 to 7.25.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-preset-env)
    
    Updates `@babel/preset-flow` from 7.24.7 to 7.25.7
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-preset-flow)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-flow"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    815a2a3 View commit details
    Browse the repository at this point in the history
  2. Bump golangci/golangci-lint-action in the actions-deps group (#322)

    Bumps the actions-deps group with 1 update: [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action).
    
    
    Updates `golangci/golangci-lint-action` from 6.1.0 to 6.1.1
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v6.1.0...v6.1.1)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    f0827b6 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Add exported function to remove rules (#316)

    * feat(rules): Add way to remove rule
    
    * feat(rules): Remove unnecessary change
    
    * feat(rules): Fix linting error
    
    * feat(rules): Fix linting error
    ldebruijn authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    c888731 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. Bump the actions-deps group in /validator/imported with 2 updates (#324)

    Bumps the actions-deps group in /validator/imported with 2 updates: [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) and [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env).
    
    
    Updates `@babel/core` from 7.25.7 to 7.25.8
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.8/packages/babel-core)
    
    Updates `@babel/preset-env` from 7.25.7 to 7.25.8
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.8/packages/babel-preset-env)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 15, 2024
    Configuration menu
    Copy the full SHA
    fb9ca5a View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2024

  1. Configuration menu
    Copy the full SHA
    49df52f View commit details
    Browse the repository at this point in the history
  2. Update to go v1.21 (#326)

    Signed-off-by: Steve Coffman <[email protected]>
    StevenACoffman authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    8dbbe55 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. When format a doc without description, don't add new line between args (

    #327)
    
    * add a option to format GQL without description
    
    * dont inlude akward space if format omitDescription
    
    * trailing new line
    
    * no indent
    fredzqm authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    6361a74 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. Configuration menu
    Copy the full SHA
    89fc137 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. Bump the actions-deps group in /validator/imported with 7 updates (#329)

    Bumps the actions-deps group in /validator/imported with 7 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) | `7.25.7` | `7.25.9` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.25.8` | `7.26.0` |
    | [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) | `7.25.7` | `7.26.0` |
    | [@babel/plugin-transform-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-typescript) | `7.25.7` | `7.25.9` |
    | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.25.8` | `7.26.0` |
    | [@babel/preset-flow](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-flow) | `7.25.7` | `7.25.9` |
    | [chai](https://github.com/chaijs/chai) | `5.1.1` | `5.1.2` |
    
    
    Updates `@babel/cli` from 7.25.7 to 7.25.9
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.9/packages/babel-cli)
    
    Updates `@babel/core` from 7.25.8 to 7.26.0
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.26.0/packages/babel-core)
    
    Updates `@babel/node` from 7.25.7 to 7.26.0
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.26.0/packages/babel-node)
    
    Updates `@babel/plugin-transform-typescript` from 7.25.7 to 7.25.9
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.9/packages/babel-plugin-transform-typescript)
    
    Updates `@babel/preset-env` from 7.25.8 to 7.26.0
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.26.0/packages/babel-preset-env)
    
    Updates `@babel/preset-flow` from 7.25.7 to 7.25.9
    - [Release notes](https://github.com/babel/babel/releases)
    - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/babel/babel/commits/v7.25.9/packages/babel-preset-flow)
    
    Updates `chai` from 5.1.1 to 5.1.2
    - [Release notes](https://github.com/chaijs/chai/releases)
    - [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
    - [Commits](chaijs/chai@v5.1.1...v5.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@babel/cli"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/core"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/node"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/plugin-transform-typescript"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-env"
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions-deps
    - dependency-name: "@babel/preset-flow"
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    - dependency-name: chai
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions-deps
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    e408be3 View commit details
    Browse the repository at this point in the history