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 all non-major dependencies #3825

Merged
merged 2 commits into from
Apr 15, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 11, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/gateway 0.50.0 -> 0.50.1 age adoption passing confidence
@apollo/subgraph 0.4.0 -> 0.4.1 age adoption passing confidence
@graphql-tools/batch-delegate 8.2.11 -> 8.2.13 age adoption passing confidence
@graphql-tools/code-file-loader 7.2.11 -> 7.2.12 age adoption passing confidence
@graphql-tools/delegate 8.7.2 -> 8.7.4 age adoption passing confidence
@graphql-tools/graphql-file-loader 7.3.8 -> 7.3.9 age adoption passing confidence
@graphql-tools/load 7.5.7 -> 7.5.8 age adoption passing confidence
@graphql-tools/merge 8.2.7 -> 8.2.8 age adoption passing confidence
@graphql-tools/mock 8.6.5 -> 8.6.6 age adoption passing confidence
@graphql-tools/resolvers-composition 6.4.6 -> 6.4.7 age adoption passing confidence
@graphql-tools/schema 8.3.7 -> 8.3.8 age adoption passing confidence
@graphql-tools/stitch 8.6.4 -> 8.6.6 age adoption passing confidence
@graphql-tools/stitching-directives 2.2.9 -> 2.2.11 age adoption passing confidence
@graphql-tools/url-loader 7.9.9 -> 7.9.11 age adoption passing confidence
@graphql-tools/utils 8.6.6 -> 8.6.7 age adoption passing confidence
@graphql-tools/wrap 8.4.11 -> 8.4.13 age adoption passing confidence
@graphql-yoga/node 2.0.0 -> 2.3.0 age adoption passing confidence
@graphql-yoga/render-graphiql 2.0.0 -> 2.4.0 age adoption passing confidence
@next/bundle-analyzer 12.1.4 -> 12.1.5 age adoption passing confidence
@​theguild/components 1.10.3 -> 1.11.0 age adoption passing confidence
@types/node 16.11.26 -> 16.11.27 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.18.0 -> 5.19.0 age adoption passing confidence
@typescript-eslint/parser 5.18.0 -> 5.19.0 age adoption passing confidence
cross-undici-fetch 0.1.28 -> 0.2.5 age adoption passing confidence
dataloader 2.0.0 -> 2.1.0 age adoption passing confidence
esbuild 0.14.34 -> 0.14.36 age adoption passing confidence
eslint-config-next 12.1.4 -> 12.1.5 age adoption passing confidence
framer-motion 6.2.9 -> 6.3.0 age adoption passing confidence
mongoose (source) 6.2.10 -> 6.3.0 age adoption passing confidence
next (source) 12.1.4 -> 12.1.5 age adoption passing confidence

Release Notes

apollographql/federation (@​apollo/gateway)

v0.50.1

Compare Source

apollographql/federation (@​apollo/subgraph)

v0.4.1

Compare Source

ardatan/graphql-tools (@​graphql-tools/batch-delegate)

v8.2.13

Compare Source

Patch Changes

v8.2.12

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/code-file-loader)

v7.2.12

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/delegate)

v8.7.4

Compare Source

Patch Changes

v8.7.3

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/graphql-file-loader)

v7.3.9

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/load)

v7.5.8

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/merge)

v8.2.8

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/mock)

v8.6.6

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/resolvers-composition)

v6.4.7

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/schema)

v8.3.8

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/stitch)

v8.6.6

Compare Source

Patch Changes

v8.6.5

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/stitching-directives)

v2.2.11

Compare Source

Patch Changes

v2.2.10

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/url-loader)

v7.9.11

Compare Source

Patch Changes

v7.9.10

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/utils)

v8.6.7

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/wrap)

v8.4.13

Compare Source

Patch Changes

v8.4.12

Compare Source

Patch Changes
dotansimha/graphql-yoga (@​graphql-yoga/node)

v2.3.0

Compare Source

Patch Changes

v2.2.1

Compare Source

Patch Changes

v2.2.0

Compare Source

Patch Changes

v2.1.0

Compare Source

Minor Changes
  • 4077773: Allow to pass in graphiql: true or graphiql: () => true as an option to create server.

    This change makes it easier to please the TypeScript compiler for setups that disable YogaGraphiQL conditionally (e.g.g based on environment variables).

    Previously you had to write:

    createServer({
      graphiql: process.env.NODE_ENV === "development" ? {} : false
      // OR
      graphiql: process.env.NODE_ENV === "development" ? undefined : false
    });

    Now you can write the following:

    createServer({
      graphiql: process.env.NODE_ENV === 'development',
    })
  • 2739db2: Update to latest GraphiQL 1.8.4

Patch Changes
dotansimha/graphql-yoga (@​graphql-yoga/render-graphiql)

v2.4.0

Compare Source

Minor Changes

v2.3.0

Compare Source

Minor Changes
  • 32e2e40: Thanks to the recent release of DataLoader, we don't need to setImmediate for browser environments anymore.
Patch Changes

v2.2.0

Compare Source

Minor Changes

v2.1.0

Compare Source

Minor Changes
Patch Changes
  • e207079: Defaults to the current pathname for the GraphQL endpoint.
vercel/next.js

v12.1.5

Compare Source

Core Changes
  • [Script] Use __non_webpack_require__ to fetch partytown server-side: #​35793
  • Use ReadableStream in client hydration for Firefox compatibility: #​35796
  • Continue testing react v17 with e2e tests: #​35787
  • Collect packages are used and eliminated in getServerSideProps: #​35404
  • Initial implementation of statically optimized flight data of server component pages: #​35619
  • Fix layout="raw" image element sizes prop: #​35809
  • fix: reset visible state when src/href changed: #​35287
  • Add warning when importing "next" directly: #​35884
  • Custom app for switchable runtime: #​35666
  • Update repo to use react 18 by default: #​35888
  • Fix Firefox flash of white on next/image with placeholder=blur: #​35889
  • Fix data encoder and decoder to use stream in renderer: #​35936
  • Revert "fix the dynamic routing of middleware": #​35932
  • Update: Add error message when for getServerSideProps invalid return value: #​35887
  • Code refactoring: #​35937
  • fix: add locale prefix to middleware preflight url: #​35911
  • Emotion SWC Plugin - Allow for jsxImportSource to be configurable: #​35963
  • Update polyfill of web streams: #​35571
  • Add .eslintrc.cjs to list of supported next lint config files: #​35440
  • update webpack: #​35867
  • Ensure minimalMode previousCache expire time is capped: #​35954
  • Add test case for module resolution in node_modules from different contexts: #​35978
  • Support shared component with next built-in client components: #​35975
  • Use eager import to include client modules: #​35979
  • Use renderToString for flush effects: #​35999
  • test: organize react 18 tests: #​36003
  • allow to provide postcss plugin options as a string: #​35173
  • Fix leaking internal config to user-defined loader prop in next/image: #​36013
  • Support export all syntax in client components: #​36027
  • Interpolate default exports: #​35933
  • feat(next-swc): Update swc crates: #​35996
  • Interpolate default exports is now unnecessary: #​36065
  • Do not add locale to link for api route and middleware preflight: #​35994
  • update @​vercel/nft to 0.18.1: #​36075
  • Fix outputStandalone with optimizeCss: #​36028
  • Interpolate module.exports as default import : #​36082
  • fix(next-url): print properly using logger symbol: #​36097
Documentation Changes
  • Docs: update react 18's overview: #​35766
  • Update dead link for getStaticPaths in error docs: #​35814
  • Link to with-docker-multi-env example.: #​35820
  • Add Vitest example.: #​35858
  • Docs: Add useful link to invalid-getstaticprops-value error message: #​35915
  • Update Manual Steps in Getting Started guide: #​35898
  • fix: toBeInTheDocument is not a function: #​35930
  • Refactor default locale prefix to support clone(): #​35874
  • docs: clarify when you use getServerSideProps: #​35922
  • Update docs related to React 18: #​35952
  • Mention HTTP 303 See Other in redirects section: #​35997
  • Update the docs for Switchable Runtime: #​36015
  • Add docs for x-nextjs-cache header: #​36023
  • Improvements to the MDX Docs and replaced a leftover reference to babel: #​35332
  • Moving middleware file : #​36009
  • Revert "Improvements to the MDX Docs and replaced a leftover reference to babel": #​36066
  • docs: failed-loading-swc possible fix for Windows users: #​36081
Example Changes
  • fix(with-mongodb): Change comment of MongoDB client in getServerSideProps: #​35750
  • [example] Fix bird animations in with-three-js example: #​36053
  • Update to with-supertokens example: #​35991
  • [Examples] Updating with-elasticsearch to latest Elasticsearch lib version: #​36063
  • [example] Fix fast refresh in with-slate example: #​36095
  • add support for changing /route/#hashes: #​36079
Misc Changes
  • test: add test for basic dynamic import with react 18 hydration: #​35772
  • Send build trace to datadog in CI: #​35306
  • Fix docs only check for performance metrics job: #​35785
  • Run e2e suite against React 18: #​35774
  • ci(trace): adjust agent env variables: #​35790
  • ci(trace): fix workflow conditions: #​35800
  • ci(workflow): fix api key for trace: #​35804
  • Stabilize react streaming ISR test: #​35885
  • Fix flaky test: #​35951
  • Add note to contributing about docs manifest: #​36020
  • Update turbo cache key: #​36074
  • docs: suggest cloning with depth=1 to avoid huge downloads: #​36064
Credits

Huge thanks to @​TianenPang, @​huozhi, @​Brooooooklyn, @​SokichiFujita, @​timneutkens, @​housseindjirdeh, @​kwonoj, [@​jonespen](ht


Configuration

📅 Schedule: "after 10pm,before 6:00am" in timezone Europe/Warsaw.

🚦 Automerge: Disabled due to failing status checks.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

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


  • If you want to rebase/retry this PR, click this checkbox.

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

@vercel
Copy link

vercel bot commented Apr 11, 2022

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/theguild/graphql-mesh/2Liycnsae2A1r4cAY9wD919vycxF
✅ Preview: https://graphql-mesh-git-renovate-all-minor-patch-theguild.vercel.app

@changeset-bot
Copy link

changeset-bot bot commented Apr 11, 2022

🦋 Changeset detected

Latest commit: edae81e

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 39 packages
Name Type
@graphql-mesh/graphql Patch
@graphql-mesh/runtime Patch
@graphql-mesh/container Patch
graphql-file-upload-example Patch
postgres-geodb-example Patch
type-merging-batching-example Patch
federation-gateway Patch
@graphql-mesh/cli Patch
@graphql-mesh/config Patch
nextjs-apollo-example Patch
nextjs-sdk-example Patch
odata-msgraph-programmatic-ts Patch
odata-msgraph-programmatic Patch
typescript-location-weather-example Patch
openapi-react-weatherbit Patch
grpc-example Patch
grpc-reflection-example Patch
hasura-openbrewery-geodb Patch
json-schema-hello-world Patch
json-schema-example Patch
json-schema-fhir Patch
json-schema-subscriptions Patch
mongoose-example Patch
mysql-employees Patch
mysql-rfam Patch
neo4j-example Patch
odata-microsoft-graph-example Patch
odata-trippin-example Patch
javascript-wiki Patch
openapi-stackexchange Patch
openapi-stripe Patch
openapi-subscriptions Patch
openapi-youtrack Patch
reddit-example Patch
country-info-example Patch
soap-demo Patch
soap-netsuite Patch
chinook Patch
thrift-calculator Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@theguild-bot
Copy link
Collaborator

theguild-bot commented Apr 11, 2022

The latest changes of this PR are available as alpha in npm (based on the declared changesets):

@graphql-mesh/[email protected]
@graphql-mesh/[email protected]
@graphql-mesh/[email protected]
@graphql-mesh/[email protected]
@graphql-mesh/[email protected]
@graphql-mesh/[email protected]
@graphql-mesh/[email protected]

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0bd3303 to c637235 Compare April 12, 2022 03:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c637235 to 2723a06 Compare April 12, 2022 06:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2723a06 to 9074f3b Compare April 12, 2022 11:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9074f3b to 2ee7069 Compare April 12, 2022 15:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2ee7069 to 42ac22d Compare April 12, 2022 18:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42ac22d to ab67b37 Compare April 12, 2022 21:27
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Apr 12, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ab67b37 to 49586c5 Compare April 13, 2022 03:04
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 13, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 49586c5 to ae3cb59 Compare April 13, 2022 05:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ae3cb59 to 96bfc25 Compare April 13, 2022 12:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 96bfc25 to 6d15e82 Compare April 13, 2022 13:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6d15e82 to d9480da Compare April 13, 2022 18:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d9480da to d2bc6ad Compare April 13, 2022 22:42
@ardatan ardatan merged commit 1dbe6b6 into master Apr 15, 2022
@renovate renovate bot deleted the renovate/all-minor-patch branch April 15, 2022 08:43
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.

3 participants