purple-stack icon indicating copy to clipboard operation
purple-stack copied to clipboard

chore(deps): update all non-major dependencies (minor)

Open renovate[bot] opened this issue 1 year ago • 1 comments

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
  • [92f7142](https://togithub.com/dotan

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[bot] avatar May 28 '23 23:05 renovate[bot]