Skip to content

test: add shared plugin version resolver#9021

Merged
BridgeAR merged 1 commit into
BridgeAR/2026-06-22-install-concurrency-helperfrom
BridgeAR/2026-06-22-plugin-version-resolver
Jun 24, 2026
Merged

test: add shared plugin version resolver#9021
BridgeAR merged 1 commit into
BridgeAR/2026-06-22-install-concurrency-helperfrom
BridgeAR/2026-06-22-plugin-version-resolver

Conversation

@BridgeAR

@BridgeAR BridgeAR commented Jun 22, 2026

Copy link
Copy Markdown
Member

Summary

withVersions() and the install script each expand a module's declared version ranges into the set of versions/<name>@<key> folders to test/install, and the two computations drifted — a folder could be installed but never tested, or vice versa. This adds one resolvePluginVersions/getVersionList both consume.

Per declared range it pins the lowest supported version exactly and adds the newest of every major the range spans, keyed by the bare major, so the floor major's latest is tested too (a raw-range key resolves only to the newest of the whole range). * collapses to the latest major — the same version an open range resolves to — and an empty or unparseable entry throws. Folder keys become mongodb@3 rather than mongodb@>=3.0.0 <4.0.0.

The pinned versions/package.json is the hard upper bound: nothing installs beyond it, the top major is derived from it, and a floor that equals the pinned latest drops the now-redundant top-major key (the one redundancy the pin lets us prove — for lower majors the newest published version is unknown without a registry lookup, so both the floor and the bare major are kept).

The module is unused until the wire-up PR; it ships with its unit spec here.

Stacked on #9019 for a clean stack into the wire-up; no functional dependency on it.

@dd-octo-sts

dd-octo-sts Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

Overall package size

Self size: 6.28 MB
Deduped: 7.35 MB
No deduping: 7.35 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 3.2.0 | 104.26 kB | 843.44 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

@pr-commenter

pr-commenter Bot commented Jun 22, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-06-22 23:42:39

Comparing candidate commit 53bd8bc in PR branch BridgeAR/2026-06-22-plugin-version-resolver with baseline commit 54c1fd2 in branch BridgeAR/2026-06-22-install-concurrency-helper.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 1950 metrics, 15 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 [-164.168ms; +168.666ms] or [-6.261%; +6.432%]

scenario:appsec-appsec-enabled-26

  • unstable execution_time [-174541.246µs; +174990.680µs] or [-7.016%; +7.035%]

scenario:appsec-control-20

  • unstable execution_time [-115.148ms; +149.249ms] or [-6.717%; +8.706%]

scenario:appsec-control-24

  • unstable execution_time [-92485.574µs; +91857.074µs] or [-7.712%; +7.659%]

scenario:appsec-control-26

  • unstable execution_time [-94.106ms; +97.610ms] or [-7.966%; +8.262%]

scenario:debugger-line-probe-with-snapshot-default-20

  • unstable max_rss_usage [-6.000MB; +14.279MB] or [-3.300%; +7.853%]

scenario:dogstatsd-with-tags-20

  • unstable cpu_user_time [-236.147ms; +454.757ms] or [-5.037%; +9.700%]
  • unstable execution_time [-236.947ms; +451.569ms] or [-4.972%; +9.476%]

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

  • unstable cpu_user_time [-260.093ms; +358.351ms] or [-5.668%; +7.809%]
  • unstable execution_time [-278.051ms; +382.999ms] or [-5.690%; +7.838%]
  • unstable max_rss_usage [-29.211MB; +40.295MB] or [-5.210%; +7.186%]

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

  • unstable max_rss_usage [-12774.131KB; +13540.417KB] or [-8.989%; +9.529%]

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

  • unstable max_rss_usage [-15.024MB; +24.305MB] or [-9.193%; +14.871%]

scenario:spans-finish-later-26

  • unstable max_rss_usage [-20.088MB; +9.844MB] or [-10.620%; +5.204%]

scenario:test-optimization-large-suite-20

  • unstable max_rss_usage [-6299.184KB; +6480.851KB] or [-7.599%; +7.818%]

@codecov

codecov Bot commented Jun 22, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.44%. Comparing base (54c1fd2) to head (53bd8bc).
⚠️ Report is 2 commits behind head on BridgeAR/2026-06-22-install-concurrency-helper.

Additional details and impacted files
@@                                Coverage Diff                                 @@
##           BridgeAR/2026-06-22-install-concurrency-helper    #9021      +/-   ##
==================================================================================
+ Coverage                                           92.80%   93.44%   +0.64%     
==================================================================================
  Files                                                 879      879              
  Lines                                               50450    50450              
  Branches                                             9931     9931              
==================================================================================
+ Hits                                                46818    47142     +324     
+ Misses                                               3632     3308     -324     
Flag Coverage Δ
aiguard-integration-active 41.63% <ø> (?)
aiguard-integration-latest 41.52% <ø> (-0.13%) ⬇️
aiguard-integration-maintenance 41.72% <ø> (?)
aiguard-macos 34.48% <ø> (ø)
aiguard-ubuntu 34.63% <ø> (ø)
aiguard-windows 34.31% <ø> (ø)
apm-capabilities-tracing-macos 48.16% <ø> (ø)
apm-capabilities-tracing-ubuntu-active 48.15% <ø> (-0.01%) ⬇️
apm-capabilities-tracing-ubuntu-latest 48.15% <ø> (-0.18%) ⬇️
apm-capabilities-tracing-ubuntu-maintenance 48.20% <ø> (-0.18%) ⬇️
apm-capabilities-tracing-ubuntu-oldest 48.38% <ø> (ø)
apm-capabilities-tracing-windows 48.15% <ø> (ø)
apm-integrations-aerospike-18-gte.5.2.0 33.01% <ø> (ø)
apm-integrations-aerospike-20-gte.5.5.0 33.03% <ø> (ø)
apm-integrations-aerospike-22-gte.5.12.1 33.03% <ø> (ø)
apm-integrations-aerospike-22-gte.6.0.0 33.03% <ø> (ø)
apm-integrations-aerospike-eol- 32.94% <ø> (ø)
apm-integrations-child-process 33.94% <ø> (ø)
apm-integrations-confluentinc-kafka-javascript-18 39.95% <ø> (ø)
apm-integrations-confluentinc-kafka-javascript-20 39.97% <ø> (ø)
apm-integrations-confluentinc-kafka-javascript-22 39.97% <ø> (ø)
apm-integrations-confluentinc-kafka-javascript-24 39.87% <ø> (ø)
apm-integrations-couchbase-18 33.19% <ø> (ø)
apm-integrations-couchbase-eol 33.07% <ø> (ø)
apm-integrations-dns 32.87% <ø> (ø)
apm-integrations-elasticsearch 34.04% <ø> (ø)
apm-integrations-http-latest 41.74% <ø> (ø)
apm-integrations-http-maintenance 41.83% <ø> (ø)
apm-integrations-http-oldest 41.76% <ø> (ø)
apm-integrations-http2 38.98% <ø> (?)
apm-integrations-kafkajs-latest 40.01% <ø> (-0.11%) ⬇️
apm-integrations-kafkajs-oldest 40.19% <ø> (-0.01%) ⬇️
apm-integrations-net 33.56% <ø> (ø)
apm-integrations-next-11.1.4 36.52% <ø> (ø)
apm-integrations-next-12.3.7 36.52% <ø> (ø)
apm-integrations-next-13.0.0 29.00% <ø> (ø)
apm-integrations-next-13.2.0 29.00% <ø> (-0.04%) ⬇️
apm-integrations-next-13.5.11 29.14% <ø> (-0.04%) ⬇️
apm-integrations-next-14.0.0 29.06% <ø> (ø)
apm-integrations-next-14.2.35 29.06% <ø> (ø)
apm-integrations-next-14.2.6 29.06% <ø> (ø)
apm-integrations-next-14.2.7 29.06% <ø> (ø)
apm-integrations-next-15.0.0 29.06% <ø> (ø)
apm-integrations-next-15.4.0 29.14% <ø> (ø)
apm-integrations-next-latest 29.17% <ø> (?)
apm-integrations-oracledb 33.88% <ø> (ø)
apm-integrations-prisma-18-gte.6.16.0.and.lt.7.0.0 34.72% <ø> (ø)
apm-integrations-prisma-latest-all 34.17% <ø> (ø)
apm-integrations-restify 35.12% <ø> (ø)
apm-integrations-sharedb 32.37% <ø> (ø)
apm-integrations-tedious 33.30% <ø> (ø)
appsec-express 50.87% <ø> (+0.01%) ⬆️
appsec-fastify 47.66% <ø> (ø)
appsec-graphql 47.70% <ø> (-0.01%) ⬇️
appsec-integration-active 36.04% <ø> (ø)
appsec-integration-latest 36.04% <ø> (ø)
appsec-integration-maintenance 36.10% <ø> (ø)
appsec-integration-oldest 36.09% <ø> (ø)
appsec-kafka 40.21% <ø> (ø)
appsec-ldapjs 39.76% <ø> (ø)
appsec-lodash 39.67% <ø> (ø)
appsec-macos 57.03% <ø> (+0.07%) ⬆️
appsec-mongodb-core 43.84% <ø> (ø)
appsec-mongoose 44.69% <ø> (-0.02%) ⬇️
appsec-mysql 46.92% <ø> (?)
appsec-next-latest-11.1.4 27.30% <ø> (ø)
appsec-next-latest-12.3.7 27.15% <ø> (ø)
appsec-next-latest-13.0.0 29.08% <ø> (ø)
appsec-next-latest-13.2.0 29.11% <ø> (ø)
appsec-next-latest-13.5.11 29.20% <ø> (ø)
appsec-next-latest-14.0.0 29.12% <ø> (ø)
appsec-next-latest-14.2.35 29.12% <ø> (ø)
appsec-next-latest-14.2.6 29.12% <ø> (ø)
appsec-next-latest-14.2.7 29.12% <ø> (ø)
appsec-next-latest-15.0.0 29.12% <ø> (ø)
appsec-next-latest-latest 29.16% <ø> (ø)
appsec-next-oldest-11.1.4 27.34% <ø> (ø)
appsec-next-oldest-12.3.7 29.14% <ø> (ø)
appsec-next-oldest-13.0.0 29.14% <ø> (ø)
appsec-next-oldest-13.2.0 29.40% <ø> (ø)
appsec-next-oldest-13.5.11 29.50% <ø> (ø)
appsec-next-oldest-14.0.0 29.43% <ø> (ø)
appsec-next-oldest-14.2.35 29.43% <ø> (ø)
appsec-next-oldest-14.2.6 29.43% <ø> (ø)
appsec-next-oldest-14.2.7 29.43% <ø> (ø)
appsec-next-oldest-15.0.0 29.43% <ø> (ø)
appsec-next-oldest-latest 27.34% <ø> (ø)
appsec-node-serialize 38.99% <ø> (ø)
appsec-passport 42.60% <ø> (ø)
appsec-postgres 46.65% <ø> (ø)
appsec-sourcing 38.42% <ø> (ø)
appsec-stripe 40.46% <ø> (-0.01%) ⬇️
appsec-template 39.25% <ø> (ø)
appsec-ubuntu 57.07% <ø> (ø)
appsec-windows 56.87% <ø> (+0.05%) ⬆️
debugger-ubuntu-active 43.36% <ø> (ø)
debugger-ubuntu-latest 43.36% <ø> (ø)
debugger-ubuntu-maintenance 43.49% <ø> (ø)
debugger-ubuntu-oldest 43.79% <ø> (ø)
instrumentations-instrumentation-ai 45.15% <ø> (ø)
instrumentations-instrumentation-aws-sdk 44.75% <ø> (ø)
instrumentations-instrumentation-bluebird 27.51% <ø> (ø)
instrumentations-instrumentation-body-parser 35.58% <ø> (ø)
instrumentations-instrumentation-child_process 33.24% <ø> (ø)
instrumentations-instrumentation-connect 48.04% <ø> (ø)
instrumentations-instrumentation-cookie-parser 29.43% <ø> (ø)
instrumentations-instrumentation-couchbase-18 45.83% <ø> (ø)
instrumentations-instrumentation-couchbase-eol 45.83% <ø> (ø)
instrumentations-instrumentation-crypto 27.48% <ø> (ø)
instrumentations-instrumentation-express 29.63% <ø> (ø)
instrumentations-instrumentation-express-mongo-sanitize 29.54% <ø> (ø)
instrumentations-instrumentation-express-multi-version 41.47% <ø> (ø)
instrumentations-instrumentation-express-session 35.40% <ø> (ø)
instrumentations-instrumentation-fastify 48.04% <ø> (ø)
instrumentations-instrumentation-fetch 44.76% <ø> (ø)
instrumentations-instrumentation-fs 27.19% <ø> (ø)
instrumentations-instrumentation-generic-pool 27.33% <ø> (ø)
instrumentations-instrumentation-hono 28.73% <ø> (ø)
instrumentations-instrumentation-http 37.83% <ø> (ø)
instrumentations-instrumentation-http-client-options 37.44% <ø> (ø)
instrumentations-instrumentation-kafkajs 48.75% <ø> (ø)
instrumentations-instrumentation-knex 27.50% <ø> (ø)
instrumentations-instrumentation-koa 45.71% <ø> (ø)
instrumentations-instrumentation-light-my-request 35.22% <ø> (ø)
instrumentations-instrumentation-mongoose 28.62% <ø> (ø)
instrumentations-instrumentation-multer 35.25% <ø> (ø)
instrumentations-instrumentation-mysql2 33.36% <ø> (ø)
instrumentations-instrumentation-openai-lifecycle 45.82% <ø> (ø)
instrumentations-instrumentation-otel-sdk-trace 25.34% <ø> (ø)
instrumentations-instrumentation-passport 39.14% <ø> (ø)
instrumentations-instrumentation-passport-http 38.84% <ø> (ø)
instrumentations-instrumentation-passport-local 39.29% <ø> (ø)
instrumentations-instrumentation-pg 33.08% <ø> (ø)
instrumentations-instrumentation-promise 27.46% <ø> (ø)
instrumentations-instrumentation-promise-js 27.46% <ø> (ø)
instrumentations-instrumentation-q 27.49% <ø> (ø)
instrumentations-instrumentation-restify 47.30% <ø> (ø)
instrumentations-instrumentation-router 43.37% <ø> (ø)
instrumentations-instrumentation-stripe 28.01% <ø> (ø)
instrumentations-instrumentation-url 27.31% <ø> (ø)
instrumentations-instrumentation-when 27.47% <ø> (ø)
instrumentations-instrumentation-zlib 27.36% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-active 24.68% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-latest 24.68% <ø> (?)
instrumentations-integration-esbuild-0.16.12-maintenance 18.69% <ø> (ø)
instrumentations-integration-esbuild-0.16.12-oldest 18.68% <ø> (ø)
instrumentations-integration-esbuild-latest-active 24.68% <ø> (ø)
instrumentations-integration-esbuild-latest-latest 24.68% <ø> (ø)
instrumentations-integration-esbuild-latest-maintenance 18.69% <ø> (ø)
instrumentations-integration-esbuild-latest-oldest 18.68% <ø> (ø)
llmobs-ai 35.06% <ø> (ø)
llmobs-anthropic 36.46% <ø> (ø)
llmobs-bedrock 35.98% <ø> (ø)
llmobs-google-genai 35.89% <ø> (ø)
llmobs-langchain 35.43% <ø> (ø)
llmobs-openai-latest 39.37% <ø> (ø)
llmobs-openai-oldest ?
llmobs-sdk-active 43.25% <ø> (?)
llmobs-sdk-latest 43.25% <ø> (ø)
llmobs-sdk-maintenance 43.35% <ø> (ø)
llmobs-sdk-oldest 43.34% <ø> (ø)
llmobs-vertex-ai 35.56% <ø> (ø)
master-coverage ?
openfeature-macos 37.41% <ø> (ø)
openfeature-ubuntu 37.55% <ø> (ø)
openfeature-unit-active 49.95% <ø> (ø)
openfeature-unit-latest 49.95% <ø> (ø)
openfeature-unit-maintenance 50.32% <ø> (ø)
openfeature-unit-oldest 50.32% <ø> (ø)
openfeature-windows 37.28% <ø> (-0.01%) ⬇️
platform-core 45.98% <ø> (ø)
platform-esbuild 47.00% <ø> (ø)
platform-instrumentations-misc 29.36% <ø> (ø)
platform-integration-active 46.93% <ø> (-0.05%) ⬇️
platform-integration-latest 46.98% <ø> (ø)
platform-integration-maintenance 47.08% <ø> (ø)
platform-integration-oldest 47.22% <ø> (ø)
platform-shimmer 47.05% <ø> (ø)
platform-unit-guardrails 44.04% <ø> (ø)
platform-webpack 18.22% <ø> (ø)
plugins-aws-durable-execution-sdk-js 32.77% <ø> (ø)
plugins-axios 35.37% <ø> (ø)
plugins-azure-cosmos 35.86% <ø> (?)
plugins-azure-event-hubs 34.67% <ø> (ø)
plugins-azure-service-bus 35.18% <ø> (ø)
plugins-body-parser 36.36% <ø> (-0.13%) ⬇️
plugins-bullmq 39.35% <ø> (ø)
plugins-cassandra 33.51% <ø> (-0.16%) ⬇️
plugins-cookie 40.47% <ø> (ø)
plugins-cookie-parser 40.30% <ø> (ø)
plugins-crypto 42.36% <ø> (ø)
plugins-dd-trace-api 33.10% <ø> (ø)
plugins-express-mongo-sanitize 40.35% <ø> (ø)
plugins-express-session 40.22% <ø> (ø)
plugins-fastify 37.71% <ø> (ø)
plugins-fetch 34.44% <ø> (ø)
plugins-fs 33.52% <ø> (ø)
plugins-generic-pool 39.79% <ø> (ø)
plugins-google-cloud-pubsub 41.25% <ø> (ø)
plugins-grpc 36.39% <ø> (ø)
plugins-handlebars 40.35% <ø> (ø)
plugins-hapi 35.47% <ø> (ø)
plugins-hono 35.80% <ø> (ø)
plugins-ioredis 34.16% <ø> (ø)
plugins-jest 26.98% <ø> (ø)
plugins-knex 39.83% <ø> (ø)
plugins-langgraph 32.22% <ø> (ø)
plugins-ldapjs 38.81% <ø> (ø)
plugins-light-my-request 39.93% <ø> (ø)
plugins-limitd-client 27.88% <ø> (?)
plugins-lodash 39.97% <ø> (ø)
plugins-mariadb 35.00% <ø> (ø)
plugins-memcached 33.54% <ø> (ø)
plugins-microgateway-core 34.63% <ø> (ø)
plugins-modelcontextprotocol-sdk 32.18% <ø> (ø)
plugins-moleculer 36.45% <ø> (ø)
plugins-mongodb 35.65% <ø> (-0.09%) ⬇️
plugins-mongodb-core 35.27% <ø> (ø)
plugins-mongoose 34.25% <ø> (ø)
plugins-multer 40.27% <ø> (ø)
plugins-mysql 34.47% <ø> (+<0.01%) ⬆️
plugins-mysql2 34.80% <ø> (ø)
plugins-nats 36.16% <ø> (ø)
plugins-node-serialize 40.49% <ø> (ø)
plugins-opensearch 33.45% <ø> (ø)
plugins-passport-http 40.09% <ø> (ø)
plugins-pino 29.73% <ø> (ø)
plugins-postgres 34.51% <ø> (ø)
plugins-process 42.36% <ø> (ø)
plugins-pug 40.47% <ø> (ø)
plugins-redis 34.12% <ø> (-0.07%) ⬇️
plugins-router 37.91% <ø> (-0.16%) ⬇️
plugins-sequelize 39.75% <ø> (ø)
plugins-test-and-upstream-amqp10 33.69% <ø> (?)
plugins-test-and-upstream-amqplib 38.83% <ø> (ø)
plugins-test-and-upstream-apollo 34.71% <ø> (ø)
plugins-test-and-upstream-avsc 33.57% <ø> (ø)
plugins-test-and-upstream-bunyan 28.94% <ø> (ø)
plugins-test-and-upstream-connect 36.19% <ø> (?)
plugins-test-and-upstream-graphql 35.86% <ø> (ø)
plugins-test-and-upstream-koa 35.75% <ø> (ø)
plugins-test-and-upstream-protobufjs 33.81% <ø> (ø)
plugins-test-and-upstream-rhea 38.95% <ø> (ø)
plugins-undici 34.87% <ø> (ø)
plugins-url 42.36% <ø> (ø)
plugins-valkey 33.65% <ø> (+0.14%) ⬆️
plugins-vm 42.36% <ø> (ø)
plugins-winston 29.62% <ø> (-0.22%) ⬇️
plugins-ws 36.93% <ø> (ø)
profiling-macos 42.88% <ø> (ø)
profiling-ubuntu 43.31% <ø> (ø)
profiling-windows 40.75% <ø> (-0.02%) ⬇️
serverless-aws-sdk-latest-aws-sdk 33.00% <ø> (ø)
serverless-aws-sdk-latest-bedrockruntime 31.86% <ø> (ø)
serverless-aws-sdk-latest-client 36.20% <ø> (ø)
serverless-aws-sdk-latest-dynamodb 33.86% <ø> (+0.05%) ⬆️
serverless-aws-sdk-latest-eventbridge 26.95% <ø> (ø)
serverless-aws-sdk-latest-kinesis 37.04% <ø> (ø)
serverless-aws-sdk-latest-lambda 34.27% <ø> (ø)
serverless-aws-sdk-latest-s3 32.24% <ø> (ø)
serverless-aws-sdk-latest-serverless-peer-service 39.17% <ø> (ø)
serverless-aws-sdk-latest-sns 38.04% <ø> (ø)
serverless-aws-sdk-latest-sqs 37.67% <ø> (ø)
serverless-aws-sdk-latest-stepfunctions 32.86% <ø> (ø)
serverless-aws-sdk-latest-util 46.39% <ø> (?)
serverless-aws-sdk-oldest-aws-sdk 33.12% <ø> (ø)
serverless-aws-sdk-oldest-bedrockruntime 31.95% <ø> (ø)
serverless-aws-sdk-oldest-client 36.76% <ø> (ø)
serverless-aws-sdk-oldest-dynamodb 33.96% <ø> (-0.03%) ⬇️
serverless-aws-sdk-oldest-eventbridge 27.03% <ø> (ø)
serverless-aws-sdk-oldest-kinesis 37.21% <ø> (ø)
serverless-aws-sdk-oldest-lambda 34.37% <ø> (ø)
serverless-aws-sdk-oldest-s3 32.38% <ø> (ø)
serverless-aws-sdk-oldest-serverless-peer-service 39.26% <ø> (ø)
serverless-aws-sdk-oldest-sns 38.14% <ø> (ø)
serverless-aws-sdk-oldest-sqs 37.74% <ø> (ø)
serverless-aws-sdk-oldest-stepfunctions 32.96% <ø> (ø)
serverless-aws-sdk-oldest-util 47.13% <ø> (ø)
serverless-azure-durable-functions 36.65% <ø> (ø)
serverless-azure-functions-eventhubs ?
serverless-azure-functions-servicebus 38.30% <ø> (ø)
serverless-lambda 34.11% <ø> (ø)
test-optimization-cucumber-latest-7.0.0 49.70% <ø> (ø)
test-optimization-cucumber-latest-latest 52.41% <ø> (ø)
test-optimization-cucumber-oldest-7.0.0 49.79% <ø> (ø)
test-optimization-cypress-latest-12.0.0-commonJS 48.40% <ø> (-0.63%) ⬇️
test-optimization-cypress-latest-12.0.0-esm 49.06% <ø> (+0.13%) ⬆️
test-optimization-cypress-latest-14.5.4-commonJS 48.88% <ø> (ø)
test-optimization-cypress-latest-14.5.4-esm 48.91% <ø> (ø)
test-optimization-cypress-latest-latest-commonJS 49.36% <ø> (ø)
test-optimization-cypress-latest-latest-esm 48.77% <ø> (-0.49%) ⬇️
test-optimization-cypress-oldest-12.0.0-commonJS 49.11% <ø> (ø)
test-optimization-cypress-oldest-12.0.0-esm 49.14% <ø> (ø)
test-optimization-cypress-oldest-14.5.4-commonJS 48.96% <ø> (+0.61%) ⬆️
test-optimization-cypress-oldest-14.5.4-esm 47.27% <ø> (-1.72%) ⬇️
test-optimization-jest-latest-latest 55.12% <ø> (+2.47%) ⬆️
test-optimization-jest-latest-oldest 54.06% <ø> (ø)
test-optimization-jest-oldest-latest 55.17% <ø> (ø)
test-optimization-jest-oldest-oldest 54.07% <ø> (ø)
test-optimization-mocha-latest-latest 53.38% <ø> (ø)
test-optimization-mocha-latest-oldest 50.95% <ø> (ø)
test-optimization-mocha-oldest-latest 53.48% <ø> (-0.03%) ⬇️
test-optimization-mocha-oldest-oldest 50.96% <ø> (+0.02%) ⬆️
test-optimization-playwright-latest-latest-playwright-active-test-span 43.97% <ø> (?)
test-optimization-playwright-latest-latest-playwright-atr 42.82% <ø> (ø)
test-optimization-playwright-latest-latest-playwright-efd 43.24% <ø> (ø)
test-optimization-playwright-latest-latest-playwright-final-status 43.28% <ø> (-0.03%) ⬇️
test-optimization-playwright-latest-latest-playwright-impacted-tests 42.77% <ø> (ø)
test-optimization-playwright-latest-latest-playwright-reporting 42.86% <ø> (ø)
test-optimization-playwright-latest-latest-playwright-test-management 44.29% <ø> (-0.03%) ⬇️
test-optimization-playwright-latest-oldest-playwright-active-test-span 43.93% <ø> (-0.05%) ⬇️
test-optimization-playwright-latest-oldest-playwright-atr 42.88% <ø> (ø)
test-optimization-playwright-latest-oldest-playwright-efd 43.17% <ø> (ø)
test-optimization-playwright-latest-oldest-playwright-final-status 43.24% <ø> (+0.02%) ⬆️
test-optimization-playwright-latest-oldest-playwright-impacted-tests 42.70% <ø> (ø)
test-optimization-playwright-latest-oldest-playwright-reporting 42.65% <ø> (ø)
test-optimization-playwright-latest-oldest-playwright-test-management 44.26% <ø> (+0.02%) ⬆️
test-optimization-playwright-oldest-latest-playwright-active-test-span 44.19% <ø> (-0.05%) ⬇️
test-optimization-playwright-oldest-latest-playwright-atr 42.90% <ø> (ø)
test-optimization-playwright-oldest-latest-playwright-efd 43.29% <ø> (?)
test-optimization-playwright-oldest-latest-playwright-final-status 43.36% <ø> (-0.03%) ⬇️
test-optimization-playwright-oldest-latest-playwright-impacted-tests 42.85% <ø> (ø)
test-optimization-playwright-oldest-latest-playwright-reporting 42.91% <ø> (ø)
test-optimization-playwright-oldest-latest-playwright-test-management 44.37% <ø> (ø)
test-optimization-playwright-oldest-oldest-playwright-active-test-span 44.01% <ø> (-0.05%) ⬇️
test-optimization-playwright-oldest-oldest-playwright-atr 42.96% <ø> (?)
test-optimization-playwright-oldest-oldest-playwright-efd 43.23% <ø> (ø)
test-optimization-playwright-oldest-oldest-playwright-final-status 43.30% <ø> (-0.03%) ⬇️
test-optimization-playwright-oldest-oldest-playwright-impacted-tests 42.78% <ø> (ø)
test-optimization-playwright-oldest-oldest-playwright-reporting 42.71% <ø> (ø)
test-optimization-playwright-oldest-oldest-playwright-test-management ?
test-optimization-selenium-latest 45.14% <ø> (ø)
test-optimization-selenium-oldest 44.98% <ø> (+0.26%) ⬆️
test-optimization-testopt-active 48.15% <ø> (ø)
test-optimization-testopt-latest 48.15% <ø> (ø)
test-optimization-testopt-maintenance ?
test-optimization-testopt-oldest 49.22% <ø> (ø)
test-optimization-vitest-latest 50.61% <ø> (+0.02%) ⬆️
test-optimization-vitest-oldest 47.96% <ø> (+0.02%) ⬆️

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.

@BridgeAR BridgeAR force-pushed the BridgeAR/2026-06-22-plugin-version-resolver branch from 248c760 to 2395811 Compare June 22, 2026 20:21
@datadog-official

datadog-official Bot commented Jun 22, 2026

Copy link
Copy Markdown

Pipelines  Tests

Fix all issues with BitsAI

⚠️ Warnings

🚦 1 Pipeline job failed

DataDog/apm-reliability/dd-trace-js | create-multiarch-lib-injection-image   View in Datadog   GitLab

ℹ️ 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: 53bd8bc | Docs | Datadog PR Page | Give us feedback!

@BridgeAR BridgeAR force-pushed the BridgeAR/2026-06-22-plugin-version-resolver branch from 2395811 to 807757b Compare June 22, 2026 20:57
withVersions() and the install script each expand a module's declared versions
into the set of folders to test/install, and the two computations drifted, so a
folder could be installed but never tested (or the reverse). This adds a single
resolvePluginVersions/getVersionList that both consume: per declared range it
pins the lowest supported version exactly and adds the newest of every major the
range spans, keyed by the bare major. Covering each major (not the raw range,
which only resolves to the newest of the whole range) makes sure the floor
major's latest is tested too. `*` collapses to the latest major, and an empty or
unparseable entry throws instead of being skipped.
@BridgeAR BridgeAR force-pushed the BridgeAR/2026-06-22-plugin-version-resolver branch from 807757b to 53bd8bc Compare June 22, 2026 23:30
@BridgeAR BridgeAR marked this pull request as ready for review June 24, 2026 18:15
@BridgeAR BridgeAR requested a review from a team as a code owner June 24, 2026 18:15
@BridgeAR BridgeAR requested review from tlhunter and removed request for a team June 24, 2026 18:15
@BridgeAR BridgeAR merged commit 3e4e731 into BridgeAR/2026-06-22-install-concurrency-helper Jun 24, 2026
799 of 801 checks passed
@BridgeAR BridgeAR deleted the BridgeAR/2026-06-22-plugin-version-resolver branch June 24, 2026 18:15

@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: 53bd8bc1cd

ℹ️ 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 on lines +114 to +115
for (let major = floor.major; major <= topMajor; major++) {
if (intersects(`>=${major}.0.0 <${major + 1}.0.0`, range)) add(String(major), range)

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Keep top-major keys inside bounded ranges

For declared ranges whose upper bound falls inside a major, this loop still emits the bare major key for that top major. For example, the existing pino hook range >=5 <6.8.0 in packages/datadog-instrumentations/src/pino.js would produce pino@6, which resolves to the latest 6.x and can be >=6.8.0, so the install/test set no longer covers the newest version below 6.8 and instead points at a version belonging to the next hook range. The same pattern exists for other sub-major ranges such as grpc and express, so the resolver needs to preserve a bounded range key (or otherwise cap the dependency) when the major is only partially included.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant