Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the npm-dependencies group with 5 updates:

Package From To
@graphql-tools/merge 9.1.2 9.1.6
@graphql-tools/schema 10.0.26 10.0.30
graphql-yoga 5.16.0 5.17.0
prettier 3.6.2 3.7.3
wrangler 4.45.3 4.51.0

Updates @graphql-tools/merge from 9.1.2 to 9.1.6

Changelog

Sourced from @​graphql-tools/merge's changelog.

9.1.6

Patch Changes

  • Updated dependencies [2118a80]:
    • @​graphql-tools/utils@​10.11.0

9.1.5

Patch Changes

  • Updated dependencies [2fe123a]:
    • @​graphql-tools/utils@​10.10.3

9.1.4

Patch Changes

  • Updated dependencies [dddc5f6]:
    • @​graphql-tools/utils@​10.10.2

9.1.3

Patch Changes

  • Updated dependencies [fbb58b5]:
    • @​graphql-tools/utils@​10.10.1
Commits
  • 7b17d1f chore(release): update monorepo packages versions (#7722)
  • 8e2f481 chore(release): update monorepo packages versions (#7684)
  • 53fdba6 chore(release): update monorepo packages versions (#7680)
  • 7f1859f build(deps): bump the actions-deps group with 5 updates (#7667)
  • 5b26b6d chore(release): update monorepo packages versions (#7655)
  • See full diff in compare view

Updates @graphql-tools/schema from 10.0.26 to 10.0.30

Changelog

Sourced from @​graphql-tools/schema's changelog.

10.0.30

Patch Changes

  • Updated dependencies [2118a80]:
    • @​graphql-tools/utils@​10.11.0
    • @​graphql-tools/merge@​9.1.6

10.0.29

Patch Changes

  • Updated dependencies [2fe123a]:
    • @​graphql-tools/utils@​10.10.3
    • @​graphql-tools/merge@​9.1.5

10.0.28

Patch Changes

  • Updated dependencies [dddc5f6]:
    • @​graphql-tools/utils@​10.10.2
    • @​graphql-tools/merge@​9.1.4

10.0.27

Patch Changes

  • Updated dependencies [fbb58b5]:
    • @​graphql-tools/utils@​10.10.1
    • @​graphql-tools/merge@​9.1.3
Commits

Updates graphql-yoga from 5.16.0 to 5.17.0

Changelog

Sourced from graphql-yoga's changelog.

5.17.0

Minor Changes

  • #4288 66c370c Thanks @​EmrysMyrddin! - Add experimental support for coordinate error attribute proposal.

    The coordinate attribute indicates the coordinate in the schema of the resolver which experienced the errors. It allows for an easier error source identification than with the path which can be difficult to walk, or even lead to unsolvable ambiguities when using Union or Interface types.

    Usage

    Since this is experimental, it has to be explicitly enabled by adding the appropriate plugin to the Yoga instance:

    import { createYoga, useErrorCoordinate } from 'graphql-yoga'
    import { schema } from './schema'
    export const yoga = createYoga({
    schema,
    plugins: [useErrorCoordinate()]
    })

    Once enabled, located errors will gain the coordinate attribute:

    const myPlugin = {
      onExecutionResult({ result }) {
        if (result.errors) {
          for (const error of result.errors) {
            console.log('Error at', error.coordinate, ':', error.message)
          }
        }
      }
    }

    Security concerns

    Adding a schema coordinate to errors exposes information about the schema, which can be an attack vector if you rely on the fact your schema is private and secret.

    This is why the coordinate attribute is not serialized by default, and will not be exposed to clients.

... (truncated)

Commits
  • e1079f6 chore(release): update monorepo packages versions (#4300)
  • 66c370c feat(graphql-yoga): add support for experimental error coordinate (#4288)
  • 0517886 chore(deps): update dependency globby to v16 (#4289)
  • 8d7e5f0 chore(release): update monorepo packages versions (#4268)
  • b8d2f70 fix(deps): update envelop (major) (#4278)
  • ba38629 fix: handleError sets unexpected flag correctly in the error extensions (...
  • 654365a chore(release): update monorepo packages versions (#4204)
  • e1f52b6 chore(deps): update typescript-eslint monorepo to v8.46.3 (#4264)
  • 6f83cea fix(server): bump whatwg-node to fix Bun.serve compatibility (#4263)
  • 9a40ab0 fix(deps): update nextjs monorepo to v16 (major) (#4239)
  • Additional commits viewable in compare view

Updates prettier from 3.6.2 to 3.7.3

Release notes

Sourced from prettier's releases.

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.3

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

3.7.2

diff

JavaScript: Fix string print when switching quotes (#18351 by @​fisker)

// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")
// Prettier 3.7.1
console.log('A descriptor\'s .kind must be "method" or "field".');
// Prettier 3.7.2
console.log('A descriptor\'s .kind must be "method" or "field".');

JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @​kovsu)

// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
// Prettier 3.7.1
const html = /* HTML */ &lt;div class=${styles.banner}&gt;&lt;/div&gt;;
// Prettier 3.7.2
const html = /* HTML */ &lt;div class=&quot;${styles.banner}&quot;&gt;&lt;/div&gt;;

TypeScript: Fix comment in empty type literal (#18364 by @​fisker)

// Input
export type XXX = {
  // tbd
};
// Prettier 3.7.1
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates wrangler from 4.45.3 to 4.51.0

Release notes

Sourced from wrangler's releases.

[email protected]

Minor Changes

  • #11345 d524e55 Thanks @​penalosa! - Enable experimental support for autoconfig-powered Astro projects

  • #11228 43903a3 Thanks @​petebacondarwin! - Support CLOUDFLARE_ENV environment variable for selecting the active environment

    This change enables users to select the environment for commands such as CLOUDFLARE_ENV=prod wrangler versions upload. The --env command line argument takes precedence.

    The CLOUDFLARE_ENV environment variable is mostly used with the @cloudflare/vite-plugin to select the environment for building the Worker to be deployed. This build also generates a "redirected deploy config" that is flattened to only contain the active environment. To avoid accidentally deploying a version that is built for one environment to a different environment, there is an additional check to ensure that if the user specifies an environment in Wrangler it matches the original selected environment from the build.

Patch Changes

[email protected]

Minor Changes

  • #11219 524a6e5 Thanks @​Ltadrian! - Implement Hyperdrive binding TLS miniflare proxy. This will allow for wrangler dev hyperdrive bindings to connect to external databases that require TLS.

  • #11233 c922a81 Thanks @​emily-shen! - Add containers.unsafe to allow internal users to use additional container features

Patch Changes

[email protected]

Patch Changes

... (truncated)

Commits
  • f87b057 Version Packages (#11374)
  • 1133c4d chore(deps): bump the workerd-and-workers-types group with 2 updates (#11396)
  • 43903a3 Support CLOUDFLARE_ENV environment variable for selecting the active enviro...
  • 235142e Improve stability of wrangler dev related tests (#11182)
  • 9365b02 test: make the startWorker e2e test more resilient to flakes (#11347)
  • aa4a5f1 Move findWranglerConfig tests to workers-utils (#11349)
  • 4d61fae modernize kv-asset-handler so that we can test is in Node 22+ (#11348)
  • 69f4dc3 chore(deps): bump the workerd-and-workers-types group with 2 updates (#11376)
  • e496280 Rate limit r2 bulk put (#11367)
  • 86eab8e Version Packages (#11356)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@graphql-tools/merge](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/merge) | `9.1.2` | `9.1.6` |
| [@graphql-tools/schema](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema) | `10.0.26` | `10.0.30` |
| [graphql-yoga](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/graphql-yoga) | `5.16.0` | `5.17.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.3` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.45.3` | `4.51.0` |


Updates `@graphql-tools/merge` from 9.1.2 to 9.1.6
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/merge/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/[email protected]/packages/merge)

Updates `@graphql-tools/schema` from 10.0.26 to 10.0.30
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/schema/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/[email protected]/packages/schema)

Updates `graphql-yoga` from 5.16.0 to 5.17.0
- [Release notes](https://github.com/graphql-hive/graphql-yoga/releases)
- [Changelog](https://github.com/graphql-hive/graphql-yoga/blob/main/packages/graphql-yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/graphql-yoga/commits/[email protected]/packages/graphql-yoga)

Updates `prettier` from 3.6.2 to 3.7.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.7.3)

Updates `wrangler` from 4.45.3 to 4.51.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/[email protected]/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@graphql-tools/merge"
  dependency-version: 9.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@graphql-tools/schema"
  dependency-version: 10.0.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: graphql-yoga
  dependency-version: 5.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-version: 3.7.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: wrangler
  dependency-version: 4.51.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 1, 2025 00:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@github-actions
Copy link
Contributor

github-actions bot commented Dec 1, 2025

👋 Thanks for opening a pull request!

If you are new, please check out the trimmed down summary of our deployment process below:

  1. 👀 Observe the CI jobs and tests to ensure they are passing

  2. ✔️ Obtain an approval/review on this pull request

  3. 🚀 Deploy your pull request to the development environment with .deploy to development

  4. 🚀 Deploy your pull request to the production environment with .deploy

    If anything goes wrong, rollback with .deploy main

  5. 🎉 Merge!

Need help? Type .help as a comment or visit the usage guide for more details

Please note, if you have a more complex change, it is advised to claim a deployment lock with .lock <environment> --reason <reason> to prevent other deployments from happening while you are working on your change.

Once your PR has been merged, you can remove the lock with .unlock <environment>.

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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant