Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2025

Bumps the all-minor-patch group with 16 updates in the / directory:

Package From To
typescript-eslint 8.46.4 8.47.0
vite 7.2.2 7.2.4
pkgroll 2.20.1 2.21.1
@graphql-tools/graphql-file-loader 8.1.6 8.1.7
@tsconfig/node18 18.2.5 18.2.6
rimraf 6.1.0 6.1.2
sucrase 3.35.0 3.35.1
file-type 21.1.0 21.1.1
@graphql-hive/core 0.13.2 0.15.0
@graphql-hive/yoga 0.42.4 0.43.0
@types/react 19.2.4 19.2.6
@aws-sdk/client-sts 3.931.0 3.936.0
@types/dockerode 3.3.45 3.3.47
chartjs-plugin-trendline 3.1.1 3.2.0
@cloudflare/workers-types 4.20251113.0 4.20251121.0
wrangler 4.48.0 4.50.0

Updates typescript-eslint from 8.46.4 to 8.47.0

Release notes

Sourced from typescript-eslint's releases.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.47.0 (2025-11-17)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates vite from 7.2.2 to 7.2.4

Release notes

Sourced from vite's releases.

v7.2.4

Please refer to CHANGELOG.md for details.

v7.2.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.2.4 (2025-11-20)

Bug Fixes

  • revert "perf(deps): replace debug with obug (#21107)" (2d66b7b)

7.2.3 (2025-11-20)

Bug Fixes

  • allow multiple bindCLIShortcuts calls with shortcut merging (#21103) (5909efd)
  • deps: update all non-major dependencies (#21096) (6a34ac3)
  • deps: update all non-major dependencies (#21128) (4f8171e)

Performance Improvements

Miscellaneous Chores

  • deps: update dependency @​rollup/plugin-commonjs to v29 (#21099) (02ceaec)
  • deps: update rolldown-related dependencies (#21095) (39a0a15)
  • deps: update rolldown-related dependencies (#21127) (5029720)
Commits

Updates pkgroll from 2.20.1 to 2.21.1

Release notes

Sourced from pkgroll's releases.

v2.21.1

2.21.1 (2025-11-20)

Bug Fixes

  • resolver: prefer .js over .ts in node_modules (46d4202)

v2.21.0

2.21.0 (2025-11-20)

Bug Fixes

  • deps: update all non-major dependencies (#25) (f18fe0f)

Features

  • enhance dependency externalization with improved warnings (f7b3876), closes #32 #49
Commits
  • 46d4202 fix(resolver): prefer .js over .ts in node_modules
  • a26950c chore(deps): lock file maintenance (#26)
  • d6eba4e test: upgrade manten
  • d4ef552 test: fix correct node version usage
  • 15b0981 chore(deps): update node.js to v24
  • d728ea1 chore(deps): update dependency cleye to v2 (#28)
  • f7b3876 feat: enhance dependency externalization with improved warnings
  • 76eb7de refactor: convert external dependencies logic to rollup plugin
  • f18fe0f fix(deps): update all non-major dependencies (#25)
  • 0380d64 test: add devDependencies to fixtures for accurate bundling test setup
  • Additional commits viewable in compare view

Updates @graphql-tools/graphql-file-loader from 8.1.6 to 8.1.7

Changelog

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

8.1.7

Patch Changes

  • Updated dependencies [8a2a507]:
    • @​graphql-tools/import@​7.1.7
Commits

Updates @tsconfig/node18 from 18.2.5 to 18.2.6

Commits

Updates rimraf from 6.1.0 to 6.1.2

Commits

Updates sucrase from 3.35.0 to 3.35.1

Changelog

Sourced from sucrase's changelog.

3.35.1 (2025-11-19)

  • Switch from glob to tinyglobby to reduce transitive dependencies. (#846) (Ben McCann)
Commits

Updates file-type from 21.1.0 to 21.1.1

Release notes

Sourced from file-type's releases.

v21.1.1

  • Fix handling of partial Gunzip file (#783) 710e053

sindresorhus/file-type@v21.1.0...v21.1.1

Commits

Updates @graphql-hive/core from 0.13.2 to 0.15.0

Release notes

Sourced from @​graphql-hive/core's releases.

@​graphql-hive/core@​0.15.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

@​graphql-hive/core@​0.14.0

Minor Changes

  • #7264 582bc0e Thanks @​n1ru4l! - Introduce debug log level. HTTP retry log pollute the error log. The retries are now logged to the debug level. In order to see debug logs set the debug option to true.

... (truncated)

Changelog

Sourced from @​graphql-hive/core's changelog.

0.15.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

0.14.0

Minor Changes

  • #7264 582bc0e Thanks @​n1ru4l! - Introduce debug log level. HTTP retry log pollute the error log. The retries are now logged to the debug level. In order to see debug logs set the debug option to true.

... (truncated)

Commits
  • c222824 Upcoming Release Changes (#7285)
  • 2cc443c feat(js-sdk): circuit breaker for usage reporting (attempt 2) (#7280)
  • c778450 Upcoming Release Changes (#7263)
  • e2169cf Revert "feat(js-sdk): circuit breaker for usage reporting (#7259)" (#7278)
  • 23f0fb9 chore(deps): update vitest and vite to latest, fix node version constraints, ...
  • 582bc0e feat(hive-sdk): reduce http retry noise by introducing debug log level (#7264)
  • d1320b8 feat(js-sdk): circuit breaker for usage reporting (#7259)
  • See full diff in compare view

Updates @graphql-hive/yoga from 0.42.4 to 0.43.0

Release notes

Sourced from @​graphql-hive/yoga's releases.

@​graphql-hive/yoga@​0.43.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

Patch Changes

  • Updated dependencies [2cc443c]:
    • @​graphql-hive/core@​0.15.0

@​graphql-hive/yoga@​0.42.5

Patch Changes

  • Updated dependencies

... (truncated)

Changelog

Sourced from @​graphql-hive/yoga's changelog.

0.43.0

Minor Changes

  • #7280 2cc443c Thanks @​n1ru4l! - Support circuit breaking for usage reporting.

    Circuit breaking is a fault-tolerance pattern that prevents a system from repeatedly calling a failing service. When errors or timeouts exceed a set threshold, the circuit “opens,” blocking further requests until the service recovers.

    This ensures that during a network issue or outage, the service using the Hive SDK remains healthy and is not overwhelmed by failed usage reports or repeated retries.

    import { createClient } from '@graphql-hive/core'
    const client = createClient({
    agent: {
    circuitBreaker: {
    /**
    * Count of requests before starting evaluating.
    * Default: 5
    /
    volumeThreshold: 5,
    /*
    * Percentage of requests failing before the circuit breaker kicks in.
    * Default: 50
    /
    errorThresholdPercentage: 1,
    /*
    * After what time the circuit breaker is attempting to retry sending requests in milliseconds
    * Default: 30_000
    */
    resetTimeout: 10_000
    }
    }
    })

Patch Changes

  • Updated dependencies [2cc443c]:
    • @​graphql-hive/core@​0.15.0

0.42.5

Patch Changes

... (truncated)

Commits

Updates @types/react from 19.2.4 to 19.2.6

Commits

Updates @aws-sdk/client-sts from 3.931.0 to 3.936.0

Release notes

Sourced from @​aws-sdk/client-sts's releases.

v3.936.0

3.936.0(2025-11-19)

New Features
  • credential-provider-login: add login credential provider (#7512) (2c08b1e0)

For list of updated packages, view updated-packages.md in assets-3.936.0.zip

v3.935.0

3.935.0(2025-11-19)

Chores
New Features
  • clients: update client endpoints as of 2025-11-19 (d7b51c49)
  • client-sts: IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. (f9fed01c)
  • client-dynamodb: Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. (622ef038)
  • client-medialive: MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel. (1667189e)
  • client-bcm-pricing-calculator: Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario. (e0dc140c)
  • client-backup: Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups. (498dcf3d)
  • client-connectcampaignsv2: This release added support for ring timer configuration for campaign calls. (1155c3c4)
  • client-ecs: Added support for Amazon ECS Managed Instances infrastructure optimization configuration. (2ee0c3f3)
  • client-ecr: Add support for ECR archival storage class and Inspector org policy for scanning (ed5e232d)
  • client-sagemaker: Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins (ad2587c7)
  • client-apigatewayv2: Support for API Gateway portals and portal products. (fc064256)
  • client-billingconductor: This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor. (4e32b65d)
  • client-cloudwatch-logs: Adding support for ocsf version 1.5, add optional parameter MappingVersion (2a15be86)
  • client-api-gateway: API Gateway now supports response streaming and new security policies for REST APIs and custom domain names. (e1d2d6b1)
  • client-cost-optimization-hub: Release ListEfficiencyMetrics API (2b031582)
  • client-bedrock-runtime: This release includes support for Search Results. (40ffa77a)
  • client-cloudtrail: AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations. (f8570665)
  • client-health: Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter. (c754b242)
  • client-networkflowmonitor: Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource (66729787)
  • client-invoicing: Add support for adding Billing transfers in Invoice configuration (2e493490)
  • client-s3: Adds support for blocking SSE-C writes to general purpose buckets. (cee2e72f)
  • client-network-firewall: Partner Managed Rulegroup feature support (2e8472d6)
  • client-emr: Add CloudWatch Logs integration for Spark driver, executor and step logs (7e6e1684)
  • client-fsx: Adding File Server Resource Manager configuration to FSx Windows (2e3c0c96)
  • client-guardduty: Add support for scanning and viewing scan results for backup resource types (231cf06b)
  • client-sfn: Adds support to TestState for mocked results and exceptions, along with additional inspection data. (1b18be75)
  • client-partnercentral-channel: Initial GA launch of Partner Central Channel (b77d1682)
  • client-secrets-manager: Adds support to create, update, retrieve, rotate, and delete managed external secrets. (c13b6f97)
  • client-iam: Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature. (5774faa2)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-sts's changelog.

3.936.0 (2025-11-19)

Note: Version bump only for package @​aws-sdk/client-sts

3.935.0 (2025-11-19)

Features

  • client-sts: IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens. (f9fed01)

3.934.0 (2025-11-18)

Note: Version bump only for package @​aws-sdk/client-sts

3.933.0 (2025-11-17)

Note: Version bump only for package @​aws-sdk/client-sts

3.932.0 (2025-11-14)

Note: Version bump only for package @​aws-sdk/client-sts

Commits

Updates @types/dockerode from 3.3.45 to 3.3.47

Commits

Updates chartjs-plugin-trendline from 3.1.1 to 3.2.0

Release notes

Sourced from chartjs-plugin-trendline's releases.

v3.2.0

What's Changed

Full Changelog: Makanz/chartjs-plugin-trendline@v3.1.1...v3.2.0

Commits
  • 17a60e7 Merge pull request #125 from Makanz/fix/module-import
  • 675c5a4 Update README.md with ESM usage examples and migration guide link
  • d5d5a92 Fix ES module imports for modern bundlers (SvelteKit/Vite compatibility)
  • See full diff in compare view

Updates @cloudflare/workers-types from 4.20251113.0 to 4.20251121.0

Commits

Updates wrangler from 4.48.0 to 4.50.0

Release notes

Sourced from wrangler's releases.

[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

[email protected]

Minor Changes

  • #10703 c5c4ee5 Thanks @​danlapid! - Add support for streaming tail consumers in local dev. This is an experimental new feature that allows you to register a tailStream() handler (compared to the existing tail() handler), which will receive streamed tail events from your Worker (compared to the tail() handler, which only receives batched events after your Worker has finished processing).

  • #11251 7035804 Thanks @​penalosa! - When the WRANGLER_HIDE_BANNER environment variable is provided, Wrangler will no longer display a version banner. This applies to all commands.

    For instance, previously running wrangler docs would give the following output:

    > wrangler docs
     ⛅️ wrangler 4.47.0
    ───────────────────
    Opening a link in your default browser: https://developers.cloudflare.com/workers/wrangler/commands/
    

    With WRANGLER_HIDE_BANNER, this is now:

... (truncated)

Commits

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 all-minor-patch group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.4` | `8.47.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.2` | `7.2.4` |
| [pkgroll](https://github.com/privatenumber/pkgroll) | `2.20.1` | `2.21.1` |
| [@graphql-tools/graphql-file-loader](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/loaders/graphql-file) | `8.1.6` | `8.1.7` |
| [@tsconfig/node18](https://github.com/tsconfig/bases/tree/HEAD/bases) | `18.2.5` | `18.2.6` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.1.0` | `6.1.2` |
| [sucrase](https://github.com/alangpierce/sucrase) | `3.35.0` | `3.35.1` |
| [file-type](https://github.com/sindresorhus/file-type) | `21.1.0` | `21.1.1` |
| [@graphql-hive/core](https://github.com/graphql-hive/platform/tree/HEAD/packages/libraries/core) | `0.13.2` | `0.15.0` |
| [@graphql-hive/yoga](https://github.com/graphql-hive/platform/tree/HEAD/packages/libraries/yoga) | `0.42.4` | `0.43.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.4` | `19.2.6` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.931.0` | `3.936.0` |
| [@types/dockerode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dockerode) | `3.3.45` | `3.3.47` |
| [chartjs-plugin-trendline](https://github.com/Makanz/chartjs-plugin-trendline) | `3.1.1` | `3.2.0` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20251113.0` | `4.20251121.0` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.48.0` | `4.50.0` |



Updates `typescript-eslint` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-eslint)

Updates `vite` from 7.2.2 to 7.2.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.4/packages/vite)

Updates `pkgroll` from 2.20.1 to 2.21.1
- [Release notes](https://github.com/privatenumber/pkgroll/releases)
- [Commits](privatenumber/pkgroll@v2.20.1...v2.21.1)

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

Updates `@tsconfig/node18` from 18.2.5 to 18.2.6
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `rimraf` from 6.1.0 to 6.1.2
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.1.0...v6.1.2)

Updates `sucrase` from 3.35.0 to 3.35.1
- [Changelog](https://github.com/alangpierce/sucrase/blob/main/CHANGELOG.md)
- [Commits](https://github.com/alangpierce/sucrase/commits)

Updates `file-type` from 21.1.0 to 21.1.1
- [Release notes](https://github.com/sindresorhus/file-type/releases)
- [Commits](sindresorhus/file-type@v21.1.0...v21.1.1)

Updates `@graphql-hive/core` from 0.13.2 to 0.15.0
- [Release notes](https://github.com/graphql-hive/platform/releases)
- [Changelog](https://github.com/graphql-hive/console/blob/main/packages/libraries/core/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/platform/commits/@graphql-hive/[email protected]/packages/libraries/core)

Updates `@graphql-hive/yoga` from 0.42.4 to 0.43.0
- [Release notes](https://github.com/graphql-hive/platform/releases)
- [Changelog](https://github.com/graphql-hive/console/blob/main/packages/libraries/yoga/CHANGELOG.md)
- [Commits](https://github.com/graphql-hive/platform/commits/@graphql-hive/[email protected]/packages/libraries/yoga)

Updates `@types/react` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@aws-sdk/client-sts` from 3.931.0 to 3.936.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sts/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.936.0/clients/client-sts)

Updates `@types/dockerode` from 3.3.45 to 3.3.47
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dockerode)

Updates `chartjs-plugin-trendline` from 3.1.1 to 3.2.0
- [Release notes](https://github.com/Makanz/chartjs-plugin-trendline/releases)
- [Changelog](https://github.com/Makanz/chartjs-plugin-trendline/blob/main/changelog.md)
- [Commits](Makanz/chartjs-plugin-trendline@v3.1.1...v3.2.0)

Updates `@cloudflare/workers-types` from 4.20251113.0 to 4.20251121.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/Dockerfile.release)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `wrangler` from 4.48.0 to 4.50.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: typescript-eslint
  dependency-version: 8.47.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: vite
  dependency-version: 7.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: pkgroll
  dependency-version: 2.21.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@graphql-tools/graphql-file-loader"
  dependency-version: 8.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@tsconfig/node18"
  dependency-version: 18.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: rimraf
  dependency-version: 6.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: sucrase
  dependency-version: 3.35.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: file-type
  dependency-version: 21.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@graphql-hive/core"
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@graphql-hive/yoga"
  dependency-version: 0.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.936.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@types/dockerode"
  dependency-version: 3.3.47
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
- dependency-name: chartjs-plugin-trendline
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20251121.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: wrangler
  dependency-version: 4.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies javascript Pull requests that update javascript code labels Nov 21, 2025
@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (alpha)

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

Package Version Info
@graphql-hive/gateway 2.1.18-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d npm ↗︎ unpkg ↗︎
@graphql-hive/nestjs 2.0.23-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d npm ↗︎ unpkg ↗︎
@graphql-hive/plugin-opentelemetry 1.2.1-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-prometheus 2.1.4-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d npm ↗︎ unpkg ↗︎
@graphql-hive/gateway-runtime 2.3.6-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d npm ↗︎ unpkg ↗︎
@graphql-hive/gateway-testing 2.0.6-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d npm ↗︎ unpkg ↗︎

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Binary for Linux-ARM64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Binary for Linux-X64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Binary for macOS-ARM64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Bun Docker Image)

The latest changes of this PR are available as image on GitHub Container Registry (based on the declared changesets):

ghcr.io/graphql-hive/gateway:2.1.18-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d-bun

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Node Docker Image)

The latest changes of this PR are available as image on GitHub Container Registry (based on the declared changesets):

ghcr.io/graphql-hive/gateway:2.1.18-alpha-8c330b3f61e8a326c501f954ef2be8ff8a4f1d7d

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Binary for Windows-X64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (Binary for macOS-X64)

The latest changes of this PR are available for download (based on the declared changesets).

Download

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 24, 2025

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

@dependabot dependabot bot closed this Nov 24, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-minor-patch-5b8a617fbb branch November 24, 2025 15:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant