Skip to content

fix(deps): update dependency @graphql-inspector/core to v6 #749

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 26, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-inspector/core (source) ^2.3.0 -> ^6.0.0 age adoption passing confidence

Release Notes

kamilkisiela/graphql-inspector (@​graphql-inspector/core)

v6.0.1

Patch Changes

v6.0.0

Major Changes
  • #​2719
    50874f2
    Thanks @​TuvalSimha! - Upgrade the Node version from 16 to 18, as
    the minimum required version is now 18. Additionally, ensure that GraphQL Yoga is upgraded to
    version 5.

v5.0.2

Compare Source

Patch Changes

v5.0.1

Compare Source

Patch Changes

v5.0.0

Major Changes
Patch Changes

v4.2.2

Patch Changes

v4.2.1

Compare Source

Patch Changes

v4.2.0

Compare Source

Minor Changes

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
  • #​2392
    3184249b
    Thanks @​n1ru4l! - Wrap string values in quotes, so they can be
    differentiated from types.

    - Input field 'Foo.b' default value changed from 'undefined' to 'Bbb'
    + Input field 'Foo.b' default value changed from 'undefined' to '"Bbb"'
  • #​2392
    3184249b
    Thanks @​n1ru4l! - Add isSafeBasedOnUsage to Criticality type.
    This value is set to true in case the criticality is set to CriticalityLevel.Dangerous based
    on usage. This is helpful for statistics.

  • #​2392
    3184249b
    Thanks @​n1ru4l! - include meta data in the changes that are machine
    processable. This is useful if you want to efficiently store the changes in some database and
    later-on reconstruct the full change objects.

    export type FieldDescriptionChangedChange = {
      type: ChangeType.FieldDescriptionChanged
      meta: {
        typeName: string
        fieldName: string
        oldDescription: string
        newDescription: string
      }
    }

    You can construct the full Change object from the type and meta properties.

    import { ChangeType, fieldDescriptionChangedFromMeta } from '@​graphql-inspector/core'
    
    console.log(
      fieldDescriptionChangedFromMeta({
        type: ChangeType.FieldDescriptionChanged,
        meta: {
          typeName: 'Foo',
          fieldName: 'bar',
          oldDescription: 'This is the old description',
          newDescription: 'This is the new description'
        }
      })
    )

    console.log output:

    {
      type: 'FIELD_DESCRIPTION_CHANGED',
      criticality: { level: 'NON_BREAKING' },
      message: "Field 'Foo.bar' description changed from 'This is the old description' to 'This is the new description'",
      meta: {
        typeName: 'Foo',
        fieldName: 'bar',
        oldDescription: 'This is the old description',
        newDescription: 'This is the new description'
      },
      path: 'Foo.bar'
    }

v4.0.3

Compare Source

Patch Changes

v4.0.2

Patch Changes

v4.0.1

Patch Changes

v4.0.0

Compare Source

Major Changes

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Minor Changes

v3.4.0

Compare Source

v3.3.0

Compare Source

  • docker: Publish images to the registry
  • core: Fix Cannot convert object to primitive value error for defaultValue in ChangeType.InputFieldDefaultValueChanged
  • action: Fix ignored approve-label for push events #​2133
  • core: Addition of non-nullable argument with a default is now dangerous (previously breaking) #​2137

v3.2.0

Compare Source

  • action: Use GitHub REST API to retrieve the full blob content if schema is truncated #​2131
  • action: Diffing a graphql endpoint with a local .json schema file results in an error, fixed in #​2090
  • core: Fix comparison of non-nullable fields #​2122
  • core: Fix removal of a deprecated input field #​2122

v3.1.4

Compare Source

v3.1.3

Compare Source

  • core: Fix missing export of safeUnreachable rule #​2063
  • core: Fix equality for objects #​2100

v3.1.2

Compare Source

  • core: Make sure array of null prototype objects is printable #​2030
  • cli: Update GraphQL Yoga to v2

v3.1.1

Compare Source

  • cli: Use GraphQL Yoga in serve command

v3.1.0

Compare Source

  • action: Support introspection query result
  • GraphQL 16

v3.0.2

Compare Source

What's Changed

Full Changelog: graphql-hive/graphql-inspector@v3.0.1...v3.0.2

v3.0.1

Compare Source

  • core: prevent runtime exceptions during printing default value change #​2017

v3.0.0

Compare Source

  • core: BREAKING CHANGE - diff is now async
  • github: BREAKING CHANGE - experimental_merge is now enabled by default
  • core: Adds considerUsage rule
  • core: Adds safeUnreachable rule
  • core: Fixes missing names of default root types
  • cli, ci: Adds @aws_lambda directive
  • cli, ci: Fixes missing headers in diff command

v2.9.0

Compare Source

  • ci, cli: Add --ignore to validate command

v2.8.1

Compare Source

  • ci, cli: --filter should not affect the exit code of the validate command

v2.8.0

Compare Source

  • ci, cli: validate command can output JSON result
  • ci, cli: validate command can show only errors
  • ci, cli: validate command can show relative file paths
  • ci, cli: validate command has silent mode

v2.7.0

Compare Source

  • core: collect arguments in Schema Coverage #​1962
  • ci, cli: allow to filter results by file paths when validating documents

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants