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

Update fastify #135

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

Update fastify #135

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-codegen/cli (source) 2.2.0 -> 2.16.5 age adoption passing confidence
@graphql-codegen/typescript (source) 2.2.2 -> 2.8.8 age adoption passing confidence
@graphql-codegen/typescript-operations (source) 2.1.4 -> 2.5.13 age adoption passing confidence
@graphql-codegen/typescript-react-apollo (source) 3.1.4 -> 3.3.7 age adoption passing confidence
@graphql-tools/schema (source) 8.2.0 -> 8.5.1 age adoption passing confidence
fastify (source) 3.21.2 -> 3.29.5 age adoption passing confidence
fastify-cors 6.0.2 -> 6.1.0 age adoption passing confidence
mercurius (source) 8.2.1 -> 8.13.2 age adoption passing confidence
mercurius-codegen 3.0.0 -> 3.3.1 age adoption passing confidence

Release Notes

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

v2.4.0

Compare Source

Minor Changes
  • 4c42e2a: Performance optimizations in schema and documents loading (shared promises)

v2.3.1

Compare Source

Patch Changes

v2.3.0

Compare Source

Minor Changes
  • 50c1d32: feat(cli): export loadCodegenConfig to load codegen configuration files
Patch Changes
  • 04e2d83: export generateSearchPlaces

v2.2.2

Compare Source

Patch Changes

v2.2.1

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript)

v2.8.8

Compare Source

Patch Changes

v2.8.7

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "every 2 months on the 1 day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

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


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

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

@renovate renovate bot force-pushed the renovate/fastify branch 8 times, most recently from fc4b33a to bea7f02 Compare May 5, 2022 18:05
@renovate renovate bot force-pushed the renovate/fastify branch 2 times, most recently from b7b25cc to 6912b60 Compare May 9, 2022 21:54
@renovate renovate bot force-pushed the renovate/fastify branch 2 times, most recently from a311180 to 9f828b3 Compare May 20, 2022 16:59
@renovate renovate bot force-pushed the renovate/fastify branch 3 times, most recently from 03f07fe to f745aa4 Compare June 10, 2022 19:09
@renovate renovate bot force-pushed the renovate/fastify branch 3 times, most recently from d4005ed to 68a2b8a Compare June 29, 2022 17:35
@renovate renovate bot force-pushed the renovate/fastify branch 12 times, most recently from 34ed23f to 625f297 Compare July 1, 2022 15:06
@renovate renovate bot force-pushed the renovate/fastify branch 4 times, most recently from 6feb2ad to a3bf235 Compare July 2, 2023 16:41
@renovate renovate bot force-pushed the renovate/fastify branch 9 times, most recently from 43e8978 to ecf4fb6 Compare September 2, 2023 05:01
@renovate renovate bot force-pushed the renovate/fastify branch 4 times, most recently from 9701ac5 to 5868933 Compare November 2, 2023 06:12
@renovate renovate bot force-pushed the renovate/fastify branch 9 times, most recently from c63c91b to 66980df Compare January 2, 2024 03:39
@renovate renovate bot force-pushed the renovate/fastify branch 2 times, most recently from 9207546 to b57f16d Compare March 2, 2024 21:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants