Skip to content

chore(deps): bump the test-versions group across 1 directory with 41 updates#8992

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/packages/dd-trace/test/plugins/versions/test-versions-61cfb08bee
Closed

chore(deps): bump the test-versions group across 1 directory with 41 updates#8992
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/packages/dd-trace/test/plugins/versions/test-versions-61cfb08bee

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the test-versions group with 41 updates in the /packages/dd-trace/test/plugins/versions directory:

Package From To
@apollo/gateway 2.14.0 2.14.1
@apollo/subgraph 2.14.0 2.14.1
@aws/durable-execution-sdk-js 1.1.2 1.1.7
@babel/core 7.29.0 7.29.7
@babel/preset-typescript 7.28.5 7.29.7
@confluentinc/kafka-javascript 1.9.0 1.9.1
@datadog/openfeature-node-server 1.2.1 2.0.0
@elastic/elasticsearch 9.4.0 9.4.2
@elastic/transport 9.3.5 9.3.7
@electron/packager 20.0.0 20.0.1
@google-cloud/pubsub 5.3.0 5.3.1
@grpc/grpc-js 1.14.3 1.14.4
@hono/node-server 2.0.3 2.0.5
@koa/router 15.5.0 15.6.0
@openfeature/core 1.10.0 1.11.0
@openfeature/server-sdk 1.21.0 1.22.0
@types/node 25.9.0 25.9.3
aerospike 6.7.0 6.7.1
axios 1.16.1 1.18.0
body-parser 2.2.2 2.3.0
bullmq 5.76.10 5.78.1
cypress 15.16.0 15.17.0
ejs 5.0.2 6.0.1
electron 42.1.0 42.4.0
esbuild 0.28.0 0.28.1
graphql 16.14.0 17.0.0
graphql-yoga 5.21.0 5.21.2
hono 4.12.19 4.12.25
koa 3.2.0 3.2.1
mariadb 3.4.5 3.5.3
multer 2.1.1 2.2.0
next 16.2.6 16.2.9
npm 11.14.1 11.17.0
oracledb 6.10.0 7.0.0
pnpm 11.1.3 11.7.0
protobufjs 8.4.0 8.6.3
react 19.2.6 19.2.7
react-dom 19.2.6 19.2.7
stripe 22.1.1 22.2.1
undici 8.3.0 8.5.0
ws 8.20.1 8.21.0

Updates @apollo/gateway from 2.14.0 to 2.14.1

Release notes

Sourced from @​apollo/gateway's releases.

@​apollo/gateway@​2.14.1

Patch Changes

Changelog

Sourced from @​apollo/gateway's changelog.

2.14.1

Patch Changes

Commits

Updates @apollo/subgraph from 2.14.0 to 2.14.1

Release notes

Sourced from @​apollo/subgraph's releases.

@​apollo/subgraph@​2.14.1

Patch Changes

Changelog

Sourced from @​apollo/subgraph's changelog.

2.14.1

Patch Changes

Commits

Updates @aws/durable-execution-sdk-js from 1.1.2 to 1.1.7

Release notes

Sourced from @​aws/durable-execution-sdk-js's releases.

Release runtime-1.1.7

What's Changed

Note: This release will be used by lambda runtime team.

Full Changelog: aws/aws-durable-execution-sdk-js@sdk-1.1.6...runtime-1.1.7

Release sdk-1.1.7

What's Changed

Full Changelog: aws/aws-durable-execution-sdk-js@sdk-1.1.6...sdk-1.1.7

Release sdk-1.1.6

What's Changed

Full Changelog: aws/aws-durable-execution-sdk-js@sdk-1.1.5t5...sdk-1.1.6

Release sdk-1.1.5

What's Changed

Full Changelog: aws/aws-durable-execution-sdk-js@sdk-1.1.4...sdk-1.1.5t5

Release sdk-1.1.4

What's Changed

Full Changelog: aws/aws-durable-execution-sdk-js@sdk-1.1.3...sdk-1.1.4

Release sdk-1.1.3

What's Changed

... (truncated)

Changelog

Sourced from @​aws/durable-execution-sdk-js's changelog.

Changelog

All notable changes to the AWS Durable Execution SDK for JavaScript are documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[2.0.0]

First major release. Upgrade target for users on the 1.x line (last release: 1.1.7). 2.0.0 ships six categories of change:

  1. withRetry — a new helper for retrying a chunk of durable logic (multi-operation blocks containing waitForCallback, invoke, etc.) with a configurable backoff strategy.
  2. Linear retry strategycreateLinearRetryStrategy and the new retryPresets.linear preset for fixed-increment backoff alongside the existing exponential strategies.
  3. Serdes upgradescontext.configureSerdes() for setting default serdes once, createFileSystemSerdes for offloading large payloads to a durable mount (Amazon S3 Files, EFS), and inline previews to keep PII out of GetDurableExecutionHistory and the AWS console.
  4. Cost / scale knob for batch operationsNestingType.FLAT on map and parallel skips the per-iteration CONTEXT operation for up to 2x cost reduction and up to 2x more iterations per execution, trading per-branch observability for throughput.
  5. More precise error types — promise combinators and callbacks throw specific error subclasses (PromiseCombinatorError, CallbackExternalError, CallbackTimeoutError, CallbackSubmitterError). This is the main source of breaking changes for code that branches on error type.
  6. Observability plugins (experimental) — a DurableInstrumentationPlugin interface for emitting custom instrumentation. This API is experimental and may change in a backward-incompatible way in any release.

A number of operational fixes and security updates are also included.

⚠ Upgrade guide (breaking changes)

1. Promise combinator failures now throw PromiseCombinatorError

context.Promise.all, Promise.allSettled, Promise.any, and Promise.race previously rejected with StepError. They now reject with PromiseCombinatorError, which extends DurableOperationError directly — not StepError or ChildContextError.

// v1.x — no longer matches in v2
try {
  await context.Promise.all([...]);
} catch (err) {
</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​aws/durable-execution-sdk-js since your current version.


Updates @babel/core from 7.29.0 to 7.29.7

Release notes

Sourced from @​babel/core's releases.

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6 (2026-05-25)

🐛 Bug Fix

Committers: 3

v7.29.5 (2026-05-05)

🏠 Internal

  • babel-preset-env
    • Update @babel/* dependencies

v7.29.4 (2026-05-05)

🐛 Bug Fix

  • babel-plugin-transform-modules-systemjs
    • #17974 [7.x backport]fix(systemjs): improve module string name support (@​JLHwung)

Committers: 1

v7.29.3 (2026-04-30)

👓 Spec Compliance

🐛 Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • #17931 fix(decorators): replace super within all removed static elements (@​JLHwung)
  • babel-register
  • babel-compat-data, babel-plugin-bugfix-safari-rest-destructuring-rhs-array, babel-preset-env

💅 Polish

  • babel-parser

... (truncated)

Commits

Updates @babel/preset-typescript from 7.28.5 to 7.29.7

Release notes

Sourced from @​babel/preset-typescript's releases.

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6 (2026-05-25)

🐛 Bug Fix

Committers: 3

v7.29.5 (2026-05-05)

🏠 Internal

  • babel-preset-env
    • Update @babel/* dependencies

v7.29.4 (2026-05-05)

🐛 Bug Fix

  • babel-plugin-transform-modules-systemjs
    • #17974 [7.x backport]fix(systemjs): improve module string name support (@​JLHwung)

Committers: 1

v7.29.3 (2026-04-30)

👓 Spec Compliance

🐛 Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • #17931 fix(decorators): replace super within all removed static elements (@​JLHwung)
  • babel-register
  • babel-compat-data, babel-plugin-bugfix-safari-rest-destructuring-rhs-array, babel-preset-env

💅 Polish

  • babel-parser

... (truncated)

Commits

Updates @confluentinc/kafka-javascript from 1.9.0 to 1.9.1

Release notes

Sourced from @​confluentinc/kafka-javascript's releases.

v1.9.1 is a maintenance release. It is supported for all usage.

Enhancements

  1. References librdkafka v2.14.2. Refer to the librdkafka v2.14.2 release notes for more information.

Fixes

  1. Handle anyOf/allOf in JSON transforms (#479)
  2. Preserve custom subjectNameStrategy in serde constructors (#482)
  3. Correct the TypeScript return type of admin.fetchTopicMetadata to Promise<Array<ITopicMetadata>> (#367)
  4. Correct the TypeScript MemberDescription shape returned by admin.describeGroups so assignment/targetAssignment wrap a topicPartitions array and memberAssignment/memberMetadata are nullable (#487)
  5. Correct the TypeScript FetchOffsetsPartition.error type returned by admin.fetchOffsets to LibrdKafkaError | null, matching the runtime which always populates the field. It never returnes undefined. (#489)
  6. Correct broken "types" path so TS consumers get types (#484)
  7. Resolve IHeaders import for installed clients (#492)
  8. Fix error callback passing and object to the logger instead of a string (#483)
  9. Fix security vulnerabilities in dependencies (#478)
  10. Handle missing Protobuf message index bytes in ProtobufDeserializer (#481)

v1.9.1-rc1 is a maintenance release candidate. It is not supported.

Enhancements

  1. References librdkafka v2.14.2-RC3. Refer to the librdkafka v2.14.2-RC3 release notes for more information.

Fixes

  1. Handle anyOf/allOf in JSON transforms (#479)
  2. Preserve custom subjectNameStrategy in serde constructors (#482)
  3. Correct the TypeScript return type of admin.fetchTopicMetadata to Promise<Array<ITopicMetadata>> (#367)
  4. Correct the TypeScript MemberDescription shape returned by admin.describeGroups so assignment/targetAssignment wrap a topicPartitions array and memberAssignment/memberMetadata are nullable (#487)
  5. Correct the TypeScript FetchOffsetsPartition.error type returned by admin.fetchOffsets to LibrdKafkaError | null, matching the runtime which always populates the field. It never returns undefined. (#489)
  6. Correct broken "types" path so TS consumers get types (#484)
  7. Resolve IHeaders import for installed clients (#492)
  8. Fix error callback passing and object to the logger instead of a string (#483)
  9. Fix security vulnerabilities in dependencies (#478)
  10. Handle missing Protobuf message index bytes in ProtobufDeserializer (#481)
Changelog

Sourced from @​confluentinc/kafka-javascript's changelog.

confluent-kafka-javascript 1.9.1

v1.9.1 is a maintenance release. It is supported for all usage.

Enhancements

  1. References librdkafka v2.14.2. Refer to the librdkafka v2.14.2 release notes for more information.

Fixes

  1. Handle anyOf/allOf in JSON transforms (#479)
  2. Preserve custom subjectNameStrategy in serde constructors (#482)
  3. Correct the TypeScript return type of admin.fetchTopicMetadata to Promise<Array<ITopicMetadata>> (#367)
  4. Correct the TypeScript MemberDescription shape returned by admin.describeGroups so assignment/targetAssignment wrap a topicPartitions array and memberAssignment/memberMetadata are nullable (#487)
  5. Correct the TypeScript FetchOffsetsPartition.error type returned by admin.fetchOffsets to LibrdKafkaError | null, matching the runtime which always populates the field. It never returnes undefined. (#489)
  6. Correct broken "types" path so TS consumers get types (#484)
  7. Resolve IHeaders import for installed clients (#492)
  8. Fix error callback passing and object to the logger instead of a string (#483)
  9. Fix security vulnerabilities in dependencies (#478)
  10. Handle missing Protobuf message index bytes in ProtobufDeserializer (#481)
Commits
  • cf4cf8f v1.9.1 (#494)
  • 1c06ed0 v1.9.1-rc1 (#493)
  • eacb098 [fix] pass string as first arg to user logger on error events (#483)
  • 9357d60 NONJAVACLI-4353: bump axios and pin transitive deps for CVE fixes (#478)
  • ce56a23 Resolve IHeaders import for installed clients (#492)
  • 59e3251 fix(package.json): correct broken "types" path (#484)
  • f92eace [Typescript] Fix FetchOffsetsPartition.error type from || undefined to `|...
  • 2e82d00 Fix the typescript return type for admin.describeGroups() per #487. (#488)
  • 685bdb2 Correct the TypeScript return type of admin.fetchTopicMetadata (#486)
  • 6ef5fd2 DGS-24227 Preserve custom subjectNameStrategy in serde constructors (#482)
  • Additional commits viewable in compare view

Updates @datadog/openfeature-node-server from 1.2.1 to 2.0.0

Release notes

Sourced from @​datadog/openfeature-node-server's releases.

@​datadog/openfeature-node-server@​2.0.0

What's Changed

Full Changelog: https://github.com/DataDog/openfeature-js-client/compare/v1.2.1...@​datadog/openfeature-node-server@2.0.0

Changelog

Sourced from @​datadog/openfeature-node-server's changelog.

@​datadog/openfeature-browser@​1.2.2, @​datadog/openfeature-node-server@​2.0.0

Bug Fixes:

  • fix: pin @​datadog/flagging-core to exact version to prevent version skew [BROWSER] [NODE-SERVER]

Internal Changes:

  • chore: switch to lerna independent versioning (#288)
  • chore: pin exact versions for internal dependencies (#283)
  • ci: add npm compatibility smoke test (#282)

Note: This is the first stable release with the serialId feature. v1.2.0 had yarn syntax issues, v1.2.1 had loose dependency issues. node-server is bumped to 2.0.0 to prevent automatic upgrades by older dd-trace versions with unpinned dependencies.

v1.2.0

Internal Changes:

  • feat(node): expose serial ID in flagMetadata for span enrichment (#269) [NODE-SERVER]
  • 👷 ci(deps): Bump dependabot/fetch-metadata (#267)

v1.1.2

Internal Changes:

  • 👷 ci(deps)(deps): Bump actions/setup-node in the github-actions group (#222)
  • 👷 chore(deps)(deps): Bump follow-redirects from 1.15.11 to 1.16.0 (#245)
  • 👷 chore(deps)(deps): Bump tmp from 0.2.3 to 0.2.5 (#228)
  • 👷 chore(deps-dev)(deps-dev): Bump glob from 11.1.0 to 13.0.6 (#216)
  • 👷 chore(deps): Bump axios from 1.13.4 to 1.15.0 (#244)
  • update missed touchpoints on v1.1.1 release
  • fix: replace Map<string, string> constraint with CacheDelegate to avoid MapIterator in declarations (#263) [BROWSER] [NODE-SERVER]
  • Executing automated changes (#252)
  • fix(browser): bump @​datadog/browser-core to ^6.33.0 (#261) [BROWSER] [NODE-SERVER]
  • Executing automated changes (#254) [BROWSER] [NODE-SERVER]
  • Executing automated changes (#253) [NODE-SERVER]
  • chore(browser): move @​types/chrome from dependencies to devDependencies (#250) [BROWSER]
  • fix(node): mark open @​openfeature/server-sdk as non-optional (#248) [NODE-SERVER]
  • Remove nested attributes from setContext example (#234) [BROWSER]
  • chore: Harden npm supply chain with @​lavamoat/allow-scripts (#233)

v1.1.1

*_ Bug Fixes_

  • fix: allow null targeting key for static and rule-only flags (#232)

v1.1.0

Behavior Changes:

... (truncated)

Commits

Updates @elastic/elasticsearch from 9.4.0 to 9.4.2

Release notes

Sourced from @​elastic/elasticsearch's releases.

v9.4.2

Changelog

v9.4.1

Changelog

Commits

Updates @elastic/transport from 9.3.5 to 9.3.7

Release notes

Sourced from @​elastic/transport's releases.

v9.3.7

Fixes

Full Changelog: elastic/elastic-transport-js@v9.3.6...v9.3.7

v9.3.6

Bug fixes

New Contributors

Full Changelog: elastic/elastic-transport-js@v9.3.5...v9.3.6

Commits
  • 65a2585 fix: mark timed-out nodes dead when retryOnTimeout is false (#382)
  • 68389ba chore(deps): pin actions/github-script action to f28e40c (#379)
  • a657bd6 chore(deps): update node.js to 8530f76 (#380)
  • 668d805 ci: add AI backport resolver (gh-aw prompt + issue_comment trigger) (#377)
  • 4fe6d59 ci: point to clients-team-automations instead of devtools (#378)
  • eaca5eb fix: remove non-ASCII characters causing workflow parse failure (#375)
  • ca6bf3f ci: replace thin caller with full AI backport resolver workflow (#374)
  • 5ef792a fix: use correct content-type on empty requests (#372)
  • d619d0d fix: ensure Error.cause propagates (#371)
  • 5f1eab1 fix: prevent ConnectionError with empty message (#370)
  • Additional commits viewable in compare view

Updates @electron/packager from 20.0.0 to 20.0.1

Release notes

Sourced from @​electron/packager's releases.

v20.0.1

20.0.1 (2026-06-04)

Bug Fixes

  • swap extract-zip with @electron-internal/extract-zip (#1917) (0ff6c2a)
Commits

Updates @google-cloud/pubsub from 5.3.0 to 5.3.1

Changelog

Sourced from @​google-cloud/pubsub's changelog.

5.3.1 (2026-05-11)

Bug Fixes

Commits

Updates @grpc/grpc-js from 1.14.3 to 1.14.4

Release notes

Sourced from @​grpc/grpc-js's releases.

@​grpc/grpc-js 1.14.4

Commits
  • a380735 Merge pull request #3052 from murgatroid99/grpc-js_1.14.4
  • 5b8d37b Merge commit from fork
  • 6a97456 Merge commit from fork
  • e5e0b1d grpc-js: Bump version to 1.14.4
  • 5029a26 Make compression error a static string
  • 2fe55fd Fix crashes when receiving malformed compressed data
  • 234f917 Fix server crash when handling invalid requests
  • acef8d4 Merge pull request #3043 from murgatroid99/rbac_types_change_fix_1.14
  • 4f3c58f grpc-js-xds: Update RBAC code to handle Node type change, pin @​types/node
  • See full diff in compare view

Updates @hono/node-server from 2.0.3 to 2.0.5

Release notes

Sourced from @​hono/node-server's releases.

v2.0.5

Security Fix

Fixed a security issue in Serve Static Middleware where prefix-mounted middleware could be bypassed on Windows. This only affects applications running on Windows that use Serve Static Middleware. Affected users are encouraged to upgrade to this version.

See GHSA-frvp-7c67-39w9 for details.

v2.0.4

What's Changed

Full Changelog: honojs/node-server@v2.0.3...v2.0.4

Commits

Updates @koa/router from 15.5.0 to 15.6.0

Release notes

Sourced from @​koa/router's releases.

v15.6.0

  • ci: drop node v20 from ci pipeline b5f9b6c
  • chore: update *.md docs files d586f45
  • chore: add more tests + bump deps 7148fd1
  • fix: hide internal rest param from prefixed middleware 99a6ae6

koajs/router@v15.5.0...v15.6.0

<...

Description has been truncated

…updates

Bumps the test-versions group with 41 updates in the /packages/dd-trace/test/plugins/versions directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/gateway](https://github.com/apollographql/federation/tree/HEAD/gateway-js) | `2.14.0` | `2.14.1` |
| [@apollo/subgraph](https://github.com/apollographql/federation/tree/HEAD/subgraph-js) | `2.14.0` | `2.14.1` |
| [@aws/durable-execution-sdk-js](https://github.com/aws/aws-durable-execution-sdk-js/tree/HEAD/packages/aws-durable-execution-sdk-js) | `1.1.2` | `1.1.7` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.29.0` | `7.29.7` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) | `7.28.5` | `7.29.7` |
| [@confluentinc/kafka-javascript](https://github.com/confluentinc/confluent-kafka-javascript) | `1.9.0` | `1.9.1` |
| [@datadog/openfeature-node-server](https://github.com/DataDog/openfeature-js-client/tree/HEAD/packages/node-server) | `1.2.1` | `2.0.0` |
| [@elastic/elasticsearch](https://github.com/elastic/elasticsearch-js) | `9.4.0` | `9.4.2` |
| [@elastic/transport](https://github.com/elastic/elastic-transport-js) | `9.3.5` | `9.3.7` |
| [@electron/packager](https://github.com/electron/packager) | `20.0.0` | `20.0.1` |
| [@google-cloud/pubsub](https://github.com/googleapis/google-cloud-node/tree/HEAD/handwritten/pubsub) | `5.3.0` | `5.3.1` |
| [@grpc/grpc-js](https://github.com/grpc/grpc-node) | `1.14.3` | `1.14.4` |
| [@hono/node-server](https://github.com/honojs/node-server) | `2.0.3` | `2.0.5` |
| [@koa/router](https://github.com/koajs/router) | `15.5.0` | `15.6.0` |
| [@openfeature/core](https://github.com/open-feature/js-sdk) | `1.10.0` | `1.11.0` |
| [@openfeature/server-sdk](https://github.com/open-feature/js-sdk) | `1.21.0` | `1.22.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.0` | `25.9.3` |
| [aerospike](https://github.com/aerospike/aerospike-client-nodejs) | `6.7.0` | `6.7.1` |
| [axios](https://github.com/axios/axios) | `1.16.1` | `1.18.0` |
| [body-parser](https://github.com/expressjs/body-parser) | `2.2.2` | `2.3.0` |
| [bullmq](https://github.com/taskforcesh/bullmq) | `5.76.10` | `5.78.1` |
| [cypress](https://github.com/cypress-io/cypress) | `15.16.0` | `15.17.0` |
| [ejs](https://github.com/mde/ejs) | `5.0.2` | `6.0.1` |
| [electron](https://github.com/electron/electron) | `42.1.0` | `42.4.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.28.0` | `0.28.1` |
| [graphql](https://github.com/graphql/graphql-js) | `16.14.0` | `17.0.0` |
| [graphql-yoga](https://github.com/graphql-hive/graphql-yoga/tree/HEAD/packages/graphql-yoga) | `5.21.0` | `5.21.2` |
| [hono](https://github.com/honojs/hono) | `4.12.19` | `4.12.25` |
| [koa](https://github.com/koajs/koa) | `3.2.0` | `3.2.1` |
| [mariadb](https://github.com/mariadb-corporation/mariadb-connector-nodejs) | `3.4.5` | `3.5.3` |
| [multer](https://github.com/expressjs/multer) | `2.1.1` | `2.2.0` |
| [next](https://github.com/vercel/next.js) | `16.2.6` | `16.2.9` |
| [npm](https://github.com/npm/cli) | `11.14.1` | `11.17.0` |
| [oracledb](https://github.com/oracle/node-oracledb) | `6.10.0` | `7.0.0` |
| [pnpm](https://github.com/pnpm/pnpm/tree/HEAD/pnpm) | `11.1.3` | `11.7.0` |
| [protobufjs](https://github.com/protobufjs/protobuf.js) | `8.4.0` | `8.6.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.6` | `19.2.7` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.6` | `19.2.7` |
| [stripe](https://github.com/stripe/stripe-node) | `22.1.1` | `22.2.1` |
| [undici](https://github.com/nodejs/undici) | `8.3.0` | `8.5.0` |
| [ws](https://github.com/websockets/ws) | `8.20.1` | `8.21.0` |



Updates `@apollo/gateway` from 2.14.0 to 2.14.1
- [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/gateway@2.14.1/gateway-js)

Updates `@apollo/subgraph` from 2.14.0 to 2.14.1
- [Release notes](https://github.com/apollographql/federation/releases)
- [Changelog](https://github.com/apollographql/federation/blob/main/subgraph-js/CHANGELOG.md)
- [Commits](https://github.com/apollographql/federation/commits/@apollo/subgraph@2.14.1/subgraph-js)

Updates `@aws/durable-execution-sdk-js` from 1.1.2 to 1.1.7
- [Release notes](https://github.com/aws/aws-durable-execution-sdk-js/releases)
- [Changelog](https://github.com/aws/aws-durable-execution-sdk-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-durable-execution-sdk-js/commits/sdk-1.1.7/packages/aws-durable-execution-sdk-js)

Updates `@babel/core` from 7.29.0 to 7.29.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.7/packages/babel-core)

Updates `@babel/preset-typescript` from 7.28.5 to 7.29.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.29.7/packages/babel-preset-typescript)

Updates `@confluentinc/kafka-javascript` from 1.9.0 to 1.9.1
- [Release notes](https://github.com/confluentinc/confluent-kafka-javascript/releases)
- [Changelog](https://github.com/confluentinc/confluent-kafka-javascript/blob/master/CHANGELOG.md)
- [Commits](confluentinc/confluent-kafka-javascript@v1.9.0...v1.9.1)

Updates `@datadog/openfeature-node-server` from 1.2.1 to 2.0.0
- [Release notes](https://github.com/DataDog/openfeature-js-client/releases)
- [Changelog](https://github.com/DataDog/openfeature-js-client/blob/main/CHANGELOG.md)
- [Commits](https://github.com/DataDog/openfeature-js-client/commits/@datadog/openfeature-node-server@2.0.0/packages/node-server)

Updates `@elastic/elasticsearch` from 9.4.0 to 9.4.2
- [Release notes](https://github.com/elastic/elasticsearch-js/releases)
- [Changelog](https://github.com/elastic/elasticsearch-js/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch-js@v9.4.0...v9.4.2)

Updates `@elastic/transport` from 9.3.5 to 9.3.7
- [Release notes](https://github.com/elastic/elastic-transport-js/releases)
- [Commits](elastic/elastic-transport-js@v9.3.5...v9.3.7)

Updates `@electron/packager` from 20.0.0 to 20.0.1
- [Release notes](https://github.com/electron/packager/releases)
- [Changelog](https://github.com/electron/packager/blob/main/NEWS.md)
- [Commits](electron/packager@v20.0.0...v20.0.1)

Updates `@google-cloud/pubsub` from 5.3.0 to 5.3.1
- [Release notes](https://github.com/googleapis/google-cloud-node/releases)
- [Changelog](https://github.com/googleapis/google-cloud-node/blob/main/handwritten/pubsub/CHANGELOG.md)
- [Commits](https://github.com/googleapis/google-cloud-node/commits/dns-v5.3.1/handwritten/pubsub)

Updates `@grpc/grpc-js` from 1.14.3 to 1.14.4
- [Release notes](https://github.com/grpc/grpc-node/releases)
- [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.14.3...@grpc/grpc-js@1.14.4)

Updates `@hono/node-server` from 2.0.3 to 2.0.5
- [Release notes](https://github.com/honojs/node-server/releases)
- [Commits](honojs/node-server@v2.0.3...v2.0.5)

Updates `@koa/router` from 15.5.0 to 15.6.0
- [Release notes](https://github.com/koajs/router/releases)
- [Commits](koajs/router@v15.5.0...v15.6.0)

Updates `@openfeature/core` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/open-feature/js-sdk/releases)
- [Commits](open-feature/js-sdk@core-v1.10.0...core-v1.11.0)

Updates `@openfeature/server-sdk` from 1.21.0 to 1.22.0
- [Release notes](https://github.com/open-feature/js-sdk/releases)
- [Commits](open-feature/js-sdk@server-sdk-v1.21.0...server-sdk-v1.22.0)

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

Updates `aerospike` from 6.7.0 to 6.7.1
- [Release notes](https://github.com/aerospike/aerospike-client-nodejs/releases)
- [Changelog](https://github.com/aerospike/aerospike-client-nodejs/blob/master/CHANGELOG.md)
- [Commits](aerospike/aerospike-client-nodejs@v6.7.0...v6.7.1)

Updates `axios` from 1.16.1 to 1.18.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.16.1...v1.18.0)

Updates `body-parser` from 2.2.2 to 2.3.0
- [Release notes](https://github.com/expressjs/body-parser/releases)
- [Changelog](https://github.com/expressjs/body-parser/blob/master/HISTORY.md)
- [Commits](expressjs/body-parser@v2.2.2...v2.3.0)

Updates `bullmq` from 5.76.10 to 5.78.1
- [Release notes](https://github.com/taskforcesh/bullmq/releases)
- [Commits](taskforcesh/bullmq@v5.76.10...v5.78.1)

Updates `cypress` from 15.16.0 to 15.17.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v15.16.0...v15.17.0)

Updates `ejs` from 5.0.2 to 6.0.1
- [Release notes](https://github.com/mde/ejs/releases)
- [Changelog](https://github.com/mde/ejs/blob/main/RELEASE_NOTES_v5.md)
- [Commits](mde/ejs@v5.0.2...v6.0.1)

Updates `electron` from 42.1.0 to 42.4.0
- [Release notes](https://github.com/electron/electron/releases)
- [Commits](electron/electron@v42.1.0...v42.4.0)

Updates `esbuild` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.28.0...v0.28.1)

Updates `graphql` from 16.14.0 to 17.0.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.14.0...v17.0.0)

Updates `graphql-yoga` from 5.21.0 to 5.21.2
- [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/graphql-yoga@5.21.2/packages/graphql-yoga)

Updates `hono` from 4.12.19 to 4.12.25
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.12.19...v4.12.25)

Updates `koa` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/koajs/koa/releases)
- [Changelog](https://github.com/koajs/koa/blob/master/History.md)
- [Commits](koajs/koa@v3.2.0...v3.2.1)

Updates `mariadb` from 3.4.5 to 3.5.3
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-nodejs/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-nodejs/blob/main/CHANGELOG.md)
- [Commits](mariadb-corporation/mariadb-connector-nodejs@3.4.5...3.5.3)

Updates `multer` from 2.1.1 to 2.2.0
- [Release notes](https://github.com/expressjs/multer/releases)
- [Changelog](https://github.com/expressjs/multer/blob/main/CHANGELOG.md)
- [Commits](expressjs/multer@v2.1.1...v2.2.0)

Updates `next` from 16.2.6 to 16.2.9
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.2.6...v16.2.9)

Updates `npm` from 11.14.1 to 11.17.0
- [Release notes](https://github.com/npm/cli/releases)
- [Changelog](https://github.com/npm/cli/blob/v11.17.0/CHANGELOG.md)
- [Commits](npm/cli@v11.14.1...v11.17.0)

Updates `oracledb` from 6.10.0 to 7.0.0
- [Release notes](https://github.com/oracle/node-oracledb/releases)
- [Changelog](https://github.com/oracle/node-oracledb/blob/main/CHANGELOG.md)
- [Commits](oracle/node-oracledb@v6.10.0...v7.0.0)

Updates `pnpm` from 11.1.3 to 11.7.0
- [Release notes](https://github.com/pnpm/pnpm/releases)
- [Changelog](https://github.com/pnpm/pnpm/blob/main/pnpm/CHANGELOG.md)
- [Commits](https://github.com/pnpm/pnpm/commits/v11.7.0/pnpm)

Updates `protobufjs` from 8.4.0 to 8.6.3
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md)
- [Commits](protobufjs/protobuf.js@protobufjs-v8.4.0...protobufjs-v8.6.3)

Updates `react` from 19.2.6 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react)

Updates `react-dom` from 19.2.6 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom)

Updates `stripe` from 22.1.1 to 22.2.1
- [Release notes](https://github.com/stripe/stripe-node/releases)
- [Changelog](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-node@v22.1.1...v22.2.1)

Updates `undici` from 8.3.0 to 8.5.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v8.3.0...v8.5.0)

Updates `ws` from 8.20.1 to 8.21.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.20.1...8.21.0)

---
updated-dependencies:
- dependency-name: "@apollo/gateway"
  dependency-version: 2.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@apollo/subgraph"
  dependency-version: 2.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@aws/durable-execution-sdk-js"
  dependency-version: 1.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@babel/core"
  dependency-version: 7.29.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@babel/preset-typescript"
  dependency-version: 7.29.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: "@confluentinc/kafka-javascript"
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@datadog/openfeature-node-server"
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: test-versions
- dependency-name: "@elastic/elasticsearch"
  dependency-version: 9.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@elastic/transport"
  dependency-version: 9.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@electron/packager"
  dependency-version: 20.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@google-cloud/pubsub"
  dependency-version: 5.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@grpc/grpc-js"
  dependency-version: 1.14.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@hono/node-server"
  dependency-version: 2.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: "@koa/router"
  dependency-version: 15.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: "@openfeature/core"
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: "@openfeature/server-sdk"
  dependency-version: 1.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: "@types/node"
  dependency-version: 25.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: aerospike
  dependency-version: 6.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: axios
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: body-parser
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: bullmq
  dependency-version: 5.78.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: cypress
  dependency-version: 15.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: ejs
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: test-versions
- dependency-name: electron
  dependency-version: 42.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: esbuild
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: graphql
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: test-versions
- dependency-name: graphql-yoga
  dependency-version: 5.21.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: hono
  dependency-version: 4.12.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: koa
  dependency-version: 3.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: mariadb
  dependency-version: 3.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: multer
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: next
  dependency-version: 16.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: npm
  dependency-version: 11.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: oracledb
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: test-versions
- dependency-name: pnpm
  dependency-version: 11.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: protobufjs
  dependency-version: 8.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: react
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: test-versions
- dependency-name: stripe
  dependency-version: 22.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: undici
  dependency-version: 8.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
- dependency-name: ws
  dependency-version: 8.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependabot dependencies javascript Pull requests that update javascript code semver-patch labels Jun 19, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner June 19, 2026 00:59
@dependabot
dependabot Bot requested review from crysmags and removed request for a team June 19, 2026 00:59
@dependabot dependabot Bot added semver-patch dependencies javascript Pull requests that update javascript code dependabot labels Jun 19, 2026
@dd-octo-sts
dd-octo-sts Bot enabled auto-merge (squash) June 19, 2026 00:59
@dd-octo-sts

dd-octo-sts Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Overall package size

Self size: 6.25 MB
Deduped: 7.32 MB
No deduping: 7.32 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.1.0 | 101.28 kB | 840.46 kB | | opentracing | 0.14.7 | 194.81 kB | 194.81 kB | | dc-polyfill | 0.1.11 | 25.74 kB | 25.74 kB |

🤖 This report was automatically generated by heaviest-objects-in-the-universe

@datadog-datadog-prod-us1

datadog-datadog-prod-us1 Bot commented Jun 19, 2026

Copy link
Copy Markdown

Pipelines  Tests

Fix all issues with BitsAI

⚠️ Warnings

🚦 5 Pipeline jobs failed

APM Integrations | graphql   View in Datadog   GitHub Actions

APM Integrations | prisma (latest, all)   View in Datadog   GitHub Actions

Serverless | google-cloud-pubsub   View in Datadog   GitHub Actions

View all 5 failed jobs.

ℹ️ Info

No other issues found (see more)

🧪 All tests passed
❄️ No new flaky tests detected

Useful? React with 👍 / 👎

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: 49bf6e8 | Docs | Datadog PR Page | Give us feedback!

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 49bf6e8282

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

"fs": "0.0.1-security",
"generic-pool": "3.9.0",
"graphql": "16.14.0",
"graphql": "17.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep GraphQL latest below unsupported v17

When the plugin version generator caps the graphql instrumentation range (>=0.10), this new latest value makes the generated versions/graphql workspace resolve to 17.0.0. The GraphQL instrumentation currently documents that graphql >=17.0.0-alpha.9 routes execute() through experimentalExecuteIncrementally(), bypassing the wrapped execution/execute.js hook, so the latest-version GraphQL tests will stop producing the expected execute spans and any v17 users would be treated as supported before the hook exists. Please leave this cap on the latest 16.x release or add the v17 hook first.

Useful? React with 👍 / 👎.

@pr-commenter

pr-commenter Bot commented Jun 19, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-06-19 01:11:18

Comparing candidate commit 49bf6e8 in PR branch dependabot/npm_and_yarn/packages/dd-trace/test/plugins/versions/test-versions-61cfb08bee with baseline commit 655a49f in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 1952 metrics, 13 unstable metrics.

Explanation

This is an A/B test comparing a candidate commit's performance against that of a baseline commit. Performance changes are noted in the tables below as:

  • 🟩 = significantly better candidate vs. baseline
  • 🟥 = significantly worse candidate vs. baseline

We compute a confidence interval (CI) over the relative difference of means between metrics from the candidate and baseline commits, considering the baseline as the reference.

If the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD), the change is considered significant.

Feel free to reach out to #apm-benchmarking-platform on Slack if you have any questions.

More details about the CI and significant changes

You can imagine this CI as a range of values that is likely to contain the true difference of means between the candidate and baseline commits.

CIs of the difference of means are often centered around 0%, because often changes are not that big:

---------------------------------(------|---^--------)-------------------------------->
                              -0.6%    0%  0.3%     +1.2%
                                 |          |        |
         lower bound of the CI --'          |        |
sample mean (center of the CI) -------------'        |
         upper bound of the CI ----------------------'

As described above, a change is considered significant if the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD).

For instance, for an execution time metric, this confidence interval indicates a significantly worse performance:

----------------------------------------|---------|---(---------^---------)---------->
                                       0%        1%  1.3%      2.2%      3.1%
                                                  |   |         |         |
       significant impact threshold --------------'   |         |         |
                      lower bound of CI --------------'         |         |
       sample mean (center of the CI) --------------------------'         |
                      upper bound of CI ----------------------------------'

Unstable benchmarks

These benchmarks have a confidence interval too wide to call a change; treat them as noise rather than signal.

scenario:appsec-appsec-enabled-24

  • unstable execution_time [-148.665ms; +153.289ms] or [-5.708%; +5.885%]

scenario:appsec-appsec-enabled-26

  • unstable execution_time [-171515.271µs; +171556.205µs] or [-6.909%; +6.911%]

scenario:appsec-control-20

  • unstable execution_time [-136.585ms; +99.684ms] or [-7.970%; +5.816%]

scenario:appsec-control-24

  • unstable execution_time [-97.480ms; +90.218ms] or [-8.135%; +7.529%]

scenario:appsec-control-26

  • unstable execution_time [-99.209ms; +95.275ms] or [-8.409%; +8.075%]

scenario:dogstatsd-with-tags-20

  • unstable cpu_user_time [-330.207ms; +348.561ms] or [-6.950%; +7.336%]
  • unstable execution_time [-328.504ms; +347.523ms] or [-6.813%; +7.208%]

scenario:plugin-graphql-long-with-depth-and-collapse-off-24

  • unstable cpu_user_time [-219.817ms; +302.284ms] or [-4.794%; +6.593%]
  • unstable execution_time [-224.286ms; +319.112ms] or [-4.597%; +6.541%]
  • unstable max_rss_usage [-23.958MB; +39.992MB] or [-4.292%; +7.165%]

scenario:plugin-graphql-long-with-depth-off-20

  • unstable max_rss_usage [-15.804MB; +10.496MB] or [-11.206%; +7.442%]

scenario:spans-finish-later-26

  • unstable max_rss_usage [+1.618MB; +23.126MB] or [+0.875%; +12.513%]

scenario:test-optimization-large-suite-20

  • unstable max_rss_usage [-4.443MB; +9.561MB] or [-5.305%; +11.416%]

@codecov

codecov Bot commented Jun 19, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.96%. Comparing base (655a49f) to head (49bf6e8).
⚠️ Report is 4 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #8992      +/-   ##
==========================================
- Coverage   93.37%   91.96%   -1.42%     
==========================================
  Files         878      878              
  Lines       50282    50282              
  Branches     9873     9799      -74     
==========================================
- Hits        46951    46242     -709     
- Misses       3331     4040     +709     
Flag Coverage Δ
aiguard-integration-active 41.35% <ø> (-0.13%) ⬇️
aiguard-integration-latest 41.49% <ø> (ø)
aiguard-integration-maintenance 41.57% <ø> (ø)
aiguard-macos 34.57% <ø> (-0.08%) ⬇️
aiguard-ubuntu 34.72% <ø> (-0.08%) ⬇️
aiguard-windows 34.39% <ø> (-0.08%) ⬇️
apm-capabilities-tracing-macos 47.87% <ø> (ø)
apm-capabilities-tracing-ubuntu-active 47.87% <ø> (ø)
apm-capabilities-tracing-ubuntu-latest 47.87% <ø> (ø)
apm-capabilities-tracing-ubuntu-maintenance ?
apm-capabilities-tracing-ubuntu-oldest 47.92% <ø> (+<0.01%) ⬆️
apm-capabilities-tracing-windows 47.68% <ø> (-0.19%) ⬇️
apm-integrations-aerospike-18-gte.5.2.0 32.99% <ø> (-0.08%) ⬇️
apm-integrations-aerospike-20-gte.5.5.0 33.02% <ø> (-0.08%) ⬇️
apm-integrations-aerospike-22-gte.5.12.1 33.02% <ø> (-0.08%) ⬇️
apm-integrations-aerospike-22-gte.6.0.0 33.02% <ø> (-0.08%) ⬇️
apm-integrations-aerospike-eol- 32.92% <ø> (-0.08%) ⬇️
apm-integrations-child-process 33.94% <ø> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-18 40.01% <ø> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-20 40.02% <ø> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-22 40.03% <ø> (-0.08%) ⬇️
apm-integrations-confluentinc-kafka-javascript-24 39.92% <ø> (-0.08%) ⬇️
apm-integrations-couchbase-18 33.29% <ø> (+0.20%) ⬆️
apm-integrations-couchbase-eol 33.22% <ø> (+0.08%) ⬆️
apm-integrations-dns 32.94% <ø> (-0.08%) ⬇️
apm-integrations-elasticsearch ?
apm-integrations-http-latest 41.14% <ø> (-0.07%) ⬇️
apm-integrations-http-maintenance 41.23% <ø> (-0.07%) ⬇️
apm-integrations-http-oldest 41.16% <ø> (-0.07%) ⬇️
apm-integrations-http2 38.30% <ø> (-0.08%) ⬇️
apm-integrations-kafkajs-latest 40.10% <ø> (-0.08%) ⬇️
apm-integrations-kafkajs-oldest 40.20% <ø> (-0.02%) ⬇️
apm-integrations-net 33.64% <ø> (-0.08%) ⬇️
apm-integrations-next-11.1.4 36.52% <ø> (ø)
apm-integrations-next-12.3.7 36.52% <ø> (ø)
apm-integrations-next-13.0.0 28.97% <ø> (-0.08%) ⬇️
apm-integrations-next-13.2.0 28.97% <ø> (-0.08%) ⬇️
apm-integrations-next-13.5.11 29.11% <ø> (-0.12%) ⬇️
apm-integrations-next-14.0.0 29.04% <ø> (-0.08%) ⬇️
apm-integrations-next-14.2.35 29.08% <ø> (-0.04%) ⬇️
apm-integrations-next-14.2.6 29.04% <ø> (-0.08%) ⬇️
apm-integrations-next-14.2.7 29.08% <ø> (-0.04%) ⬇️
apm-integrations-next-15.0.0 29.08% <ø> (-0.04%) ⬇️
apm-integrations-next-15.4.0 29.11% <ø> (-0.12%) ⬇️
apm-integrations-next-latest 29.15% <ø> (-0.08%) ⬇️
apm-integrations-oracledb 33.85% <ø> (-0.08%) ⬇️
apm-integrations-prisma-18-gte.6.16.0.and.lt.7.0.0 34.72% <ø> (-0.08%) ⬇️
apm-integrations-prisma-latest-all ?
apm-integrations-restify 35.09% <ø> (-0.08%) ⬇️
apm-integrations-sharedb 32.35% <ø> (-0.08%) ⬇️
apm-integrations-tedious 33.26% <ø> (-0.08%) ⬇️
appsec-express 50.92% <ø> (-0.06%) ⬇️
appsec-fastify 47.68% <ø> (-0.08%) ⬇️
appsec-graphql 47.73% <ø> (-0.07%) ⬇️
appsec-integration-active 34.93% <ø> (-1.16%) ⬇️
appsec-integration-latest 34.93% <ø> (-1.16%) ⬇️
appsec-integration-maintenance 34.99% <ø> (-1.16%) ⬇️
appsec-integration-oldest ?
appsec-kafka 40.22% <ø> (-0.07%) ⬇️
appsec-ldapjs 39.75% <ø> (-0.07%) ⬇️
appsec-lodash 39.67% <ø> (-0.07%) ⬇️
appsec-macos ?
appsec-mongodb-core 43.87% <ø> (-0.06%) ⬇️
appsec-mongoose 44.71% <ø> (-0.06%) ⬇️
appsec-mysql 46.96% <ø> (-0.06%) ⬇️
appsec-next-latest-11.1.4 27.27% <ø> (-0.07%) ⬇️
appsec-next-latest-12.3.7 27.66% <ø> (ø)
appsec-next-latest-13.0.0 29.07% <ø> (-0.08%) ⬇️
appsec-next-latest-13.2.0 29.09% <ø> (-0.08%) ⬇️
appsec-next-latest-13.5.11 29.19% <ø> (-0.08%) ⬇️
appsec-next-latest-14.0.0 29.11% <ø> (-0.08%) ⬇️
appsec-next-latest-14.2.35 29.11% <ø> (-0.08%) ⬇️
appsec-next-latest-14.2.6 29.11% <ø> (-0.08%) ⬇️
appsec-next-latest-14.2.7 29.11% <ø> (-0.08%) ⬇️
appsec-next-latest-15.0.0 29.11% <ø> (-0.08%) ⬇️
appsec-next-latest-latest 29.15% <ø> (-0.08%) ⬇️
appsec-next-oldest-11.1.4 27.33% <ø> (-0.07%) ⬇️
appsec-next-oldest-12.3.7 29.13% <ø> (-0.08%) ⬇️
appsec-next-oldest-13.0.0 29.13% <ø> (-0.08%) ⬇️
appsec-next-oldest-13.2.0 29.39% <ø> (-0.08%) ⬇️
appsec-next-oldest-13.5.11 29.49% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.0.0 29.42% <ø> (?)
appsec-next-oldest-14.2.35 29.42% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.2.6 29.42% <ø> (-0.08%) ⬇️
appsec-next-oldest-14.2.7 29.42% <ø> (-0.08%) ⬇️
appsec-next-oldest-15.0.0 ?
appsec-next-oldest-latest 27.86% <ø> (ø)
appsec-node-serialize 38.98% <ø> (-0.07%) ⬇️
appsec-passport 42.61% <ø> (-0.07%) ⬇️
appsec-postgres 46.68% <ø> (-0.06%) ⬇️
appsec-sourcing 38.39% <ø> (-0.07%) ⬇️
appsec-stripe 40.46% <ø> (-0.06%) ⬇️
appsec-template 39.22% <ø> (-0.07%) ⬇️
appsec-ubuntu 57.22% <ø> (-0.06%) ⬇️
appsec-windows 56.96% <ø> (-0.14%) ⬇️
debugger-ubuntu-active 43.52% <ø> (ø)
debugger-ubuntu-latest 43.52% <ø> (ø)
debugger-ubuntu-maintenance 43.64% <ø> (-0.29%) ⬇️
debugger-ubuntu-oldest 43.95% <ø> (-0.05%) ⬇️
instrumentations-instrumentation-ai 45.15% <ø> (ø)
instrumentations-instrumentation-aws-sdk 44.75% <ø> (ø)
instrumentations-instrumentation-bluebird 27.41% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-body-parser 35.56% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-child_process 33.31% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-connect 48.04% <ø> (ø)
instrumentations-instrumentation-cookie-parser 29.32% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-couchbase-18 45.83% <ø> (ø)
instrumentations-instrumentation-couchbase-eol 45.83% <ø> (ø)
instrumentations-instrumentation-crypto 27.46% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-express 29.53% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-express-mongo-sanitize 29.43% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-express-multi-version 41.47% <ø> (ø)
instrumentations-instrumentation-express-session 35.34% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-fastify 48.04% <ø> (ø)
instrumentations-instrumentation-fetch 44.76% <ø> (ø)
instrumentations-instrumentation-fs 27.18% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-generic-pool 27.04% <ø> (ø)
instrumentations-instrumentation-hono 28.62% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-http 37.89% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-http-client-options 37.49% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-kafkajs 48.75% <ø> (ø)
instrumentations-instrumentation-knex 27.40% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-koa 45.71% <ø> (ø)
instrumentations-instrumentation-light-my-request 35.20% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-mongoose 28.51% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-multer 35.23% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-mysql2 33.35% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-openai-lifecycle 45.82% <ø> (ø)
instrumentations-instrumentation-otel-sdk-trace 25.25% <ø> (ø)
instrumentations-instrumentation-passport 39.15% <ø> (-0.07%) ⬇️
instrumentations-instrumentation-passport-http 38.84% <ø> (-0.07%) ⬇️
instrumentations-instrumentation-passport-local 39.30% <ø> (-0.07%) ⬇️
instrumentations-instrumentation-pg 33.07% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-promise 27.36% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-promise-js 27.36% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-q 27.39% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-restify 47.30% <ø> (ø)
instrumentations-instrumentation-router 43.37% <ø> (ø)
instrumentations-instrumentation-stripe 27.89% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-url 27.29% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-when 27.37% <ø> (-0.08%) ⬇️
instrumentations-instrumentation-zlib 27.34% <ø> (-0.08%) ⬇️
instrumentations-integration-esbuild-0.16.12-active 24.64% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-latest ?
instrumentations-integration-esbuild-0.16.12-maintenance 18.64% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-oldest ?
instrumentations-integration-esbuild-latest-active 24.64% <ø> (ø)
instrumentations-integration-esbuild-latest-latest 24.64% <ø> (ø)
instrumentations-integration-esbuild-latest-maintenance 18.64% <ø> (ø)
instrumentations-integration-esbuild-latest-oldest 18.63% <ø> (ø)
llmobs-ai 35.07% <ø> (-0.07%) ⬇️
llmobs-anthropic 36.45% <ø> (-0.08%) ⬇️
llmobs-bedrock 35.97% <ø> (-0.07%) ⬇️
llmobs-google-genai 35.73% <ø> (-0.07%) ⬇️
llmobs-langchain 34.75% <ø> (-0.06%) ⬇️
llmobs-openai-latest 39.38% <ø> (-0.07%) ⬇️
llmobs-openai-oldest 39.46% <ø> (-0.07%) ⬇️
llmobs-sdk-active 43.41% <ø> (-0.08%) ⬇️
llmobs-sdk-latest 43.41% <ø> (-0.08%) ⬇️
llmobs-sdk-maintenance 43.51% <ø> (-0.08%) ⬇️
llmobs-sdk-oldest 43.50% <ø> (-0.08%) ⬇️
llmobs-vertex-ai ?
master-coverage 91.96% <ø> (?)
openfeature-macos 37.39% <ø> (ø)
openfeature-ubuntu 37.53% <ø> (ø)
openfeature-unit-active 49.95% <ø> (ø)
openfeature-unit-latest 49.95% <ø> (ø)
openfeature-unit-maintenance 50.32% <ø> (ø)
openfeature-unit-oldest 50.32% <ø> (ø)
openfeature-windows 37.22% <ø> (-0.06%) ⬇️
platform-core 45.98% <ø> (ø)
platform-esbuild 47.00% <ø> (ø)
platform-instrumentations-misc 29.36% <ø> (ø)
platform-integration-active 46.66% <ø> (+0.05%) ⬆️
platform-integration-latest 46.64% <ø> (-0.02%) ⬇️
platform-integration-maintenance 46.75% <ø> (ø)
platform-integration-oldest ?
platform-shimmer 47.05% <ø> (ø)
platform-unit-guardrails 44.04% <ø> (ø)
platform-webpack 18.11% <ø> (ø)
plugins-aws-durable-execution-sdk-js 32.73% <ø> (-0.07%) ⬇️
plugins-axios 35.31% <ø> (ø)
plugins-azure-cosmos 35.78% <ø> (-0.08%) ⬇️
plugins-azure-event-hubs 34.64% <ø> (ø)
plugins-azure-service-bus 35.12% <ø> (ø)
plugins-body-parser 36.33% <ø> (ø)
plugins-bullmq 39.40% <ø> (-0.08%) ⬇️
plugins-cassandra 33.47% <ø> (-0.08%) ⬇️
plugins-cookie 40.47% <ø> (ø)
plugins-cookie-parser 40.30% <ø> (ø)
plugins-crypto 42.36% <ø> (ø)
plugins-dd-trace-api 33.18% <ø> (-0.08%) ⬇️
plugins-express-mongo-sanitize 40.35% <ø> (ø)
plugins-express-session 40.22% <ø> (ø)
plugins-fastify 37.66% <ø> (-0.08%) ⬇️
plugins-fetch 33.89% <ø> (-0.08%) ⬇️
plugins-fs 33.60% <ø> (-0.08%) ⬇️
plugins-generic-pool 39.79% <ø> (ø)
plugins-google-cloud-pubsub ?
plugins-grpc 36.38% <ø> (-0.08%) ⬇️
plugins-handlebars 40.35% <ø> (ø)
plugins-hapi 35.45% <ø> (-0.08%) ⬇️
plugins-hono 35.78% <ø> (-0.08%) ⬇️
plugins-ioredis 34.15% <ø> (-0.08%) ⬇️
plugins-jest 27.10% <ø> (ø)
plugins-knex 39.83% <ø> (ø)
plugins-langgraph 32.20% <ø> (-0.08%) ⬇️
plugins-ldapjs 38.81% <ø> (ø)
plugins-light-my-request 39.93% <ø> (ø)
plugins-limitd-client 27.55% <ø> (-0.25%) ⬇️
plugins-lodash 39.97% <ø> (ø)
plugins-mariadb ?
plugins-memcached 33.54% <ø> (-0.08%) ⬇️
plugins-microgateway-core 34.55% <ø> (-0.08%) ⬇️
plugins-modelcontextprotocol-sdk 32.16% <ø> (-0.08%) ⬇️
plugins-moleculer 36.43% <ø> (-0.08%) ⬇️
plugins-mongodb 35.59% <ø> (-0.17%) ⬇️
plugins-mongodb-core 35.28% <ø> (-0.08%) ⬇️
plugins-mongoose 34.17% <ø> (-0.08%) ⬇️
plugins-multer 40.27% <ø> (ø)
plugins-mysql 34.47% <ø> (-0.08%) ⬇️
plugins-mysql2 34.80% <ø> (-0.08%) ⬇️
plugins-nats 36.18% <ø> (-0.08%) ⬇️
plugins-node-serialize 40.49% <ø> (ø)
plugins-opensearch 33.41% <ø> (-0.08%) ⬇️
plugins-passport-http 40.09% <ø> (ø)
plugins-pino 29.65% <ø> (-0.08%) ⬇️
plugins-postgres 34.51% <ø> (-0.08%) ⬇️
plugins-process 42.36% <ø> (ø)
plugins-pug 40.47% <ø> (ø)
plugins-redis 34.13% <ø> (-0.08%) ⬇️
plugins-router 37.88% <ø> (-0.08%) ⬇️
plugins-sequelize 39.75% <ø> (ø)
plugins-test-and-upstream-amqp10 33.68% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-amqplib 38.87% <ø> (-0.24%) ⬇️
plugins-test-and-upstream-apollo 34.65% <ø> (-0.07%) ⬇️
plugins-test-and-upstream-avsc 33.57% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-bunyan 28.87% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-connect 35.95% <ø> (-0.30%) ⬇️
plugins-test-and-upstream-graphql ?
plugins-test-and-upstream-koa 35.68% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-protobufjs 33.80% <ø> (-0.08%) ⬇️
plugins-test-and-upstream-rhea 39.00% <ø> (-0.08%) ⬇️
plugins-undici 34.39% <ø> (-0.07%) ⬇️
plugins-url 42.36% <ø> (ø)
plugins-valkey 33.64% <ø> (-0.08%) ⬇️
plugins-vm 42.36% <ø> (ø)
plugins-winston 29.51% <ø> (-0.08%) ⬇️
plugins-ws 36.92% <ø> (-0.08%) ⬇️
profiling-macos 43.07% <ø> (-0.02%) ⬇️
profiling-ubuntu 43.46% <ø> (-0.07%) ⬇️
profiling-windows ?
serverless-aws-sdk-latest-aws-sdk 32.91% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-bedrockruntime 31.81% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-client 36.20% <ø> (ø)
serverless-aws-sdk-latest-dynamodb 33.74% <ø> (-0.12%) ⬇️
serverless-aws-sdk-latest-eventbridge 26.83% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-kinesis 37.00% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-lambda 34.25% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-s3 32.16% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-serverless-peer-service 39.12% <ø> (-0.08%) ⬇️
serverless-aws-sdk-latest-sns 38.01% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-sqs 37.63% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-stepfunctions 32.82% <ø> (-0.07%) ⬇️
serverless-aws-sdk-latest-util 46.39% <ø> (ø)
serverless-aws-sdk-oldest-aws-sdk 33.03% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-bedrockruntime 31.91% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-client 36.76% <ø> (ø)
serverless-aws-sdk-oldest-dynamodb 33.83% <ø> (-0.12%) ⬇️
serverless-aws-sdk-oldest-eventbridge 26.91% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-kinesis ?
serverless-aws-sdk-oldest-lambda 34.35% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-s3 32.29% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-serverless-peer-service 39.21% <ø> (-0.08%) ⬇️
serverless-aws-sdk-oldest-sns 38.11% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-sqs 37.71% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-stepfunctions 32.93% <ø> (-0.07%) ⬇️
serverless-aws-sdk-oldest-util 47.13% <ø> (ø)
serverless-azure-durable-functions 36.58% <ø> (-0.16%) ⬇️
serverless-azure-functions-eventhubs 38.22% <ø> (ø)
serverless-azure-functions-servicebus 38.28% <ø> (ø)
serverless-lambda 34.22% <ø> (-0.10%) ⬇️
test-optimization-cucumber-latest-7.0.0 49.91% <ø> (+0.11%) ⬆️
test-optimization-cucumber-latest-latest 52.64% <ø> (+0.11%) ⬆️
test-optimization-cucumber-oldest-7.0.0 49.99% <ø> (+0.11%) ⬆️
test-optimization-cypress-latest-12.0.0-commonJS 48.85% <ø> (-0.30%) ⬇️
test-optimization-cypress-latest-12.0.0-esm 49.14% <ø> (-0.07%) ⬇️
test-optimization-cypress-latest-14.5.4-commonJS 49.10% <ø> (+0.07%) ⬆️
test-optimization-cypress-latest-14.5.4-esm 49.10% <ø> (+1.77%) ⬆️
test-optimization-cypress-latest-latest-commonJS 47.83% <ø> (-1.55%) ⬇️
test-optimization-cypress-latest-latest-esm 48.25% <ø> (-1.29%) ⬇️
test-optimization-cypress-oldest-12.0.0-commonJS 48.79% <ø> (+0.95%) ⬆️
test-optimization-cypress-oldest-12.0.0-esm 49.30% <ø> (+0.01%) ⬆️
test-optimization-cypress-oldest-14.5.4-commonJS 48.05% <ø> (-1.00%) ⬇️
test-optimization-cypress-oldest-14.5.4-esm 49.04% <ø> (+1.95%) ⬆️
test-optimization-jest-latest-latest 55.35% <ø> (+2.57%) ⬆️
test-optimization-jest-latest-oldest 54.27% <ø> (+0.08%) ⬆️
test-optimization-jest-oldest-latest 55.39% <ø> (+0.08%) ⬆️
test-optimization-jest-oldest-oldest 53.64% <ø> (-0.56%) ⬇️
test-optimization-mocha-latest-latest 53.59% <ø> (+0.08%) ⬆️
test-optimization-mocha-latest-oldest 51.14% <ø> (+0.08%) ⬆️
test-optimization-mocha-oldest-latest 53.70% <ø> (+0.06%) ⬆️
test-optimization-mocha-oldest-oldest 51.13% <ø> (?)
test-optimization-playwright-latest-latest-playwright-active-test-span 44.22% <ø> (+0.27%) ⬆️
test-optimization-playwright-latest-latest-playwright-atr 42.84% <ø> (+0.10%) ⬆️
test-optimization-playwright-latest-latest-playwright-efd 43.27% <ø> (+0.06%) ⬆️
test-optimization-playwright-latest-latest-playwright-final-status 43.36% <ø> (+0.10%) ⬆️
test-optimization-playwright-latest-latest-playwright-impacted-tests 42.82% <ø> (ø)
test-optimization-playwright-latest-latest-playwright-reporting 42.88% <ø> (+0.08%) ⬆️
test-optimization-playwright-latest-latest-playwright-test-management 44.49% <ø> (+0.10%) ⬆️
test-optimization-playwright-latest-oldest-playwright-active-test-span 44.03% <ø> (+0.27%) ⬆️
test-optimization-playwright-latest-oldest-playwright-atr 42.92% <ø> (+0.10%) ⬆️
test-optimization-playwright-latest-oldest-playwright-efd 43.19% <ø> (+0.06%) ⬆️
test-optimization-playwright-latest-oldest-playwright-final-status 43.29% <ø> (+0.10%) ⬆️
test-optimization-playwright-latest-oldest-playwright-impacted-tests 42.74% <ø> (ø)
test-optimization-playwright-latest-oldest-playwright-reporting 42.70% <ø> (+0.09%) ⬆️
test-optimization-playwright-latest-oldest-playwright-test-management 44.44% <ø> (+0.10%) ⬆️
test-optimization-playwright-oldest-latest-playwright-active-test-span 44.28% <ø> (+0.08%) ⬆️
test-optimization-playwright-oldest-latest-playwright-atr 42.92% <ø> (+0.08%) ⬆️
test-optimization-playwright-oldest-latest-playwright-efd 43.34% <ø> (+0.08%) ⬆️
test-optimization-playwright-oldest-latest-playwright-final-status 43.41% <ø> (+0.06%) ⬆️
test-optimization-playwright-oldest-latest-playwright-impacted-tests ?
test-optimization-playwright-oldest-latest-playwright-reporting 42.94% <ø> (+0.08%) ⬆️
test-optimization-playwright-oldest-latest-playwright-test-management 44.57% <ø> (+0.08%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-active-test-span 44.12% <ø> (+0.27%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-atr 43.01% <ø> (+0.10%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-efd 43.28% <ø> (+0.09%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-final-status 43.35% <ø> (+0.08%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-impacted-tests 42.83% <ø> (ø)
test-optimization-playwright-oldest-oldest-playwright-reporting 42.76% <ø> (+0.09%) ⬆️
test-optimization-playwright-oldest-oldest-playwright-test-management 44.52% <ø> (+0.10%) ⬆️
test-optimization-selenium-latest 45.18% <ø> (+0.06%) ⬆️
test-optimization-selenium-oldest 44.76% <ø> (+0.07%) ⬆️
test-optimization-testopt-active 48.27% <ø> (+0.12%) ⬆️
test-optimization-testopt-latest 48.27% <ø> (+0.12%) ⬆️
test-optimization-testopt-maintenance 48.25% <ø> (+0.13%) ⬆️
test-optimization-testopt-oldest 49.36% <ø> (+0.10%) ⬆️
test-optimization-vitest-latest 50.80% <ø> (+0.10%) ⬆️
test-optimization-vitest-oldest 48.02% <ø> (+0.32%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot @github

dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jun 22, 2026
auto-merge was automatically disabled June 22, 2026 00:56

Pull request was closed

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/packages/dd-trace/test/plugins/versions/test-versions-61cfb08bee branch June 22, 2026 00:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependabot dependencies javascript Pull requests that update javascript code semver-patch

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants