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

fix(deps): update minor and patch dependencies for gatsby #115

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 1, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@gatsbyjs/webpack-hot-middleware ^2.25.2 -> ^2.25.3 age adoption passing confidence
@graphql-codegen/add (source) ^3.1.1 -> ^3.2.3 age adoption passing confidence
@graphql-codegen/core (source) ^2.5.1 -> ^2.6.8 age adoption passing confidence
@graphql-codegen/plugin-helpers (source) ^2.4.2 -> ^2.7.2 age adoption passing confidence
@graphql-codegen/typescript (source) ^2.4.8 -> ^2.8.8 age adoption passing confidence
@graphql-codegen/typescript-operations (source) ^2.3.5 -> ^2.5.13 age adoption passing confidence
@graphql-tools/code-file-loader (source) ^7.2.14 -> ^7.3.23 age adoption passing confidence
@graphql-tools/load (source) ^7.5.10 -> ^7.8.14 age adoption passing confidence
@jridgewell/trace-mapping ^0.3.13 -> ^0.3.25 age adoption passing confidence
@pmmmwh/react-refresh-webpack-plugin ^0.5.7 -> ^0.5.15 age adoption passing confidence
@types/http-proxy (source) ^1.17.7 -> ^1.17.15 age adoption passing confidence
@vercel/webpack-asset-relocator-loader ^1.7.0 -> ^1.7.4 age adoption passing confidence
address 1.1.2 -> 1.2.2 age adoption passing confidence
anser ^2.1.0 -> ^2.3.0 age adoption passing confidence
autoprefixer ^10.4.0 -> ^10.4.20 age adoption passing confidence
babel-loader ^8.2.3 -> ^8.4.1 age adoption passing confidence
browserslist ^4.17.5 -> ^4.24.2 age adoption passing confidence
common-tags ^1.8.0 -> ^1.8.2 age adoption passing confidence
date-fns ^2.25.0 -> ^2.30.0 age adoption passing confidence
deepmerge ^4.2.2 -> ^4.3.1 age adoption passing confidence
detect-port ^1.3.0 -> ^1.6.1 age adoption passing confidence
enhanced-resolve ^5.8.3 -> ^5.17.1 age adoption passing confidence
event-source-polyfill 1.0.25 -> 1.0.31 age adoption passing confidence
express (source) ^4.17.1 -> ^4.21.1 age adoption passing confidence
fastest-levenshtein ^1.0.12 -> ^1.0.16 age adoption passing confidence
fastq ^1.13.0 -> ^1.17.1 age adoption passing confidence
got ^11.8.5 -> ^11.8.6 age adoption passing confidence
graphql ^15.7.2 -> ^15.9.0 age adoption passing confidence
graphql-compose ^9.0.7 -> ^9.0.11 age adoption passing confidence
graphql-playground-middleware-express (source) ^1.7.22 -> ^1.7.23 age adoption passing confidence
joi ^17.4.2 -> ^17.13.3 age adoption passing confidence
memoizee ^0.4.15 -> ^0.4.17 age adoption passing confidence
micromatch ^4.0.4 -> ^4.0.8 age adoption passing confidence
mime ^2.5.2 -> ^2.6.0 age adoption passing confidence
node-fetch ^2.6.6 -> ^2.7.0 age adoption passing confidence
node-html-parser ^5.3.3 -> ^5.4.2 age adoption passing confidence
opentracing ^0.14.5 -> ^0.14.7 age adoption passing confidence
postcss (source) ^8.3.11 -> ^8.4.47 age adoption passing confidence
prop-types (source) ^15.7.2 -> ^15.8.1 age adoption passing confidence
redux (source) 4.1.2 -> 4.2.1 age adoption passing confidence
redux-thunk ^2.4.0 -> ^2.4.2 age adoption passing confidence
signal-exit ^3.0.5 -> ^3.0.7 age adoption passing confidence
slugify ^1.6.1 -> ^1.6.6 age adoption passing confidence
terser-webpack-plugin ^5.2.4 -> ^5.3.10 age adoption passing confidence
tmp ^0.2.1 -> ^0.2.3 age adoption passing confidence
webpack ^5.61.0 -> ^5.95.0 age adoption passing confidence
webpack-merge ^5.8.0 -> ^5.10.0 age adoption passing confidence
webpack-stats-plugin ^1.0.3 -> ^1.1.3 age adoption passing confidence
xstate (source) 4.32.1 -> 4.38.3 age adoption passing confidence

Release Notes

dotansimha/graphql-code-generator (@​graphql-codegen/add)

v3.2.3

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

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

v2.6.8

Compare Source

Patch Changes

v2.6.7

Compare Source

Patch Changes

v2.6.6

Compare Source

Patch Changes

v2.6.5

Compare Source

Patch Changes

v2.6.4

Compare Source

Patch Changes

v2.6.3

Compare Source

Patch Changes

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes

v2.6.0

Compare Source

Minor Changes
Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/plugin-helpers)

v2.7.2

Compare Source

Patch Changes

v2.7.1

Compare Source

Patch Changes

v2.7.0

Compare Source

Minor Changes

v2.6.2

Compare Source

Patch Changes

v2.6.1

Compare Source

Patch Changes
  • 6a2e328: feat(cli): --verbose and --debug flags

v2.6.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

v2.5.0

Compare Source

Minor Changes
  • 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
  • a4fe500: Fix TS type error on strictNullChecks: true

    Fix the compiler error:

    node_modules/@&#8203;graphql-codegen/plugin-helpers/oldVisit.d.ts:5:75 - error TS2339: Property 'enter' does not exist on type '{ readonly enter?: ASTVisitFn<NameNode> | undefined; readonly leave: ASTReducerFn<NameNode, unknown>; } | { readonly enter?: ASTVisitFn<DocumentNode> | undefined; readonly leave: ASTReducerFn<...>; } | ... 41 more ... | undefined'.
    
    5     enter?: Partial<Record<keyof NewVisitor, NewVisitor[keyof NewVisitor]['enter']>>;
                                                                                ~~~~~~~
    
    node_modules/@&#8203;graphql-codegen/plugin-helpers/oldVisit.d.ts:6:75 - error TS2339: Property 'leave' does not exist on type '{ readonly enter?: ASTVisitFn<NameNode> | undefined; readonly leave: ASTReducerFn<NameNode, unknown>; } | { readonly enter?: ASTVisitFn<DocumentNode> | undefined; readonly leave: ASTReducerFn<...>; } | ... 41 more ... | undefined'.
    
    6     leave?: Partial<Record<keyof NewVisitor, NewVisitor[keyof NewVisitor]['leave']>>;
    

Configuration

📅 Schedule: Branch creation - "before 7am on the first day of the month" in timezone GMT, 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.

👻 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch 14 times, most recently from 0d32467 to 71960d0 Compare October 8, 2021 14:58
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch 4 times, most recently from 04e4e59 to 4bf5aca Compare October 19, 2021 19:09
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch 9 times, most recently from 7f7dff9 to 2a55fb4 Compare October 27, 2021 17:33
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch 2 times, most recently from 67028c5 to 4b4124c Compare October 28, 2021 14:32
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch 3 times, most recently from 5d7d0d0 to da4cf74 Compare August 2, 2022 22:41
@pieh pieh force-pushed the master branch 2 times, most recently from ee1fe6c to a51e359 Compare August 11, 2022 07:35
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from da4cf74 to 6b9247c Compare August 18, 2022 23:07
@renovate renovate bot changed the title fix(deps): update minor and patch dependencies for gatsby fix(deps): update minor and patch dependencies for gatsby - autoclosed Apr 3, 2023
@renovate renovate bot closed this Apr 3, 2023
@renovate renovate bot deleted the renovate/gatsby-prod-minor branch April 3, 2023 23:45
@renovate renovate bot changed the title fix(deps): update minor and patch dependencies for gatsby - autoclosed fix(deps): update minor and patch dependencies for gatsby Apr 5, 2023
@renovate renovate bot reopened this Apr 5, 2023
@renovate renovate bot restored the renovate/gatsby-prod-minor branch April 5, 2023 01:02
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 6b9247c to 9e251ab Compare August 1, 2023 05:38
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 9e251ab to 635ff94 Compare September 1, 2023 00:54
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 635ff94 to 865a7ed Compare October 1, 2023 01:07
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 865a7ed to 422768b Compare November 1, 2023 00:12
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 422768b to 06948c3 Compare December 1, 2023 00:14
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 06948c3 to 88808aa Compare January 1, 2024 02:17
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 88808aa to fba70ea Compare February 1, 2024 01:01
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from fba70ea to d0157bf Compare March 1, 2024 00:28
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from d0157bf to 7117d43 Compare April 1, 2024 00:56
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 7117d43 to 1f0ee72 Compare May 1, 2024 02:16
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 1f0ee72 to 3e9e992 Compare June 1, 2024 02:55
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 3e9e992 to 7f2789f Compare July 1, 2024 00:23
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 7f2789f to 7dc2fca Compare August 1, 2024 00:34
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 7dc2fca to 3260486 Compare September 1, 2024 00:36
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from 3260486 to c61952d Compare October 1, 2024 00:34
@renovate renovate bot force-pushed the renovate/gatsby-prod-minor branch from c61952d to 5ebace8 Compare November 1, 2024 02:25
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