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

chore(deps): update all devdependencies #130

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

Conversation

svc-secops
Copy link
Contributor

@svc-secops svc-secops commented Nov 5, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/changelog-github (source) 0.4.8 -> 0.5.0 age adoption passing confidence
@changesets/cli (source) 2.26.2 -> 2.27.1 age adoption passing confidence
@graphql-codegen/cli (source) 2.2.0 -> 2.16.5 age adoption passing confidence
@graphql-codegen/typescript-operations (source) 2.1.3 -> 2.5.13 age adoption passing confidence
@types/node (source) 14.17.6 -> 14.18.63 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 6.9.1 -> 6.21.0 age adoption passing confidence
@typescript-eslint/parser (source) 6.9.1 -> 6.21.0 age adoption passing confidence
eslint (source) 8.52.0 -> 8.57.0 age adoption passing confidence
eslint-config-prettier 9.0.0 -> 9.1.0 age adoption passing confidence
eslint-plugin-prettier 5.0.1 -> 5.1.3 age adoption passing confidence
memfs 3.2.2 -> 3.5.3 age adoption passing confidence
prettier (source) 3.0.3 -> 3.2.5 age adoption passing confidence
typescript (source) 4.3.5 -> 4.9.5 age adoption passing confidence
vsce (source) 1.96.1 -> 1.103.1 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/changelog-github)

v0.5.0

Compare Source

Minor Changes
  • #​1185 a971652 Thanks @​Andarist! - package.json#exports have been added to limit what (and how) code might be imported from the package.
Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v2.16.5

Compare Source

Patch Changes

v2.16.4

Compare Source

Patch Changes

v2.16.3

Compare Source

Patch Changes

v2.16.2

Compare Source

Patch Changes

v2.16.1

Compare Source

Patch Changes

v2.16.0

Compare Source

Minor Changes
Patch Changes

v2.15.0

Compare Source

Minor Changes

v2.14.1

Compare Source

Patch Changes

v2.14.0

Compare Source

Minor Changes
Patch Changes

v2.13.12

Compare Source

Patch Changes

v2.13.11

Compare Source

Patch Changes

v2.13.10

Compare Source

Patch Changes

v2.13.9

Compare Source

Patch Changes

v2.13.8

Compare Source

Patch Changes

v2.13.7

Compare Source

Patch Changes

v2.13.6

Compare Source

Patch Changes

v2.13.5

Compare Source

Patch Changes

v2.13.4

Compare Source

Patch Changes

v2.13.3

Compare Source

Patch Changes

v2.13.2

Compare Source

Patch Changes

v2.13.1

Compare Source

Patch Changes

v2.13.0

Compare Source

Minor Changes
Patch Changes

v2.12.2

Compare Source

Patch Changes

v2.12.1

Compare Source

Patch Changes

v2.12.0

Compare Source

Minor Changes
Patch Changes

v2.11.8

Compare Source

Patch Changes

v2.11.7

Compare Source

Patch Changes

v2.11.6

Compare Source

Patch Changes

v2.11.5

Compare Source

Patch Changes

v2.11.4

Compare Source

Patch Changes

v2.11.3

Compare Source

Patch Changes
  • b75ca4b: Prevent cli from early returning when run init command.

v2.11.2

Compare Source

Patch Changes
  • 8cd1526: chore(deps): update @whatwg-node/fetch to fix vulnerability

v2.11.1

Compare Source

Patch Changes
  • 20bf4b2: support for path containing "&" characters

v2.11.0

Compare Source

Minor Changes
  • fd6be80: feat(cli): add a dry-run mode with --check cli flag
Patch Changes

v2.10.0

Compare Source

Minor Changes
Patch Changes
  • cc18923: feat(hooks): forward hooks logs to debug logs

v2.9.1

Compare Source

Patch Changes
  • e2cfc5c: fix(cli): prevent duplicated error messages on fail (without watcher)

v2.9.0

Compare Source

Minor Changes
  • 2cbcbb3: Add new flag to emit legacy common js imports. Default it will be true this way it ensure that generated code works with non-compliant bundlers.

    You can use the option in your config:

    schema: 'schema.graphql'
     documents:
       - 'src/**/*.graphql'
     emitLegacyCommonJSImports: true

    Alternative you can use the CLI to set this option:

    $ codegen --config-file=config.yml --emit-legacy-common-js-imports
Patch Changes
  • 32c1560: getPluginByName fails unexpectedly when plugin is not prefixed with @​graphq-codegen in ESM context

    MODULE_NOT_FOUND is the error code you receive in a CommonJS context when you require() a module and it does not exist.
    ERR_MODULE_NOT_FOUND is the error code you receive in an ESM context when you import or import() ad module that does not exist.

  • Updated dependencies [2cbcbb3]

v2.8.1

Compare Source

Patch Changes

v2.8.0

Compare Source

Minor Changes
  • d84afec: Add bin CLI command for running graphql-code-generator in ESM mode. You can now use graphql-codegen-esm instead of graphql-codegen.

    GraphQL Code Generator will continue supporting both ESM and CommonJS in parallel.

  • d84afec: Support TypeScript ESM modules ("module": "node16" and "moduleResolution": "node16").

    More information on the TypeScript Release Notes.

  • 8e44df5: Add new config option to not exit with non-zero exit code when there are no documents.

    You can use this option in your config:

    schema: 'schema.graphql'
    documents:
      - 'src/**/*.graphql'
    ignoreNoDocuments: true

    Alternative you can use the CLI to set this option:

    $ codegen --config-file=config.yml --ignore-no-documents
Patch Changes
  • e7870ac: Fix security vulnerability by removing latest-version dependency.

  • dce40ed: Allow to disable watch mode from CLI to overwrite the config. Now you can do:

    $ graphql-codegen --watch=false
  • 2e86ecb: ### Summary

    • Migrate to listr2
    • Remove custom renderer for listr
    • Remove unused dependencies
Why

listr is not actively maintained and we have to maintain our custom renderer for it to display errors. Migrating to listr2 it just works out of the almost similar to how it was working in past and is a actively maintained.

Dev notes

Big change for us is how errors were collected. In listr errors were thrown and were caught in the end function of our custom listr Renderer but with listr2 we don't really get Error in end function always so instead we use the context to collect errors from all the tasks and then show them after all the tasks are finished.

v2.7.0

Compare Source

Minor Changes
  • e050230: Remove unnecessary browser check
Patch Changes

v2.6.4

Compare Source

Patch Changes
  • 92f7142: Revert "Upgrade latest version"

v2.6.3

Compare Source

Patch Changes
  • c1fe775: Remove unused deps
  • 52b41e9: bump latest-version to patch vuln

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Minor Changes
  • 35566a0: Use os.cpus to calculate concurrency limit
  • acc62e5: fix(deps): remove unnecessary dotenv main dependency
  • 35566a0: Async File System

v2.5.0

Compare Source

Minor Changes
  • 754a337: Performance Profiler --profile
Patch Changes

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Los_Angeles, Automerge - "after 8am and before 4pm on tuesday" in timezone America/Los_Angeles.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


This PR has been generated by Renovate Bot.

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.

None yet

1 participant