Skip to content

chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 11 updates#1660

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-38c3268256
Closed

chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 11 updates#1660
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-38c3268256

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
@opentelemetry/instrumentation 0.219.0 0.220.0
@opentelemetry/sdk-node 0.219.0 0.220.0
@cloudflare/vitest-pool-workers 0.16.20 0.18.4
next 16.2.9 16.2.10
@opentelemetry/auto-instrumentations-node 0.77.0 0.78.0
@opentelemetry/exporter-trace-otlp-http 0.219.0 0.220.0
@opentelemetry/instrumentation-express 0.67.0 0.68.0
@opentelemetry/instrumentation-http 0.219.0 0.220.0
@opentelemetry/instrumentation-nestjs-core 0.65.0 0.66.0
@opentelemetry/api-logs 0.219.0 0.220.0
@opentelemetry/sdk-logs 0.219.0 0.220.0

Updates @opentelemetry/instrumentation from 0.219.0 to 0.220.0

Release notes

Sourced from @​opentelemetry/instrumentation's releases.

experimental/v0.220.0

0.220.0

💥 Breaking Changes

  • refactor(sdk-logs)!: refactor BatchLogRecordProcessor constructor signature #6817 @​trentm
    • (user-facing): BatchLogRecordProcessor now takes a single options object with all possible properties, instead of two separate arguments. For example, before new BatchLogRecordProcessor(exporter, { maxQueueSize: 1000 }), after new BatchLogRecordProcessor({ exporter, maxQueueSize: 1000 }).
    • interface BufferConfig -> interface BatchLogRecordProcessorOptions, and now includes the exporter property
    • interface BatchLogRecordProcessorBrowserConfig -> interface BatchLogRecordProcessorBrowserOptions
    • (user-facing): SimpleLogRecordProcessor now takes a single options object with all possible properties. For example, before new SimpleLogRecordProcessor(exporter), after new SimpleLogRecordProcessor({ exporter }). #6836
  • refactor(configuration)!: change config file parsing to not add default values, nor merge *_list fields #6765 @​trentm
  • docs(shim-opencensus): Notice: The @opentracing/shim-opencensus package will be removed in SDK 3.x, planned for approximately September 2026.
    • The OpenCensus and OpenTracing compatibility requirements in the OpenTelemetry specification have been deprecated.
  • chore(sdk-node)!: Drop support for deprecated OpenCensusMetricProducer from declarative config

🚀 Features

  • feat(configuration): bump config schema to v1.1.0; rename without_scope_infoscope_info_enabled and without_target_info/developmenttarget_info_enabled/development on the Prometheus pull exporter (semantics inverted), rename with_resource_constant_labelsresource_constant_labels. Validate file_format per the configuration versioning spec: accept any minor version of major 1 (e.g. 1.0, 1.1), warn when the minor version is newer than supported, and reject other major versions. #6781 @​MikeGoldsmith
  • feat(sdk-node): wire up id_generator from declarative config #6782 @​MikeGoldsmith
  • feat(sdk-node): wire up tracer_provider.sampler from declarative config (always_on, always_off, trace_id_ratio_based, parent_based); unrecognized variants warn and fall back to ParentBased(AlwaysOn) #6506 @​MikeGoldsmith
  • feat(propagator-env-carrier): empty name normalization #6827 @​pellared
  • feat(propagator-env-carrier): make EnvironmentGetter read the current process.env #6853 @​pellared

🐛 Bug Fixes

  • fix(sdk-logs): stop Logger.emit() doing work (record construction, metrics, processor onEmit) after the LoggerProvider has shut down #6826 @​anneheartrecord
  • fix(sdk-node): pass all config properties (endpoint, headers, timeout, TLS, compression, temporality preference, default histogram aggregation) to OTLP metric exporters in declarative config #6814 @​MikeGoldsmith
  • fix(sdk-logs): default BatchLogRecordProcessor scheduleDelayMillis is 1000 #6796 @​trentm
  • fix(configuration): percent-decode keys and values in resource.attributes_list per spec #6787 @​MikeGoldsmith
  • fix(configuration): default log_level to info in env-based config initialization for consistency with file-based config #6788 @​MikeGoldsmith
  • fix(sdk-node): fail-fast on LoggerProvider creation with startNodeSDK() and declarative config #6785 @​trentm

📚 Documentation

  • docs(configuration): link the configuration README to the cross-SDK declarative config language support status doc #6809 @​MikeGoldsmith

🏠 Internal

  • chore(sdk-node): migrate to use the new sdk-trace package #6828 @​trentm
    • The node re-export of @opentelemetry/sdk-trace-node and tracing re-export of @opentelemetry/sdk-trace-base have been deprecated. (Historically the @opentelemetry/sdk-node package has re-exported from a number of core packages. It is now recommended that users directly import from those other packages.)
  • chore(*): migrate use of sdk-trace-base and sdk-trace-node to sdk-trace #6851 @​trentm
  • fix(instrumentation,instrumentation-http): fix codecov coverage under-reporting by merging coverage across CJS/ESM test runs #6867 @​mwear
Commits
  • 40d67b7 chore: prepare next release (#6869)
  • b1c196d Merge commit from fork
  • d375c08 fix(instrumentation,instrumentation-http): fix codecov under-reporting (#6867)
  • d61ab5f perf(sdk-metrics): optionally capture active context for sync instruments (#6...
  • 9e6475e fix(core): guard timeInputToHrTime against clock-skew misclassification (#677...
  • c989308 feat(sdk-node): wire up tracer_provider.sampler from declarative config (#6847)
  • dddbc0e feat(sdk-trace): add AlwaysRecordSampler (#6168)
  • 991434c chore(deps): update dependency @​bufbuild/buf to v1.71.0 (#6863)
  • 69303d0 chore(deps): update all patch versions (#6862)
  • 6690b03 chore(sdk-node)!: Drop support for deprecated OpenCensusMetricProducer from d...
  • Additional commits viewable in compare view

Updates @opentelemetry/sdk-node from 0.219.0 to 0.220.0

Release notes

Sourced from @​opentelemetry/sdk-node's releases.

experimental/v0.220.0

0.220.0

💥 Breaking Changes

  • refactor(sdk-logs)!: refactor BatchLogRecordProcessor constructor signature #6817 @​trentm
    • (user-facing): BatchLogRecordProcessor now takes a single options object with all possible properties, instead of two separate arguments. For example, before new BatchLogRecordProcessor(exporter, { maxQueueSize: 1000 }), after new BatchLogRecordProcessor({ exporter, maxQueueSize: 1000 }).
    • interface BufferConfig -> interface BatchLogRecordProcessorOptions, and now includes the exporter property
    • interface BatchLogRecordProcessorBrowserConfig -> interface BatchLogRecordProcessorBrowserOptions
    • (user-facing): SimpleLogRecordProcessor now takes a single options object with all possible properties. For example, before new SimpleLogRecordProcessor(exporter), after new SimpleLogRecordProcessor({ exporter }). #6836
  • refactor(configuration)!: change config file parsing to not add default values, nor merge *_list fields #6765 @​trentm
  • docs(shim-opencensus): Notice: The @opentracing/shim-opencensus package will be removed in SDK 3.x, planned for approximately September 2026.
    • The OpenCensus and OpenTracing compatibility requirements in the OpenTelemetry specification have been deprecated.
  • chore(sdk-node)!: Drop support for deprecated OpenCensusMetricProducer from declarative config

🚀 Features

  • feat(configuration): bump config schema to v1.1.0; rename without_scope_infoscope_info_enabled and without_target_info/developmenttarget_info_enabled/development on the Prometheus pull exporter (semantics inverted), rename with_resource_constant_labelsresource_constant_labels. Validate file_format per the configuration versioning spec: accept any minor version of major 1 (e.g. 1.0, 1.1), warn when the minor version is newer than supported, and reject other major versions. #6781 @​MikeGoldsmith
  • feat(sdk-node): wire up id_generator from declarative config #6782 @​MikeGoldsmith
  • feat(sdk-node): wire up tracer_provider.sampler from declarative config (always_on, always_off, trace_id_ratio_based, parent_based); unrecognized variants warn and fall back to ParentBased(AlwaysOn) #6506 @​MikeGoldsmith
  • feat(propagator-env-carrier): empty name normalization #6827 @​pellared
  • feat(propagator-env-carrier): make EnvironmentGetter read the current process.env #6853 @​pellared

🐛 Bug Fixes

  • fix(sdk-logs): stop Logger.emit() doing work (record construction, metrics, processor onEmit) after the LoggerProvider has shut down #6826 @​anneheartrecord
  • fix(sdk-node): pass all config properties (endpoint, headers, timeout, TLS, compression, temporality preference, default histogram aggregation) to OTLP metric exporters in declarative config #6814 @​MikeGoldsmith
  • fix(sdk-logs): default BatchLogRecordProcessor scheduleDelayMillis is 1000 #6796 @​trentm
  • fix(configuration): percent-decode keys and values in resource.attributes_list per spec #6787 @​MikeGoldsmith
  • fix(configuration): default log_level to info in env-based config initialization for consistency with file-based config #6788 @​MikeGoldsmith
  • fix(sdk-node): fail-fast on LoggerProvider creation with startNodeSDK() and declarative config #6785 @​trentm

📚 Documentation

  • docs(configuration): link the configuration README to the cross-SDK declarative config language support status doc #6809 @​MikeGoldsmith

🏠 Internal

  • chore(sdk-node): migrate to use the new sdk-trace package #6828 @​trentm
    • The node re-export of @opentelemetry/sdk-trace-node and tracing re-export of @opentelemetry/sdk-trace-base have been deprecated. (Historically the @opentelemetry/sdk-node package has re-exported from a number of core packages. It is now recommended that users directly import from those other packages.)
  • chore(*): migrate use of sdk-trace-base and sdk-trace-node to sdk-trace #6851 @​trentm
  • fix(instrumentation,instrumentation-http): fix codecov coverage under-reporting by merging coverage across CJS/ESM test runs #6867 @​mwear
Commits
  • 40d67b7 chore: prepare next release (#6869)
  • b1c196d Merge commit from fork
  • d375c08 fix(instrumentation,instrumentation-http): fix codecov under-reporting (#6867)
  • d61ab5f perf(sdk-metrics): optionally capture active context for sync instruments (#6...
  • 9e6475e fix(core): guard timeInputToHrTime against clock-skew misclassification (#677...
  • c989308 feat(sdk-node): wire up tracer_provider.sampler from declarative config (#6847)
  • dddbc0e feat(sdk-trace): add AlwaysRecordSampler (#6168)
  • 991434c chore(deps): update dependency @​bufbuild/buf to v1.71.0 (#6863)
  • 69303d0 chore(deps): update all patch versions (#6862)
  • 6690b03 chore(sdk-node)!: Drop support for deprecated OpenCensusMetricProducer from d...
  • Additional commits viewable in compare view

Updates @cloudflare/vitest-pool-workers from 0.16.20 to 0.18.4

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.18.4

Patch Changes

  • #14535 1b965c5 Thanks @​Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

  • Updated dependencies [0283a1f, 7b28392, 1b965c5]:

    • wrangler@4.110.0
    • miniflare@4.20260708.1

@​cloudflare/vitest-pool-workers@​0.18.3

Patch Changes

  • #14489 e3f0cd6 Thanks @​edmundhung! - Add listDurableObjectIds() to Miniflare

    Miniflare now exposes listDurableObjectIds() for listing persisted Durable Object instance IDs by binding name. The Vitest pool now uses this shared Miniflare API internally instead of duplicating Miniflare's storage listing logic.

  • Updated dependencies [e3f0cd6, 8511ddf, 9f74a5f, e3f0cd6, c782e2a, 2fedb1f, 17d2fc1]:

    • miniflare@4.20260708.0
    • wrangler@4.109.0

@​cloudflare/vitest-pool-workers@​0.18.2

Patch Changes

@​cloudflare/vitest-pool-workers@​0.18.1

Patch Changes

... (truncated)

Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.18.4

Patch Changes

  • #14535 1b965c5 Thanks @​Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

  • Updated dependencies [0283a1f, 7b28392, 1b965c5]:

    • wrangler@4.110.0
    • miniflare@4.20260708.1

0.18.3

Patch Changes

  • #14489 e3f0cd6 Thanks @​edmundhung! - Add listDurableObjectIds() to Miniflare

    Miniflare now exposes listDurableObjectIds() for listing persisted Durable Object instance IDs by binding name. The Vitest pool now uses this shared Miniflare API internally instead of duplicating Miniflare's storage listing logic.

  • Updated dependencies [e3f0cd6, 8511ddf, 9f74a5f, e3f0cd6, c782e2a, 2fedb1f, 17d2fc1]:

    • miniflare@4.20260708.0
    • wrangler@4.109.0

0.18.2

Patch Changes

... (truncated)

Commits

Updates next from 16.2.9 to 16.2.10

Release notes

Sourced from next's releases.

v16.2.10

Contains no changes except publishing @next/swc-wasm-web which was accidentally not published since 16.2.4.

Commits

Updates @opentelemetry/auto-instrumentations-node from 0.77.0 to 0.78.0

Release notes

Sourced from @​opentelemetry/auto-instrumentations-node's releases.

auto-instrumentations-node: v0.78.0

0.78.0 (2026-07-03)

Features

  • deps: update deps matching '@opentelemetry/*' (#3593) (6dfb532)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​opentelemetry/instrumentation-amqplib bumped from ^0.66.0 to ^0.67.0
      • @​opentelemetry/instrumentation-aws-lambda bumped from ^0.71.0 to ^0.72.0
      • @​opentelemetry/instrumentation-aws-sdk bumped from ^0.74.0 to ^0.75.0
      • @​opentelemetry/instrumentation-bunyan bumped from ^0.64.0 to ^0.65.0
      • @​opentelemetry/instrumentation-cassandra-driver bumped from ^0.64.0 to ^0.65.0
      • @​opentelemetry/instrumentation-connect bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-cucumber bumped from ^0.35.0 to ^0.36.0
      • @​opentelemetry/instrumentation-dataloader bumped from ^0.36.0 to ^0.37.0
      • @​opentelemetry/instrumentation-dns bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-express bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-fs bumped from ^0.38.0 to ^0.39.0
      • @​opentelemetry/instrumentation-generic-pool bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-graphql bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-hapi bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-host-metrics bumped from ^0.2.0 to ^0.3.0
      • @​opentelemetry/instrumentation-ioredis bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-kafkajs bumped from ^0.28.0 to ^0.29.0
      • @​opentelemetry/instrumentation-knex bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-koa bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-lru-memoizer bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-memcached bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-mongodb bumped from ^0.72.0 to ^0.73.0
      • @​opentelemetry/instrumentation-mongoose bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-mysql bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-mysql2 bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-nestjs-core bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-net bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-openai bumped from ^0.17.0 to ^0.18.0
      • @​opentelemetry/instrumentation-oracledb bumped from ^0.44.0 to ^0.45.0
      • @​opentelemetry/instrumentation-pg bumped from ^0.71.0 to ^0.72.0
      • @​opentelemetry/instrumentation-pino bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-redis bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-restify bumped from ^0.64.0 to ^0.65.0
      • @​opentelemetry/instrumentation-router bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-runtime-node bumped from ^0.32.0 to ^0.33.0
      • @​opentelemetry/instrumentation-socket.io bumped from ^0.66.0 to ^0.67.0
      • @​opentelemetry/instrumentation-tedious bumped from ^0.38.0 to ^0.39.0

... (truncated)

Changelog

Sourced from @​opentelemetry/auto-instrumentations-node's changelog.

0.78.0 (2026-07-03)

Features

  • deps: update deps matching '@opentelemetry/*' (#3593) (6dfb532)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​opentelemetry/instrumentation-amqplib bumped from ^0.66.0 to ^0.67.0
      • @​opentelemetry/instrumentation-aws-lambda bumped from ^0.71.0 to ^0.72.0
      • @​opentelemetry/instrumentation-aws-sdk bumped from ^0.74.0 to ^0.75.0
      • @​opentelemetry/instrumentation-bunyan bumped from ^0.64.0 to ^0.65.0
      • @​opentelemetry/instrumentation-cassandra-driver bumped from ^0.64.0 to ^0.65.0
      • @​opentelemetry/instrumentation-connect bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-cucumber bumped from ^0.35.0 to ^0.36.0
      • @​opentelemetry/instrumentation-dataloader bumped from ^0.36.0 to ^0.37.0
      • @​opentelemetry/instrumentation-dns bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-express bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-fs bumped from ^0.38.0 to ^0.39.0
      • @​opentelemetry/instrumentation-generic-pool bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-graphql bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-hapi bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-host-metrics bumped from ^0.2.0 to ^0.3.0
      • @​opentelemetry/instrumentation-ioredis bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-kafkajs bumped from ^0.28.0 to ^0.29.0
      • @​opentelemetry/instrumentation-knex bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-koa bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-lru-memoizer bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-memcached bumped from ^0.62.0 to ^0.63.0
      • @​opentelemetry/instrumentation-mongodb bumped from ^0.72.0 to ^0.73.0
      • @​opentelemetry/instrumentation-mongoose bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-mysql bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-mysql2 bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-nestjs-core bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-net bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-openai bumped from ^0.17.0 to ^0.18.0
      • @​opentelemetry/instrumentation-oracledb bumped from ^0.44.0 to ^0.45.0
      • @​opentelemetry/instrumentation-pg bumped from ^0.71.0 to ^0.72.0
      • @​opentelemetry/instrumentation-pino bumped from ^0.65.0 to ^0.66.0
      • @​opentelemetry/instrumentation-redis bumped from ^0.67.0 to ^0.68.0
      • @​opentelemetry/instrumentation-restify bumped from ^0.64.0 to ^0.65.0
      • @​opentelemetry/instrumentation-router bumped from ^0.63.0 to ^0.64.0
      • @​opentelemetry/instrumentation-runtime-node bumped from ^0.32.0 to ^0.33.0
      • @​opentelemetry/instrumentation-socket.io bumped from ^0.66.0 to ^0.67.0
      • @​opentelemetry/instrumentation-tedious bumped from ^0.38.0 to ^0.39.0
      • @​opentelemetry/instrumentation-undici bumped from ^0.29.0 to ^0.30.0

... (truncated)

Commits

Updates @opentelemetry/exporter-trace-otlp-http from 0.219.0 to 0.220.0

Release notes

Sourced from @​opentelemetry/exporter-trace-otlp-http's releases.

experimental/v0.220.0

0.220.0

💥 Breaking Changes

  • refactor(sdk-logs)!: refactor BatchLogRecordProcessor constructor signature #6817 @​trentm
    • (user-facing): BatchLogRecordProcessor now takes a single options object with all possible properties, instead of two separate arguments. For example, before new BatchLogRecordProcessor(exporter, { maxQueueSize: 1000 }), after new BatchLogRecordProcessor({ exporter, maxQueueSize: 1000 }).
    • interface BufferConfig -> interface BatchLogRecordProcessorOptions, and now includes the exporter property
    • interface BatchLogRecordProcessorBrowserConfig -> interface BatchLogRecordProcessorBrowserOptions
    • (user-facing): SimpleLogRecordProcessor now takes a single options object with all possible properties. For example, before new SimpleLogRecordProcessor(exporter), after new SimpleLogRecordProcessor({ exporter }). #6836
  • refactor(configuration)!: change config file parsing to not add default values, nor merge *_list fields #6765 @​trentm
  • docs(shim-opencensus): Notice: The @opentracing/shim-opencensus package will be removed in SDK 3.x, planned for approximately September 2026.
    • The OpenCensus and OpenTracing compatibility requirements in the OpenTelemetry specification have been deprecated.
  • chore(sdk-node)!: Drop support for deprecated OpenCensusMetricProducer from declarative config

🚀 Features

  • feat(configuration): bump config schema to v1.1.0; rename without_scope_infoscope_info_enabled and without_target_info/developmenttarget_info_enabled/development on the Prometheus pull exporter (semantics inverted), rename with_resource_constant_labelsresource_constant_labels. Validate file_format per the configuration versioning spec: accept any minor version of major 1 (e.g. 1.0, 1.1), warn when the minor version is newer than supported, and reject other major versions. #6781 @​MikeGoldsmith
  • feat(sdk-node): wire up id_generator from declarative config #6782 @​MikeGoldsmith
  • feat(sdk-node): wire up tracer_provider.sampler from declarative config (always_on, always_off, trace_id_ratio_based, parent_based); unrecognized variants warn and fall back to ParentBased(AlwaysOn) #6506 @​MikeGoldsmith
  • feat(propagator-env-carrier): empty name normalization #6827 @​pellared
  • feat(propagator-env-carrier): make EnvironmentGetter read the current process.env #6853 @​pellared

🐛 Bug Fixes

  • fix(sdk-logs): stop Logger.emit() doing work (record construction, metrics, processor onEmit) after the LoggerProvider has shut down #6826 @​anneheartrecord
  • fix(sdk-node): pass all config properties (endpoint, headers, timeout, TLS, compression, temporality preference, default histogram aggregation) to OTLP metric exporters in declarative config #6814 @​MikeGoldsmith
  • fix(sdk-logs): default BatchLogRecordProcessor scheduleDelayMillis is 1000 #6796 @​trentm
  • fix(configuration): percent-decode keys and values in resource.attributes_list per spec #6787 @​MikeGoldsmith
  • fix(configuration): default log_level to info in env-based config initialization for consistency with file-based config #6788 @​MikeGoldsmith
  • fix(sdk-node): fail-fast on LoggerProvider creation with startNodeSDK() and declarative config #6785 @​trentm

📚 Documentation

  • docs(configuration): link the configuration README to the cross-SDK declarative config language support status doc #6809 @​MikeGoldsmith

🏠 Internal

  • chore(sdk-node): migrate to use the new sdk-trace package #6828 @​trentm
    • The node re-export of @opentelemetry/sdk-trace-node and tracing re-export of @opentelemetry/sdk-trace-base have been deprecated. (Historically the @opentelemetry/sdk-node package has re-exported from a number of core packages. It is now recommended that users directly import from those other packages.)
  • chore(*): migrate use of sdk-trace-base and sdk-trace-node to sdk-trace #6851 @​trentm
  • fix(instrumentation,instrumentation-http): fix codecov coverage under-reporting by merging coverage across CJS/ESM test runs #6867 @​mwear
Commits
  • 40d67b7 chore: prepare next release (#6869)
  • b1c196d Merge commit from fork
  • d375c08 fix(instrumentation,instrumentation-http): fix codecov under-reporting (#6867)
  • d61ab5f perf(sdk-metrics): optionally capture active context for sync instruments (#6...
  • 9e6475e fix(core): guard timeInputToHrTime against clock-skew misclassification (#677...
  • c989308 feat(sdk-node): wire up tracer_provider.sampler from declarative config (#6847)
  • dddbc0e feat(sdk-trace): add AlwaysRecordSampler (#6168)
  • 991434c chore(deps): update dependency @​bufbuild/buf to v1.71.0 (#6863)
  • 69303d0 chore(deps): update all patch versions (#6862)
  • 6690b03 chore(sdk-node)!: Drop support for deprecated OpenCensusMetricProducer from d...
  • Additional commits viewable in compare view

Updates @opentelemetry/instrumentation-express from 0.67.0 to 0.68.0

Release notes

Sourced from @​opentelemetry/instrumentation-express's releases.

instrumentation-redis: v0.68.0

0.68.0 (2026-07-03)

Features

  • deps: update deps matching '@opentelemetry/*' (#3593) (6dfb532)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​opentelemetry/contrib-test-utils bumped from ^0.66.0 to ^0.67.0

instrumentation-koa: v0.68.0

0.68.0 (2026-07-03)

Features

  • deps: update deps matching '@opentelemetry/*' (#3593) (6dfb532)

Bug Fixes

  • instrumentation-koa: use fallback name for anonymous middleware spans (#3582) (f02aab2)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​opentelemetry/contrib-test-utils bumped from ^0.66.0 to ^0.67.0

instrumentation-ioredis: v0.68.0

0.68.0 (2026-07-03)

Features

  • deps: update deps matching '@opentelemetry/*' (#3593) (6dfb532)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​opentelemetry/contrib-test-utils bumped from ^0.66.0 to ^0.67.0

... (truncated)

Changelog

Sourced from @​opentelemetry/instrumentation-express's changelog.

0.68.0 (2026-07-03)

Features

  • deps: update deps matching '@opentelemetry/*' (#3593) (6dfb532)

Bug Fixes

  • instrumentation-express: filter Express v5 wildcard paths in get… (#3557) (76405b1)
  • instrumentation-express: fix missing http.route when path-less middleware is ignored (#3571) (83a1dc4)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​opentelemetry/contrib-test-utils bumped from ^0.66.0 to ^0.67.0
Commits
  • 925a150 feat(deps): update deps matching '@opentelemetry/*' (#3332)
  • 66935ac chore: release main (#3264)
  • 0c1bba8 chore(deps): update dependency markdownlint-cli2 to v0.19.1 (#3244)
  • 1c08238 refactor: hoist all devDeps to root (#3032)
  • 94e5b7d chore: release main (#3190)
  • 2d675d3 feat(deps): update deps matching '@opentelemetry/*' (#3210)
  • b1c69da fix(deps): update patch versions of several types packages (

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 11, 2026
@vercel

vercel Bot commented Jul 11, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
orpc Ready Ready Preview, Comment Jul 13, 2026 7:58am

@pkg-pr-new

pkg-pr-new Bot commented Jul 11, 2026

Copy link
Copy Markdown
More templates

@orpc/arktype

npm i https://pkg.pr.new/@orpc/arktype@1660

@orpc/bun

npm i https://pkg.pr.new/@orpc/bun@1660

@orpc/client

npm i https://pkg.pr.new/@orpc/client@1660

@orpc/cloudflare

npm i https://pkg.pr.new/@orpc/cloudflare@1660

@orpc/contract

npm i https://pkg.pr.new/@orpc/contract@1660

@orpc/experimental-effect

npm i https://pkg.pr.new/@orpc/experimental-effect@1660

@orpc/evlog

npm i https://pkg.pr.new/@orpc/evlog@1660

@orpc/json-schema

npm i https://pkg.pr.new/@orpc/json-schema@1660

@orpc/nest

npm i https://pkg.pr.new/@orpc/nest@1660

@orpc/next

npm i https://pkg.pr.new/@orpc/next@1660

@orpc/openapi

npm i https://pkg.pr.new/@orpc/openapi@1660

@orpc/opentelemetry

npm i https://pkg.pr.new/@orpc/opentelemetry@1660

@orpc/pino

npm i https://pkg.pr.new/@orpc/pino@1660

@orpc/publisher

npm i https://pkg.pr.new/@orpc/publisher@1660

@orpc/ratelimit

npm i https://pkg.pr.new/@orpc/ratelimit@1660

@orpc/server

npm i https://pkg.pr.new/@orpc/server@1660

@orpc/shared

npm i https://pkg.pr.new/@orpc/shared@1660

@orpc/tanstack-query

npm i https://pkg.pr.new/@orpc/tanstack-query@1660

@orpc/valibot

npm i https://pkg.pr.new/@orpc/valibot@1660

@orpc/zod

npm i https://pkg.pr.new/@orpc/zod@1660

commit: 46dced4

@codecov

codecov Bot commented Jul 11, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

… directory with 11 updates

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

| Package | From | To |
| --- | --- | --- |
| [@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js) | `0.219.0` | `0.220.0` |
| [@opentelemetry/sdk-node](https://github.com/open-telemetry/opentelemetry-js) | `0.219.0` | `0.220.0` |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.16.20` | `0.18.4` |
| [next](https://github.com/vercel/next.js) | `16.2.9` | `16.2.10` |
| [@opentelemetry/auto-instrumentations-node](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/HEAD/packages/auto-instrumentations-node) | `0.77.0` | `0.78.0` |
| [@opentelemetry/exporter-trace-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.219.0` | `0.220.0` |
| [@opentelemetry/instrumentation-express](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/HEAD/packages/instrumentation-express) | `0.67.0` | `0.68.0` |
| [@opentelemetry/instrumentation-http](https://github.com/open-telemetry/opentelemetry-js) | `0.219.0` | `0.220.0` |
| [@opentelemetry/instrumentation-nestjs-core](https://github.com/open-telemetry/opentelemetry-js-contrib/tree/HEAD/packages/instrumentation-nestjs-core) | `0.65.0` | `0.66.0` |
| [@opentelemetry/api-logs](https://github.com/open-telemetry/opentelemetry-js) | `0.219.0` | `0.220.0` |
| [@opentelemetry/sdk-logs](https://github.com/open-telemetry/opentelemetry-js) | `0.219.0` | `0.220.0` |



Updates `@opentelemetry/instrumentation` from 0.219.0 to 0.220.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.219.0...experimental/v0.220.0)

Updates `@opentelemetry/sdk-node` from 0.219.0 to 0.220.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.219.0...experimental/v0.220.0)

Updates `@cloudflare/vitest-pool-workers` from 0.16.20 to 0.18.4
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.18.4/packages/vitest-pool-workers)

Updates `next` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.2.9...v16.2.10)

Updates `@opentelemetry/auto-instrumentations-node` from 0.77.0 to 0.78.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/packages/auto-instrumentations-node/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js-contrib/commits/auto-instrumentations-node-v0.78.0/packages/auto-instrumentations-node)

Updates `@opentelemetry/exporter-trace-otlp-http` from 0.219.0 to 0.220.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.219.0...experimental/v0.220.0)

Updates `@opentelemetry/instrumentation-express` from 0.67.0 to 0.68.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/packages/instrumentation-express/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js-contrib/commits/instrumentation-pg-v0.68.0/packages/instrumentation-express)

Updates `@opentelemetry/instrumentation-http` from 0.219.0 to 0.220.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.219.0...experimental/v0.220.0)

Updates `@opentelemetry/instrumentation-nestjs-core` from 0.65.0 to 0.66.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/main/packages/instrumentation-nestjs-core/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js-contrib/commits/contrib-test-utils-v0.66.0/packages/instrumentation-nestjs-core)

Updates `@opentelemetry/api-logs` from 0.219.0 to 0.220.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.219.0...experimental/v0.220.0)

Updates `@opentelemetry/sdk-logs` from 0.219.0 to 0.220.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.219.0...experimental/v0.220.0)

---
updated-dependencies:
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.18.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/api-logs"
  dependency-version: 0.220.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/auto-instrumentations-node"
  dependency-version: 0.78.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/exporter-trace-otlp-http"
  dependency-version: 0.220.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/instrumentation"
  dependency-version: 0.220.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/instrumentation-express"
  dependency-version: 0.68.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/instrumentation-http"
  dependency-version: 0.220.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/instrumentation-nestjs-core"
  dependency-version: 0.66.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/sdk-logs"
  dependency-version: 0.220.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@opentelemetry/sdk-node"
  dependency-version: 0.220.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: next
  dependency-version: 16.2.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-minor-patch-38c3268256 branch from 29c35fa to 46dced4 Compare July 13, 2026 07:55
@dependabot @github

dependabot Bot commented on behalf of github Jul 14, 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 Jul 14, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/dev-dependencies-minor-patch-38c3268256 branch July 14, 2026 02:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants