Skip to content

chore(deps): bump the patch group across 1 directory with 8 updates #129

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the patch group with 8 updates in the / directory:

Package From To
turbo 2.2.3 2.4.4
@changesets/cli 2.27.9 2.28.1
@apollo/gateway 2.9.3 2.10.0
@apollo/server 4.11.0 4.11.3
node-mocks-http 1.16.1 1.16.2
tsup 8.3.0 8.4.0
fastify 5.2.1 5.2.2
graphql-yoga 5.9.0 5.13.2

Updates turbo from 2.2.3 to 2.4.4

Release notes

Sourced from turbo's releases.

Turborepo v2.4.4

What's Changed

Docs

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.4.3...v2.4.4

Turborepo v2.4.3

What's Changed

Docs

create-turbo

@​turbo/codemod

... (truncated)

Commits

Updates @changesets/cli from 2.27.9 to 2.28.1

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.28.1

Patch Changes

  • Updated dependencies [b9df596]:
    • @​changesets/config@​3.1.1
    • @​changesets/apply-release-plan@​7.0.10
    • @​changesets/get-release-plan@​4.0.8

@​changesets/cli@​2.28.0

Minor Changes

Patch Changes

  • Updated dependencies [84a4a1b, 84a4a1b]:
    • @​changesets/types@​6.1.0
    • @​changesets/config@​3.1.0
    • @​changesets/write@​0.4.0
    • @​changesets/apply-release-plan@​7.0.9
    • @​changesets/assemble-release-plan@​6.0.6
    • @​changesets/changelog-git@​0.2.1
    • @​changesets/get-dependents-graph@​2.1.3
    • @​changesets/get-release-plan@​4.0.7
    • @​changesets/pre@​2.0.2
    • @​changesets/read@​0.6.3
    • @​changesets/should-skip-package@​0.1.2

@​changesets/cli@​2.27.12

Patch Changes

@​changesets/cli@​2.27.11

Patch Changes

  • Updated dependencies [f0270f6]:
    • @​changesets/config@​3.0.5
    • @​changesets/apply-release-plan@​7.0.7
    • @​changesets/get-release-plan@​4.0.6

@​changesets/cli@​2.27.10

Patch Changes

... (truncated)

Commits

Updates @apollo/gateway from 2.9.3 to 2.10.0

Release notes

Sourced from @​apollo/gateway's releases.

@​apollo/gateway@​2.10.0

Patch Changes

@​apollo/gateway@​2.10.0-alpha.4

Minor Changes

  • Add request parameter to didEncounterError method (#3199)

Patch Changes

  • Updated dependencies []:
    • @​apollo/composition@​2.10.0-alpha.4
    • @​apollo/federation-internals@​2.10.0-alpha.4
    • @​apollo/query-planner@​2.10.0-alpha.4

@​apollo/gateway@​2.10.0-alpha.3

Patch Changes

@​apollo/gateway@​2.10.0-alpha.2

CHANGELOG for @apollo/gateway

2.9.1

Patch Changes

2.9.0

Patch Changes

  • Avoid type explosion for inline fragments where the type condition is an interface that implements the parent type. (#3122)

  • Reduce memory overhead during satisfiability checking when there are many options. (#3109)

... (truncated)

Changelog

Sourced from @​apollo/gateway's changelog.

2.10.0

Patch Changes

Commits

Updates @apollo/server from 4.11.0 to 4.11.3

Release notes

Sourced from @​apollo/server's releases.

@​apollo/server-integration-testsuite@​4.11.3

Patch Changes

@​apollo/server@​4.11.3

Patch Changes

@​apollo/server-integration-testsuite@​4.11.2

Patch Changes

@​apollo/server@​4.11.2

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

@​apollo/server-integration-testsuite@​4.11.1

Patch Changes

  • #7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

    The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call startStandaloneServer with a context function that calls Express-specific methods such as res.cookie() or res.clearCookies() on the response object, which is a violation of the TypeScript types provided by startStandaloneServer (which only promise that the response object is a core Node.js http.ServerResponse rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafe as typecasts in TypeScript.

    However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own express dependency to v4.21.1 or newer.

  • Updated dependencies [bb81b2c]:

    • @​apollo/server@​4.11.1

@​apollo/server@​4.11.1

Patch Changes

  • #7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

... (truncated)

Changelog

Sourced from @​apollo/server's changelog.

4.11.3

Patch Changes

4.11.2

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

4.11.1

Patch Changes

  • #7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

    The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call startStandaloneServer with a context function that calls Express-specific methods such as res.cookie() or res.clearCookies() on the response object, which is a violation of the TypeScript types provided by startStandaloneServer (which only promise that the response object is a core Node.js http.ServerResponse rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafe as typecasts in TypeScript.

    However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own express dependency to v4.21.1 or newer.

Commits

Updates node-mocks-http from 1.16.1 to 1.16.2

Changelog

Sourced from node-mocks-http's changelog.

v 1.16.2

  • Fix: writeHead() sets headersSent [Issue #313]313.
Commits

Updates tsup from 8.3.0 to 8.4.0

Release notes

Sourced from tsup's releases.

v8.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v8.3.6

   🐞 Bug Fixes

    View changes on GitHub

v8.3.5

   🐞 Bug Fixes

    View changes on GitHub

v8.3.4

No significant changes

    View changes on GitHub

v8.3.3

No significant changes

    View changes on GitHub

v8.3.1

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Commits

Updates fastify from 5.2.1 to 5.2.2

Release notes

Sourced from fastify's releases.

v5.2.2

What's Changed

... (truncated)

Commits

Updates graphql-yoga from 5.9.0 to 5.13.2

Changelog

Sourced from graphql-yoga's changelog.

5.13.2

Patch Changes

5.13.1

Patch Changes

5.13.0

Minor Changes

  • #3793 63b78d5 Thanks @​EmrysMyrddin! - Add new Instrumentation API

    Introduction of a new API allowing to instrument the graphql pipeline.

    This new API differs from already existing Hooks by not having access to input/output of phases. The goal of Instrumentation is to run allow running code before, after or around the whole process of a phase, including plugins hooks executions.

    The main use case of this new API is observability (monitoring, tracing, etc...).

... (truncated)

Commits
  • 1aa989c chore(release): update monorepo packages versions (#3877)
  • 9311842 fix(server): Add request to the operation instrumentation's payload (#3874)
  • abe91bd feat(graphql-yoga): Re-Export AsyncIterableIteratorOrValue util type (#3876)
  • 9d52756 fix(deps): update all non-major dependencies (#3872)
  • 95f8d9e chore(release): update monorepo packages versions (#3867)
  • af14684 fix(deps): update envelop (#3866)
  • dee7995 Rename instruments to instrumentation (#3865)
  • 25a773c fix(deps): update envelop (#3863)
  • cb8d8dc fix(deps): update envelop (#3862)
  • ef8959f fix(deps): update dependency @​hapi/hapi to v21.4.0 (#3857)
  • Additional commits viewable in

Bumps the patch group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [turbo](https://github.com/vercel/turborepo) | `2.2.3` | `2.4.4` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.9` | `2.28.1` |
| [@apollo/gateway](https://github.com/apollographql/federation/tree/HEAD/gateway-js) | `2.9.3` | `2.10.0` |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `4.11.0` | `4.11.3` |
| [node-mocks-http](https://github.com/eugef/node-mocks-http) | `1.16.1` | `1.16.2` |
| [tsup](https://github.com/egoist/tsup) | `8.3.0` | `8.4.0` |
| [fastify](https://github.com/fastify/fastify) | `5.2.1` | `5.2.2` |
| [graphql-yoga](https://github.com/dotansimha/graphql-yoga/tree/HEAD/packages/graphql-yoga) | `5.9.0` | `5.13.2` |



Updates `turbo` from 2.2.3 to 2.4.4
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.2.3...v2.4.4)

Updates `@changesets/cli` from 2.27.9 to 2.28.1
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@apollo/gateway` from 2.9.3 to 2.10.0
- [Release notes](https://github.com/apollographql/federation/releases)
- [Changelog](https://github.com/apollographql/federation/blob/main/gateway-js/CHANGELOG.md)
- [Commits](https://github.com/apollographql/federation/commits/@apollo/[email protected]/gateway-js)

Updates `@apollo/server` from 4.11.0 to 4.11.3
- [Release notes](https://github.com/apollographql/apollo-server/releases)
- [Changelog](https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md)
- [Commits](https://github.com/apollographql/apollo-server/commits/@apollo/[email protected]/packages/server)

Updates `node-mocks-http` from 1.16.1 to 1.16.2
- [Release notes](https://github.com/eugef/node-mocks-http/releases)
- [Changelog](https://github.com/eugef/node-mocks-http/blob/master/HISTORY.md)
- [Commits](eugef/node-mocks-http@v1.16.1...v1.16.2)

Updates `tsup` from 8.3.0 to 8.4.0
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.3.0...v8.4.0)

Updates `fastify` from 5.2.1 to 5.2.2
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.2.1...v5.2.2)

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

---
updated-dependencies:
- dependency-name: turbo
  dependency-version: 2.4.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@changesets/cli"
  dependency-version: 2.28.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@apollo/gateway"
  dependency-version: 2.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: "@apollo/server"
  dependency-version: 4.11.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: node-mocks-http
  dependency-version: 1.16.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tsup
  dependency-version: 8.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: fastify
  dependency-version: 5.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: graphql-yoga
  dependency-version: 5.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch
...

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 Apr 1, 2025
Copy link

changeset-bot bot commented Apr 1, 2025

⚠️ No Changeset found

Latest commit: b71b21e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 8, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 8, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/patch-ffa5be7529 branch April 8, 2025 00:04
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.

0 participants