Skip to content

chore(deps-dev): bump the dev-minor-and-patch-dependencies group across 1 directory with 6 updates - #9558

Closed
dependabot[bot] wants to merge 2 commits into
masterfrom
dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-1f22a32be6
Closed

chore(deps-dev): bump the dev-minor-and-patch-dependencies group across 1 directory with 6 updates#9558
dependabot[bot] wants to merge 2 commits into
masterfrom
dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-1f22a32be6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-minor-and-patch-dependencies group with 6 updates in the / directory:

Package From To
@eslint/eslintrc 3.3.5 3.3.6
eslint-plugin-cypress 6.4.2 6.4.3
eslint-plugin-jsdoc 63.0.12 63.2.1
eslint-plugin-n 18.2.1 18.2.2
p-limit 7.3.0 7.3.1
sinon 22.0.0 22.1.0

Updates @eslint/eslintrc from 3.3.5 to 3.3.6

Release notes

Sourced from @​eslint/eslintrc's releases.

eslintrc: v3.3.6

3.3.6 (2026-07-10)

Bug Fixes

  • update js-yaml to 4.3.0 to address security vulnerability (#235) (0c5de74)
Changelog

Sourced from @​eslint/eslintrc's changelog.

3.3.6 (2026-07-10)

Bug Fixes

  • update js-yaml to 4.3.0 to address security vulnerability (#235) (0c5de74)
Commits

Updates eslint-plugin-cypress from 6.4.2 to 6.4.3

Release notes

Sourced from eslint-plugin-cypress's releases.

v6.4.3

6.4.3 (2026-07-14)

Bug Fixes

  • docs: add no-and rule documentation to README (#379) (f1e2b93)
Commits
  • f1e2b93 fix(docs): add no-and rule documentation to README (#379)
  • b6bf0e1 chore(deps): update dependency vitest to ^4.1.10 (#386)
  • 028bced chore(deps): update dependency eslint-plugin-eslint-plugin to ^7.4.1 (#376)
  • 16fe16e chore(deps): update dependency cypress to ^15.18.1 (#375)
  • 3e15722 chore(deps): lock file maintenance (#367)
  • dd1f452 chore(deps): update dependency prettier to ^3.9.4 (#374)
  • d61010d chore(deps): update eslint to ^8.62.1 (#373)
  • c02f0bb chore(deps): update dependency prettier to ^3.9.3 (#371)
  • 07fea9d chore(deps): update dependency eslint to ^10.6.0 (#372)
  • c73ddd9 chore(deps): update node.js to v24.18.0 (#370)
  • Additional commits viewable in compare view

Updates eslint-plugin-jsdoc from 63.0.12 to 63.2.1

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v63.2.1

63.2.1 (2026-07-23)

Bug Fixes

  • update jsdoccomment, spdx-expression-parse, devDeps.; fixes #1727 (#1728) (9fd2f28)

v63.2.0

63.2.0 (2026-07-19)

Features

  • normalize-see-links: add wrapBareUrls option (#1726) (77a7b1a)

v63.1.0

63.1.0 (2026-07-18)

Features

v63.0.14

63.0.14 (2026-07-17)

Bug Fixes

  • escape-inline-tags: ignore Markdown code spans (786d12d)

v63.0.13

63.0.13 (2026-07-10)

Bug Fixes

  • failing pages build and deployment (3728347)
Commits
  • 9fd2f28 fix: update jsdoccomment, spdx-expression-parse, devDeps.; fixes #1727 (#1728)
  • 77a7b1a feat(normalize-see-links): add wrapBareUrls option (#1726)
  • c03dd66 feat: add normalize-see-links rule (#1725)
  • 786d12d fix(escape-inline-tags): ignore Markdown code spans
  • 3728347 fix: failing pages build and deployment
  • See full diff in compare view

Updates eslint-plugin-n from 18.2.1 to 18.2.2

Release notes

Sourced from eslint-plugin-n's releases.

v18.2.2

18.2.2 (2026-07-11)

🩹 Fixes

  • Ignore HTTP imports in no-missing-import (#547) (3ff929d)
  • no-callback-literal: report object, array, and template literals (#552) (dca2330)
Changelog

Sourced from eslint-plugin-n's changelog.

18.2.2 (2026-07-11)

🩹 Fixes

  • Ignore HTTP imports in no-missing-import (#547) (3ff929d)
  • no-callback-literal: report object, array, and template literals (#552) (dca2330)
Commits

Updates p-limit from 7.3.0 to 7.3.1

Release notes

Sourced from p-limit's releases.

v7.3.1

  • Fix detached limit.map calls (#108) ef37eb2

sindresorhus/p-limit@v7.3.0...v7.3.1

Commits

Updates sinon from 22.0.0 to 22.1.0

Changelog

Sourced from sinon's changelog.

22.1.0

  • d36e921b fix: let returns override returnsArg (王胜)

    Signed-off-by: 王胜 2318857637@qq.com

  • 40c4caa0 fix: align restoreObject docs test with idempotent behavior (#2745) (Julia Miller)

    restoreObject was made idempotent in #2737 — it no longer throws for objects with no restorable methods. Updates the docs page and its corresponding test to reflect this.

  • a68dac19 fix: throw a clear error when throwArg index equals the argument count (#2743) (spokodev)
    • fix: throw a clear error when throwArg index equals the argument count

    spyCall.throwArg(pos) guarded with pos > this.args.length, so calling it with pos equal to the number of recorded arguments slipped past the guard and reached throw this.args[pos], throwing undefined instead of the intended TypeError. A thrown undefined cannot be inspected as an Error and is reported by test frameworks as no exception thrown.

    Use >= to match ensureArgs in behavior.js and the sibling callArg helpers, which already reject an out-of-range index with a clear error.

  • 9ea504e3 feat: make sinon.restoreObject idempotent (#2737) (Ilia Choly)

    Passing an object with no live fakes to restoreObject now restores nothing instead of throwing, giving it symmetry with sinon.restore() and sandbox.restore(). The strict "found no methods" check is retained for spy(object) and stub(object), which now use a dedicated walkObjectStrict export, while restoreObject uses the loose walkObject. Passing a falsy value still throws.

    Fixes #2736

  • 4db4feff fix: preserve fake undefined argument validation (Vishal Kumar Singh)
  • 755a40d7 fix: isolate callId counter per sandbox for parallel test support (Vishal Kumar Singh)

    The global callId counter in proxy-invoke.js caused calledImmediatelyBefore and calledImmediatelyAfter to fail when tests run in parallel with separate sandboxes. Each sandbox now maintains its own callId counter, passed through the spy/stub/fake creation chain via a context object.

    Fixes #2472

Released by Morgan Roderick on 2026-07-20.

Commits
  • ab289e9 22.1.0
  • bb3b75a chore: remove Jekyll steps from version hook
  • bb38f25 chore: run docs tests in preversion hook
  • d36e921 fix: let returns override returnsArg
  • 11db213 ci: run docs tests on every PR (#2746)
  • 40c4caa fix: align restoreObject docs test with idempotent behavior (#2745)
  • 5ccb7fd build(deps): bump the action-deps group with 4 updates (#2744)
  • a68dac1 fix: throw a clear error when throwArg index equals the argument count (#2743)
  • 9ea504e feat: make sinon.restoreObject idempotent (#2737)
  • cf5d9e8 fix: remove dead link and exclude code example URLs from link check
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependabot dependencies javascript Pull requests that update javascript code semver-patch labels Jul 28, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 28, 2026 11:14
@dependabot dependabot Bot added semver-patch dependencies javascript Pull requests that update javascript code dependabot labels Jul 28, 2026
@dd-octo-sts
dd-octo-sts Bot enabled auto-merge (squash) July 28, 2026 11:14
@dd-octo-sts

dd-octo-sts Bot commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

Overall package size

Self size: 7.52 MB
Deduped: 8.18 MB
No deduping: 8.18 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.3.2 | 124.41 kB | 440.65 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-prod-us1-6

datadog-prod-us1-6 Bot commented Jul 28, 2026

Copy link
Copy Markdown

Pipelines  Tests

⚠️ Warnings

🚦 2 Pipeline jobs failed

Project | lint   View in Datadog   GitHub Actions

All Green | all-green   View in Datadog   GitHub Actions

ℹ️ Info

No other issues found (see more)

🧪 All tests passed
❄️ No new flaky tests detected

🔄 Datadog retried 1 test - 1 passed on retry View in Datadog

🎯 Code Coverage (details)
Patch Coverage: 100.00%
Overall Coverage: 97.96% (-0.44%)

Useful? React with 👍 / 👎

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: a3b697c | 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: fa03230c7c

ℹ️ 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".

Comment thread package.json
"eslint-plugin-jsdoc": "^63.2.0",
"eslint-plugin-mocha": "^11.3.0",
"eslint-plugin-n": "^18.2.1",
"eslint-plugin-n": "^18.2.2",

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 Fix new no-callback-literal violations before bumping plugin

With eslint-plugin-n at 18.2.2, the enabled n/no-callback-literal rule now reports object/array/template literals in the error slot. This repo still has unsuppressed callback-object calls (for example packages/datadog-plugin-grpc/test/server.spec.js:326, packages/dd-trace/test/opentelemetry/traces.spec.js:80, packages/dd-trace/test/opentelemetry/logs.spec.js:96, packages/dd-trace/test/runtime_metrics.spec.js:1132, and packages/datadog-instrumentations/test/openai-lifecycle.spec.js:126), so a clean install from this lockfile will make npm run lint fail unless those cases are fixed or suppressed before taking the plugin bump.

Useful? React with 👍 / 👎.

@pr-commenter

pr-commenter Bot commented Jul 28, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-07-29 01:08:42

Comparing candidate commit a3b697c in PR branch dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-1f22a32be6 with baseline commit a57a59d in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 2324 metrics, 34 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 [-203.532ms; +212.201ms] or [-7.668%; +7.994%]

scenario:appsec-appsec-enabled-26

  • unstable execution_time [-235.670ms; +238.232ms] or [-9.194%; +9.294%]

scenario:appsec-appsec-enabled-with-attacks-24

  • unstable execution_time [-154.933ms; +169.151ms] or [-5.002%; +5.461%]

scenario:appsec-appsec-enabled-with-attacks-26

  • unstable execution_time [-192451.617µs; +193329.451µs] or [-6.609%; +6.639%]

scenario:appsec-control-20

  • unstable execution_time [-137.227ms; +119.529ms] or [-8.349%; +7.273%]

scenario:appsec-control-24

  • unstable execution_time [-115448.116µs; +114001.983µs] or [-9.288%; +9.172%]

scenario:appsec-control-26

  • unstable execution_time [-125151.387µs; +124060.820µs] or [-10.084%; +9.997%]

scenario:appsec-iast-no-vulnerability-control-20

  • unstable execution_time [-13.143ms; +15.844ms] or [-5.109%; +6.159%]

scenario:appsec-iast-no-vulnerability-iast-enabled-default-config-20

  • unstable execution_time [-11.548ms; +17.559ms] or [-4.478%; +6.808%]

scenario:child_process-file-args-24

  • unstable execution_time [-33.330ms; +22.243ms] or [-6.950%; +4.638%]
  • unstable throughput [-94022.347op/s; +130850.094op/s] or [-4.305%; +5.991%]

scenario:debugger-line-probe-with-snapshot-minimal-24

  • unstable cpu_user_time [-2.086s; +4.467s] or [-23.543%; +50.406%]
  • unstable execution_time [-2.173s; +4.582s] or [-22.681%; +47.814%]
  • unstable instructions [-17.6G instructions; +37.9G instructions] or [-24.258%; +52.064%]
  • unstable max_rss_usage [-8.234MB; +18.095MB] or [-5.158%; +11.335%]
  • unstable throughput [-1209.331op/s; +582.728op/s] or [-34.389%; +16.571%]

scenario:debugger-line-probe-without-snapshot-26

  • unstable cpu_user_time [-2582.982ms; +4131.856ms] or [-27.056%; +43.280%]
  • unstable execution_time [-2568.285ms; +4147.753ms] or [-24.993%; +40.363%]
  • unstable instructions [-23.4G instructions; +37.3G instructions] or [-29.386%; +46.899%]
  • unstable max_rss_usage [-8.340MB; +13.950MB] or [-5.257%; +8.793%]
  • unstable throughput [-817.795op/s; +500.869op/s] or [-25.361%; +15.533%]

scenario:dogstatsd-with-tags-20

  • unstable cpu_user_time [-429.182ms; +189.595ms] or [-9.165%; +4.049%]
  • unstable execution_time [-434.591ms; +190.394ms] or [-9.129%; +3.999%]
  • unstable throughput [-68648.649op/s; +153406.775op/s] or [-3.893%; +8.699%]

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

  • unstable max_rss_usage [-35.685MB; +27.572MB] or [-17.503%; +13.524%]

scenario:plugin-graphql-long-with-depth-on-max-20

  • unstable execution_time [-565.602ms; +618.633ms] or [-4.793%; +5.242%]
  • unstable throughput [-3.611op/s; +3.281op/s] or [-5.297%; +4.813%]

scenario:plugin-pg-service-20

  • unstable cpu_usage_percentage [-5.521%; +5.321%]
  • unstable execution_time [-111.474ms; +121.515ms] or [-6.784%; +7.395%]
  • unstable throughput [-214753.520op/s; +199787.804op/s] or [-5.819%; +5.414%]

scenario:plugin-pg-service-26

  • unstable cpu_usage_percentage [-8.335%; +7.092%]
  • unstable execution_time [-106.159ms; +109.910ms] or [-11.587%; +11.997%]
  • unstable throughput [-530912.643op/s; +583791.510op/s] or [-7.939%; +8.730%]

scenario:test-optimization-large-suite-20

  • unstable max_rss_usage [-4531.996KB; +6202.996KB] or [-5.639%; +7.719%]

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-1f22a32be6 branch from fa03230 to 9a04ee5 Compare July 28, 2026 15:43
dd-octo-sts[bot]
dd-octo-sts Bot previously approved these changes Jul 28, 2026
…ss 1 directory with 6 updates

Bumps the dev-minor-and-patch-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.3.5` | `3.3.6` |
| [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) | `6.4.2` | `6.4.3` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `63.0.12` | `63.2.1` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `18.2.1` | `18.2.2` |
| [p-limit](https://github.com/sindresorhus/p-limit) | `7.3.0` | `7.3.1` |
| [sinon](https://github.com/sinonjs/sinon) | `22.0.0` | `22.1.0` |



Updates `@eslint/eslintrc` from 3.3.5 to 3.3.6
- [Release notes](https://github.com/eslint/eslintrc/releases)
- [Changelog](https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md)
- [Commits](eslint/eslintrc@eslintrc-v3.3.5...eslintrc-v3.3.6)

Updates `eslint-plugin-cypress` from 6.4.2 to 6.4.3
- [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases)
- [Commits](cypress-io/eslint-plugin-cypress@v6.4.2...v6.4.3)

Updates `eslint-plugin-jsdoc` from 63.0.12 to 63.2.1
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v63.0.12...v63.2.1)

Updates `eslint-plugin-n` from 18.2.1 to 18.2.2
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v18.2.1...v18.2.2)

Updates `p-limit` from 7.3.0 to 7.3.1
- [Release notes](https://github.com/sindresorhus/p-limit/releases)
- [Commits](sindresorhus/p-limit@v7.3.0...v7.3.1)

Updates `sinon` from 22.0.0 to 22.1.0
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/CHANGES.md)
- [Commits](sinonjs/sinon@v22.0.0...v22.1.0)

---
updated-dependencies:
- dependency-name: "@eslint/eslintrc"
  dependency-version: 3.3.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint-plugin-cypress
  dependency-version: 6.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 63.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: eslint-plugin-n
  dependency-version: 18.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: p-limit
  dependency-version: 7.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-and-patch-dependencies
- dependency-name: sinon
  dependency-version: 22.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-and-patch-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-1f22a32be6 branch from 9a04ee5 to b1d921b Compare July 29, 2026 00:55
dd-octo-sts[bot]
dd-octo-sts Bot previously approved these changes Jul 29, 2026
@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 97.96%. Comparing base (a57a59d) to head (a3b697c).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #9558      +/-   ##
==========================================
- Coverage   98.40%   97.96%   -0.44%     
==========================================
  Files         952      950       -2     
  Lines      130038   129937     -101     
  Branches    11266     9809    -1457     
==========================================
- Hits       127959   127294     -665     
- Misses       2079     2643     +564     
Flag Coverage Δ
aiguard 57.33% <ø> (-0.03%) ⬇️
aiguard-integration 56.20% <ø> (ø)
apm-bucket-0 57.58% <ø> (-0.03%) ⬇️
apm-bucket-1 63.84% <ø> (-0.03%) ⬇️
apm-bucket-2 62.60% <ø> (-0.03%) ⬇️
apm-bucket-3 60.03% <ø> (-0.06%) ⬇️
apm-capabilities-tracing 62.69% <ø> (ø)
apm-integrations-aerospike 56.62% <ø> (-0.03%) ⬇️
apm-integrations-confluentinc-kafka-javascript 61.44% <ø> (-0.06%) ⬇️
apm-integrations-couchbase 57.03% <ø> (-0.03%) ⬇️
apm-integrations-http 62.63% <ø> (-0.03%) ⬇️
apm-integrations-kafkajs ?
apm-integrations-next 59.11% <ø> (-0.03%) ⬇️
apm-integrations-prisma ?
apm-integrations-tedious 57.37% <ø> (?)
appsec 72.63% <ø> (-0.08%) ⬇️
appsec-express_fastify_graphql 70.21% <ø> (-0.02%) ⬇️
appsec-integration ?
appsec-kafka_ldapjs_lodash 63.82% <ø> (-0.02%) ⬇️
appsec-mongodb-core_mongoose_mysql 67.53% <ø> (-0.02%) ⬇️
appsec-next 57.48% <ø> (-0.02%) ⬇️
appsec-node-serialize_passport_postgres 67.21% <ø> (-0.02%) ⬇️
appsec-sourcing_stripe_template 65.56% <ø> (-0.03%) ⬇️
debugger 64.74% <ø> (-0.02%) ⬇️
instrumentations-bucket-0 51.74% <ø> (-0.03%) ⬇️
instrumentations-bucket-1 60.14% <ø> (-0.03%) ⬇️
instrumentations-bucket-10 61.94% <ø> (-0.03%) ⬇️
instrumentations-bucket-11 51.65% <ø> (-0.03%) ⬇️
instrumentations-bucket-12 52.22% <ø> (-0.03%) ⬇️
instrumentations-bucket-13 51.76% <ø> (-0.03%) ⬇️
instrumentations-bucket-2 53.63% <ø> (-0.03%) ⬇️
instrumentations-bucket-3 59.16% <ø> (-0.03%) ⬇️
instrumentations-bucket-4 52.30% <ø> (-0.03%) ⬇️
instrumentations-bucket-5 57.53% <ø> (-0.03%) ⬇️
instrumentations-bucket-6 60.69% <ø> (-0.03%) ⬇️
instrumentations-bucket-7 58.37% <ø> (-0.02%) ⬇️
instrumentations-bucket-8 59.50% <ø> (-0.03%) ⬇️
instrumentations-bucket-9 61.47% <ø> (-0.03%) ⬇️
instrumentations-instrumentation-couchbase 50.99% <ø> (-0.03%) ⬇️
instrumentations-integration-esbuild 34.01% <ø> (ø)
llmobs-ai_anthropic_bedrock 62.82% <ø> (-0.02%) ⬇️
llmobs-bucket-1 61.57% <ø> (-0.02%) ⬇️
llmobs-openai 62.15% <ø> (-0.02%) ⬇️
llmobs-openai-agents_vertex-ai 60.07% <ø> (-0.03%) ⬇️
llmobs-sdk 65.94% <ø> (-0.03%) ⬇️
master-coverage 97.96% <ø> (?)
openfeature 56.06% <ø> (ø)
openfeature-unit 53.36% <ø> (-0.03%) ⬇️
platform-core_esbuild_instrumentations-misc 40.66% <ø> (-0.02%) ⬇️
platform-integration 61.03% <ø> (ø)
platform-shimmer_unit-guardrails_webpack 39.09% <ø> (-0.02%) ⬇️
plugins-bucket-0 57.04% <ø> (-0.03%) ⬇️
plugins-bucket-1 54.32% <ø> (ø)
plugins-bucket-11 61.76% <ø> (-0.45%) ⬇️
plugins-bucket-14 59.17% <ø> (?)
plugins-bucket-17 61.75% <ø> (?)
plugins-bucket-18 58.45% <ø> (-3.46%) ⬇️
plugins-bucket-19 61.68% <ø> (+1.67%) ⬆️
plugins-bucket-20 62.22% <ø> (+0.22%) ⬆️
plugins-bucket-4 58.52% <ø> (-0.03%) ⬇️
plugins-bullmq_cassandra_cookie 61.66% <ø> (-0.03%) ⬇️
plugins-cookie-parser_crypto_dd-trace-api 56.68% <ø> (-0.03%) ⬇️
plugins-fetch_fs_generic-pool 58.74% <ø> (-0.03%) ⬇️
plugins-google-cloud-pubsub_grpc_handlebars 64.57% <ø> (-0.03%) ⬇️
plugins-hapi_hono_ioredis 60.16% <ø> (-0.03%) ⬇️
plugins-jest_knex_langgraph ?
plugins-jest_langgraph_ldapjs 55.53% <ø> (?)
plugins-ldapjs_light-my-request_limitd-client ?
plugins-light-my-request_limitd-client_lodash 58.57% <ø> (?)
plugins-lodash_mariadb_memcached ?
plugins-mariadb_memcached_mercurius 61.60% <ø> (?)
plugins-moleculer_mongodb_mongodb-core ?
plugins-mongodb-core_mongoose_multer 59.26% <ø> (?)
plugins-mongoose_multer_mysql ?
plugins-mysql2_nats_node-serialize ?
plugins-mysql_mysql2_nats 60.88% <ø> (?)
plugins-opensearch_passport-http_pino ?
plugins-pino_postgres_process 58.63% <ø> (?)
plugins-postgres_process_pug ?
plugins-pug_redis_router 62.06% <ø> (?)
plugins-redis_router_sequelize ?
plugins-test-and-upstream-rhea_undici_url ?
plugins-url_valkey_vm 57.44% <ø> (?)
plugins-valkey_vm_winston ?
plugins-winston_ws 59.88% <ø> (?)
plugins-ws ?
profiling 62.06% <ø> (-0.03%) ⬇️
serverless-aws-sdk-aws-sdk 55.07% <ø> (-0.02%) ⬇️
serverless-aws-sdk-base-inject-field 50.93% <ø> (-0.03%) ⬇️
serverless-aws-sdk-bedrockruntime 54.75% <ø> (-0.03%) ⬇️
serverless-aws-sdk-client 56.42% <ø> (-0.03%) ⬇️
serverless-aws-sdk-dynamodb 55.65% <ø> (-0.04%) ⬇️
serverless-aws-sdk-eventbridge 49.42% <ø> (-0.03%) ⬇️
serverless-aws-sdk-kinesis 59.29% <ø> (-0.03%) ⬇️
serverless-aws-sdk-lambda 57.38% <ø> (-0.03%) ⬇️
serverless-aws-sdk-s3 55.74% <ø> (-0.03%) ⬇️
serverless-aws-sdk-serverless-peer-service 59.71% <ø> (-0.03%) ⬇️
serverless-aws-sdk-sns 60.18% <ø> (+0.01%) ⬆️
serverless-aws-sdk-sqs 60.57% <ø> (-0.03%) ⬇️
serverless-aws-sdk-stepfunctions 55.57% <ø> (-0.03%) ⬇️
serverless-aws-sdk-util 51.49% <ø> (-0.03%) ⬇️
serverless-bucket-0 54.19% <ø> (ø)
serverless-bucket-1 59.19% <ø> (-0.03%) ⬇️
test-optimization-cucumber 64.56% <ø> (-7.42%) ⬇️
test-optimization-cypress 65.78% <ø> (+0.07%) ⬆️
test-optimization-jest 73.21% <ø> (-0.06%) ⬇️
test-optimization-mocha 73.08% <ø> (-0.07%) ⬇️
test-optimization-playwright-playwright-atr 60.50% <ø> (-0.02%) ⬇️
test-optimization-playwright-playwright-efd 60.69% <ø> (-0.02%) ⬇️
test-optimization-playwright-playwright-final-status 60.80% <ø> (-0.02%) ⬇️
test-optimization-playwright-playwright-impacted-tests 60.38% <ø> (+0.14%) ⬆️
test-optimization-playwright-playwright-reporting 61.61% <ø> (-0.13%) ⬇️
test-optimization-playwright-playwright-test-management 60.86% <ø> (-0.45%) ⬇️
test-optimization-playwright-playwright-test-span 60.59% <ø> (-0.09%) ⬇️
test-optimization-selenium 60.07% <ø> (-0.17%) ⬇️
test-optimization-testopt 58.10% <ø> (-0.37%) ⬇️
test-optimization-vitest 70.30% <ø> (-0.01%) ⬇️
test-optimization-webdriverio 57.19% <ø> (+0.09%) ⬆️

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 Aug 5, 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 Aug 5, 2026
auto-merge was automatically disabled August 5, 2026 00:56

Pull request was closed

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/dev-minor-and-patch-dependencies-1f22a32be6 branch August 5, 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