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 #5328

Merged
merged 2 commits into from
Apr 17, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-tools/batch-delegate 8.4.24 -> 8.4.25 age adoption passing confidence
@graphql-tools/batch-execute 8.5.18 -> 8.5.19 age adoption passing confidence
@graphql-tools/code-file-loader 7.3.21 -> 7.3.22 age adoption passing confidence
@graphql-tools/delegate 9.0.30 -> 9.0.31 age adoption passing confidence
@graphql-tools/graphql-file-loader 7.5.16 -> 7.5.17 age adoption passing confidence
@graphql-tools/load 7.8.13 -> 7.8.14 age adoption passing confidence
@graphql-tools/mock 8.7.19 -> 8.7.20 age adoption passing confidence
@graphql-tools/resolvers-composition 6.5.17 -> 6.5.18 age adoption passing confidence
@graphql-tools/schema 9.0.17 -> 9.0.18 age adoption passing confidence
@graphql-tools/stitch 8.7.47 -> 8.7.48 age adoption passing confidence
@graphql-tools/stitching-directives 2.3.33 -> 2.3.34 age adoption passing confidence
@graphql-tools/url-loader 7.17.17 -> 7.17.18 age adoption passing confidence
@graphql-tools/wrap 9.4.1 -> 9.4.2 age adoption passing confidence
@graphql-yoga/plugin-prometheus 1.8.0 -> 1.9.0 age adoption passing confidence
@graphql-yoga/plugin-response-cache 1.8.0 -> 1.9.0 age adoption passing confidence
@graphql-yoga/plugin-sofa 1.8.0 -> 1.9.0 age adoption passing confidence
@whatwg-node/fetch 0.8.4 -> 0.8.5 age adoption passing confidence
esbuild 0.17.16 -> 0.17.17 age adoption passing confidence
graphql-yoga 3.8.0 -> 3.9.0 age adoption passing confidence
ioredis 5.3.1 -> 5.3.2 age adoption passing confidence
wrangler 2.15.0 -> 2.15.1 age adoption passing confidence

Release Notes

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

v8.4.25

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/batch-execute)

v8.5.19

Compare Source

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

v7.3.22

Compare Source

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

v9.0.31

Compare Source

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

v7.5.17

Compare Source

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

v7.8.14

Compare Source

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

v8.7.20

Compare Source

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

v6.5.18

Compare Source

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

v9.0.18

Compare Source

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

v8.7.48

Compare Source

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

v2.3.34

Compare Source

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

v7.17.18

Compare Source

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

v9.4.2

Compare Source

Patch Changes
dotansimha/graphql-yoga (@​graphql-yoga/plugin-prometheus)

v1.9.0

Compare Source

Patch Changes

v1.8.1

Compare Source

Patch Changes
dotansimha/graphql-yoga (@​graphql-yoga/plugin-response-cache)

v1.9.0

Compare Source

Patch Changes

v1.8.1

Compare Source

Patch Changes
dotansimha/graphql-yoga (@​graphql-yoga/plugin-sofa)

v1.9.0

Compare Source

Patch Changes

v1.8.1

Compare Source

Patch Changes
ardatan/whatwg-node

v0.8.5

Compare Source

Patch Changes
evanw/esbuild

v0.17.17

Compare Source

  • Fix CSS nesting transform for top-level & (#​3052)

    Previously esbuild could crash with a stack overflow when lowering CSS nesting rules with a top-level &, such as in the code below. This happened because esbuild's CSS nesting transform didn't handle top-level &, causing esbuild to inline the top-level selector into itself. This release handles top-level & by replacing it with the :scope pseudo-class:

    /* Original code */
    &,
    a {
      .b {
        color: red;
      }
    }
    
    /* New output (with --target=chrome90) */
    :is(:scope, a) .b {
      color: red;
    }
  • Support exports in package.json for extends in tsconfig.json (#​3058)

    TypeScript 5.0 added the ability to use extends in tsconfig.json to reference a path in a package whose package.json file contains an exports map that points to the correct location. This doesn't automatically work in esbuild because tsconfig.json affects esbuild's path resolution, so esbuild's normal path resolution logic doesn't apply.

    This release adds support for doing this by adding some additional code that attempts to resolve the extends path using the exports field. The behavior should be similar enough to esbuild's main path resolution logic to work as expected.

    Note that esbuild always treats this extends import as a require() import since that's what TypeScript appears to do. Specifically the require condition will be active and the import condition will be inactive.

  • Fix watch mode with NODE_PATH (#​3062)

    Node has a rarely-used feature where you can extend the set of directories that node searches for packages using the NODE_PATH environment variable. While esbuild supports this too, previously a bug prevented esbuild's watch mode from picking up changes to imported files that were contained directly in a NODE_PATH directory. You're supposed to use NODE_PATH for packages, but some people abuse this feature by putting files in that directory instead (e.g. node_modules/some-file.js instead of node_modules/some-pkg/some-file.js). The watch mode bug happens when you do this because esbuild first tries to read some-file.js as a directory and then as a file. Watch mode was incorrectly waiting for some-file.js to become a valid directory. This release fixes this edge case bug by changing watch mode to watch some-file.js as a file when this happens.

dotansimha/graphql-yoga (graphql-yoga)

v3.9.0

Compare Source

Minor Changes

v3.8.1

Compare Source

Patch Changes
luin/ioredis

v5.3.2

Compare Source

Bug Fixes
cloudflare/workers-sdk

v2.15.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@changeset-bot
Copy link

changeset-bot bot commented Apr 13, 2023

🦋 Changeset detected

Latest commit: 5bae925

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

This PR includes changesets to release 75 packages
Name Type
@graphql-mesh/cache-redis Patch
@graphql-mesh/config Patch
@graphql-mesh/graphql Patch
@graphql-mesh/http Patch
@graphql-mesh/merger-bare Patch
@graphql-mesh/merger-federation Patch
@graphql-mesh/merger-stitching Patch
@graphql-mesh/mysql Patch
@graphql-mesh/odata Patch
@graphql-mesh/plugin-http2 Patch
@graphql-mesh/plugin-mock Patch
@graphql-mesh/plugin-prometheus Patch
@graphql-mesh/plugin-response-cache Patch
@graphql-mesh/postgraphile Patch
@graphql-mesh/runtime Patch
@graphql-mesh/transform-cache Patch
@graphql-mesh/transform-encapsulate Patch
@graphql-mesh/transform-extend Patch
@graphql-mesh/transform-federation Patch
@graphql-mesh/transform-filter-schema Patch
@graphql-mesh/transform-hive Patch
@graphql-mesh/transform-hoist-field Patch
@graphql-mesh/transform-naming-convention Patch
@graphql-mesh/transform-prefix Patch
@graphql-mesh/transform-rename Patch
@graphql-mesh/transform-replace-field Patch
@graphql-mesh/transform-resolvers-composition Patch
@graphql-mesh/transform-type-merging Patch
@graphql-mesh/types Patch
@graphql-mesh/utils Patch
@graphql-mesh/cli Patch
nextjs-apollo-example Patch
nextjs-sdk-example Patch
odata-msgraph-programmatic-ts Patch
odata-msgraph-programmatic Patch
postgres-geodb-example Patch
graphql-file-upload-example Patch
covid-mesh Patch
openwhisk-example Patch
spacex-cfw Patch
type-merging-batching-example Patch
federation-gateway Patch
mysql-employees Patch
mysql-rfam Patch
odata-microsoft-graph-example Patch
odata-trippin-example Patch
hello-world-esm Patch
json-schema-hello-world Patch
json-schema-example Patch
cloudflare-workers Patch
typescript-location-weather-example Patch
gateway-example Patch
grpc-example Patch
grpc-reflection-example Patch
openapi-youtrack Patch
auth0-example Patch
example-gcp Patch
hasura-openbrewery-geodb Patch
json-schema-fhir Patch
json-schema-file-upload Patch
json-schema-subscriptions Patch
mongoose-example Patch
neo4j-example Patch
javascript-wiki Patch
openapi-meilisearch Patch
openapi-stackexchange Patch
openapi-stripe Patch
openapi-subscriptions Patch
programmatic-batching-example 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

@github-actions
Copy link
Contributor

github-actions bot commented Apr 13, 2023

🚀 Snapshot Release (alpha)

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

Package Version Info
@graphql-mesh/cache-redis 0.11.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/cli 0.82.33-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/config 10.1.16-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/graphql 0.34.17-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/mysql 0.19.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/neo4j 0.22.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/odata 0.22.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/postgraphile 0.22.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/soap 0.17.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/http 0.3.29-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@omnigraph/soap 0.4.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-bare 0.16.25-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-federation 0.13.25-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-stitching 0.18.25-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http2 0.0.2-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-mock 0.1.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-prometheus 0.5.10-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-rate-limit 0.2.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-response-cache 0.2.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-snapshot 0.1.25-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/runtime 0.46.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-cache 0.13.22-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-encapsulate 0.4.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-extend 0.11.21-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-federation 0.11.17-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-filter-schema 0.15.26-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hive 0.0.29-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hoist-field 0.2.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-naming-convention 0.13.25-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prefix 0.12.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rename 0.14.24-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-replace-field 0.4.21-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-resolvers-composition 0.13.21-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-type-merging 0.5.22-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/types 0.91.15-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎
@graphql-mesh/utils 0.43.23-alpha-20230417123025-5bae9252b npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented Apr 13, 2023

💻 Website Preview

The latest changes are available as preview in: https://bd63c40d.graphql-mesh.pages.dev

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8c669c8 to 886ddad Compare April 17, 2023 12:21
@renovate
Copy link
Contributor Author

renovate bot commented Apr 17, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@ardatan ardatan merged commit 0d73b3f into master Apr 17, 2023
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.

1 participant