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 non-major dependencies (minor) #159

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@graphql-codegen/cli (source) 2.6.2 -> 2.16.5 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript (source) 2.5.1 -> 2.8.8 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-operations (source) 2.4.2 -> 2.5.13 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 5.29.0 -> 5.62.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 5.29.0 -> 5.62.0 age adoption passing confidence devDependencies minor
aws-sdk 2.1162.0 -> 2.1550.0 age adoption passing confidence devDependencies minor
aws-sdk-mock 5.7.0 -> 5.9.0 age adoption passing confidence devDependencies minor
codecov 3.2.3 -> 3.3.0 age adoption passing confidence orb minor
eslint-plugin-prettier 4.0.0 -> 4.2.1 age adoption passing confidence devDependencies minor
eslint-plugin-react 7.30.1 -> 7.33.2 age adoption passing confidence devDependencies minor
i18next (source) 21.8.10 -> 21.10.0 age adoption passing confidence dependencies minor
prettier (source) 2.7.1 -> 2.8.8 age adoption passing confidence devDependencies minor
react-i18next 11.17.3 -> 11.18.6 age adoption passing confidence dependencies minor
serverless-appsync-plugin 1.13.0 -> 1.14.0 age adoption passing confidence devDependencies minor
serverless-step-functions 3.7.0 -> 3.19.0 age adoption passing confidence devDependencies minor
serverless-webpack 5.7.1 -> 5.13.0 age adoption passing confidence devDependencies minor
typescript (source) 4.7.4 -> 4.9.5 age adoption passing confidence devDependencies minor
webpack 4.46.0 -> 4.47.0 age adoption passing confidence dependencies minor
webpack 4.46.0 -> 4.47.0 age adoption passing confidence devDependencies minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


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

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Europe/Prague, 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 added the dependencies Pull requests that update a dependency file label May 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 1873edb to 37e179f Compare June 2, 2023 19:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7769d53 to a5be1de Compare June 12, 2023 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0ec0469 to 7b86199 Compare June 19, 2023 20:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from a299860 to 8d96488 Compare June 27, 2023 21:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4399ed4 to 66b0df4 Compare July 5, 2023 18:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7a3ce1a to a45ee62 Compare July 10, 2023 08:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from e3c6529 to ee629a5 Compare December 28, 2023 22:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f946141 to 38ef7d7 Compare January 4, 2024 23:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from e467ee3 to 15ecaaf Compare January 11, 2024 22:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 13a4665 to c8b1bd7 Compare January 18, 2024 23:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from fc1bb98 to 516d7bf Compare January 25, 2024 21:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 61a5439 to 6fe251b Compare February 2, 2024 11:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6fe251b to ab8bc14 Compare February 2, 2024 22:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants