Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 9, 2025

Bumps the npm group with 18 updates in the / directory:

Package From To
@opentelemetry/exporter-metrics-otlp-proto 0.203.0 0.206.0
@opentelemetry/exporter-trace-otlp-proto 0.203.0 0.206.0
@opentelemetry/resources 2.0.1 2.1.0
@opentelemetry/sdk-trace-base 2.0.1 2.1.0
@opentelemetry/sdk-metrics 2.0.1 2.1.0
@eslint/js 9.34.0 9.37.0
@opentelemetry/sdk-node 0.203.0 0.206.0
@opentelemetry/semantic-conventions 1.36.0 1.37.0
@types/node 24.3.0 24.7.0
@typescript-eslint/eslint-plugin 8.40.0 8.46.0
@typescript-eslint/parser 8.40.0 8.46.0
@vercel/ncc 0.38.3 0.38.4
@vitest/eslint-plugin 1.3.4 1.3.16
eslint 9.34.0 9.37.0
eslint-plugin-jsonc 2.20.1 2.21.0
globals 16.3.0 16.4.0
tsx 4.20.4 4.20.6
typescript 5.9.2 5.9.3

Updates @opentelemetry/exporter-metrics-otlp-proto from 0.203.0 to 0.206.0

Release notes

Sourced from @​opentelemetry/exporter-metrics-otlp-proto's releases.

experimental/v0.206.0

0.206.0

🚀 Features

  • feat(otlp-transformer): add span flags support for isRemote property #5910 @​nikhilmantri0902
  • feat(sampler-composite): Added experimental implementations of draft composite sampling spec #5839 @​anuraaga
  • feat(opentelemetry-configuration): add more attributes to config model #5826 @​maryliag
  • feat(opentelemetry-configuration): Parse of Configuration File #5875 @​maryliag
  • feat(opentelemetry-configuration): parse of array objects on configuration file #5947 @​maryliag
  • feat(opentelemetry-configuration): parse of environment variables on configuration file #5947 @​maryliag

🐛 Bug Fixes

  • fix(instrumentation-http): respect requireParent flag when INVALID_SPAN_CONTEXT is used #4788 @​reberhardt7
  • fix(otlp-transformer): trunc hrTime to int for nanos converting #5924 @​blumamir

🏠 Internal

  • refactor(otlp-exporter-base): use get*FromEnv() for otlp exporter config. #5583 @​weyert

experimental/v0.205.0

0.205.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: split node and browser config types in two #5917 @​pichlermarc
    • Fixes a bug where Node.js modules would be incorrectly used in the instantiation of a web-targeted exporter
    • Breaking changes:
      • (user-facing) createOtlpHttpExportDelegate(OtlpHttpConfiguration) has been changed to take a different, but identical type OtlpNodeHttpConfiguration to differentiate it from the web-targeted exporters
      • (user-facing) convertLegacyHttpOptions(...) now returns OtlpNodeHttpConfiguration, the returned object's contents remain identical.
      • (user-facing) agentFactory has been dropped from OtlpHttpConfiguration as it is node-specific and is now part of OtlpNodeHttpConfiguration instead

experimental/v0.204.0

0.204.0

💥 Breaking Changes

  • feat(api-logs)!: Marked private methods as "conventionally private". #5789
  • feat(exporter-otlp-*): support custom HTTP agents #5719 @​raphael-theriault-swi
    • OtlpHttpConfiguration.agentOptions has been removed and functionality has been rolled into OtlpHttpConfiguration.agentFactory
      • (old) { agentOptions: myOptions }
      • (new) { agentFactory: httpAgentFactoryFromOptions(myOptions) }

🚀 Features

  • feat(otlp-exporter-base): Add fetch transport for fetch-only environments like service workers. #5807
    • when using headers, the Browser exporter now prefers fetch over XMLHttpRequest if present. Sending via XMLHttpRequest will be removed in a future release.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​opentelemetry/exporter-metrics-otlp-proto since your current version.


Updates @opentelemetry/exporter-trace-otlp-proto from 0.203.0 to 0.206.0

Release notes

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

experimental/v0.206.0

0.206.0

🚀 Features

  • feat(otlp-transformer): add span flags support for isRemote property #5910 @​nikhilmantri0902
  • feat(sampler-composite): Added experimental implementations of draft composite sampling spec #5839 @​anuraaga
  • feat(opentelemetry-configuration): add more attributes to config model #5826 @​maryliag
  • feat(opentelemetry-configuration): Parse of Configuration File #5875 @​maryliag
  • feat(opentelemetry-configuration): parse of array objects on configuration file #5947 @​maryliag
  • feat(opentelemetry-configuration): parse of environment variables on configuration file #5947 @​maryliag

🐛 Bug Fixes

  • fix(instrumentation-http): respect requireParent flag when INVALID_SPAN_CONTEXT is used #4788 @​reberhardt7
  • fix(otlp-transformer): trunc hrTime to int for nanos converting #5924 @​blumamir

🏠 Internal

  • refactor(otlp-exporter-base): use get*FromEnv() for otlp exporter config. #5583 @​weyert

experimental/v0.205.0

0.205.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: split node and browser config types in two #5917 @​pichlermarc
    • Fixes a bug where Node.js modules would be incorrectly used in the instantiation of a web-targeted exporter
    • Breaking changes:
      • (user-facing) createOtlpHttpExportDelegate(OtlpHttpConfiguration) has been changed to take a different, but identical type OtlpNodeHttpConfiguration to differentiate it from the web-targeted exporters
      • (user-facing) convertLegacyHttpOptions(...) now returns OtlpNodeHttpConfiguration, the returned object's contents remain identical.
      • (user-facing) agentFactory has been dropped from OtlpHttpConfiguration as it is node-specific and is now part of OtlpNodeHttpConfiguration instead

experimental/v0.204.0

0.204.0

💥 Breaking Changes

  • feat(api-logs)!: Marked private methods as "conventionally private". #5789
  • feat(exporter-otlp-*): support custom HTTP agents #5719 @​raphael-theriault-swi
    • OtlpHttpConfiguration.agentOptions has been removed and functionality has been rolled into OtlpHttpConfiguration.agentFactory
      • (old) { agentOptions: myOptions }
      • (new) { agentFactory: httpAgentFactoryFromOptions(myOptions) }

🚀 Features

  • feat(otlp-exporter-base): Add fetch transport for fetch-only environments like service workers. #5807
    • when using headers, the Browser exporter now prefers fetch over XMLHttpRequest if present. Sending via XMLHttpRequest will be removed in a future release.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​opentelemetry/exporter-trace-otlp-proto since your current version.


Updates @opentelemetry/resources from 2.0.1 to 2.1.0

Release notes

Sourced from @​opentelemetry/resources's releases.

v2.1.0

2.1.0

🚀 Features

🐛 Bug Fixes

  • fix(sdk-metrics): Remove invalid default value for startTime param to ExponentialHistogramAccumulation. This only impacted the closurescript compiler. #5763 @​trentm

🏠 Internal

Changelog

Sourced from @​opentelemetry/resources's changelog.

2.1.0

🚀 Features

🐛 Bug Fixes

  • fix(sdk-metrics): Remove invalid default value for startTime param to ExponentialHistogramAccumulation. This only impacted the closurescript compiler. #5763 @​trentm

🏠 Internal

Commits

Updates @opentelemetry/sdk-trace-base from 2.0.1 to 2.1.0

Release notes

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

v2.1.0

2.1.0

🚀 Features

🐛 Bug Fixes

  • fix(sdk-metrics): Remove invalid default value for startTime param to ExponentialHistogramAccumulation. This only impacted the closurescript compiler. #5763 @​trentm

🏠 Internal

Changelog

Sourced from @​opentelemetry/sdk-trace-base's changelog.

2.1.0

🚀 Features

🐛 Bug Fixes

  • fix(sdk-metrics): Remove invalid default value for startTime param to ExponentialHistogramAccumulation. This only impacted the closurescript compiler. #5763 @​trentm

🏠 Internal

Commits

Updates @opentelemetry/sdk-metrics from 2.0.1 to 2.1.0

Release notes

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

v2.1.0

2.1.0

🚀 Features

🐛 Bug Fixes

  • fix(sdk-metrics): Remove invalid default value for startTime param to ExponentialHistogramAccumulation. This only impacted the closurescript compiler. #5763 @​trentm

🏠 Internal

Changelog

Sourced from @​opentelemetry/sdk-metrics's changelog.

2.1.0

🚀 Features

🐛 Bug Fixes

  • fix(sdk-metrics): Remove invalid default value for startTime param to ExponentialHistogramAccumulation. This only impacted the closurescript compiler. #5763 @​trentm

🏠 Internal

Commits

Updates @eslint/js from 9.34.0 to 9.37.0

Release notes

Sourced from @​eslint/js's releases.

v9.37.0

Features

  • 39f7fb4 feat: preserve-caught-error should recognize all static "cause" keys (#20163) (Pixel998)
  • f81eabc feat: support TS syntax in no-restricted-imports (#19562) (Nitin Kumar)

Bug Fixes

  • a129cce fix: correct no-loss-of-precision false positives for leading zeros (#20164) (Francesco Trotta)
  • 09e04fc fix: add missing AST token types (#20172) (Pixel998)
  • 861c6da fix: correct ESLint typings (#20122) (Pixel998)

Documentation

  • b950359 docs: fix typos across the docs (#20182) (루밀LuMir)
  • 42498a2 docs: improve ToC accessibility by hiding non-semantic character (#20181) (Percy Ma)
  • 29ea092 docs: Update README (GitHub Actions Bot)
  • 5c97a04 docs: show availableUntil in deprecated rule banner (#20170) (Pixel998)
  • 90a71bf docs: update README files to add badge and instructions (#20115) (루밀LuMir)
  • 1603ae1 docs: update references from master to main (#20153) (루밀LuMir)

Chores

  • afe8a13 chore: update @eslint/js dependency to version 9.37.0 (#20183) (Francesco Trotta)
  • abee4ca chore: package.json update for @​eslint/js release (Jenkins)
  • fc9381f chore: fix typos in comments (#20175) (overlookmotel)
  • e1574a2 chore: unpin jiti (#20173) (renovate[bot])
  • e1ac05e refactor: mark ESLint.findConfigFile() as async, add missing docs (#20157) (Pixel998)
  • 347906d chore: update eslint (#20149) (renovate[bot])
  • 0cb5897 test: remove tmp dir created for circular fixes in multithread mode test (#20146) (Milos Djermanovic)
  • bb99566 ci: pin jiti to version 2.5.1 (#20151) (Pixel998)
  • 177f669 perf: improve worker count calculation for "auto" concurrency (#20067) (Francesco Trotta)
  • 448b57b chore: Mark deprecated formatting rules as available until v11.0.0 (#20144) (Milos Djermanovic)

v9.36.0

Features

  • 47afcf6 feat: correct preserve-caught-error edge cases (#20109) (Francesco Trotta)

Bug Fixes

  • 75b74d8 fix: add missing rule option types (#20127) (ntnyq)
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116) (루밀LuMir)
  • 7d61b7f fix: add missing scope types to Scope.type (#20110) (Pixel998)
  • 7a670c3 fix: correct rule option typings in rules.d.ts (#20084) (Pixel998)

Documentation

  • b73ab12 docs: update examples to use defineConfig (#20131) (sethamus)
  • 31d9392 docs: fix typos (#20118) (Pixel998)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 91f97c5 docs: Update README (GitHub Actions Bot)

Chores

  • 12411e8 chore: upgrade @​eslint/js@​9.36.0 (#20139) (Milos Djermanovic)
  • 488cba6 chore: package.json update for @​eslint/js release (Jenkins)

... (truncated)

Commits
  • abee4ca chore: package.json update for @​eslint/js release
  • 90a71bf docs: update README files to add badge and instructions (#20115)
  • 488cba6 chore: package.json update for @​eslint/js release
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116)
  • af2a087 chore: package.json update for @​eslint/js release
  • 84ffb96 chore: update @eslint-community/eslint-utils (#20069)
  • See full diff in compare view

Updates @opentelemetry/sdk-node from 0.203.0 to 0.206.0

Release notes

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

experimental/v0.206.0

0.206.0

🚀 Features

  • feat(otlp-transformer): add span flags support for isRemote property #5910 @​nikhilmantri0902
  • feat(sampler-composite): Added experimental implementations of draft composite sampling spec #5839 @​anuraaga
  • feat(opentelemetry-configuration): add more attributes to config model #5826 @​maryliag
  • feat(opentelemetry-configuration): Parse of Configuration File #5875 @​maryliag
  • feat(opentelemetry-configuration): parse of array objects on configuration file #5947 @​maryliag
  • feat(opentelemetry-configuration): parse of environment variables on configuration file #5947 @​maryliag

🐛 Bug Fixes

  • fix(instrumentation-http): respect requireParent flag when INVALID_SPAN_CONTEXT is used #4788 @​reberhardt7
  • fix(otlp-transformer): trunc hrTime to int for nanos converting #5924 @​blumamir

🏠 Internal

  • refactor(otlp-exporter-base): use get*FromEnv() for otlp exporter config. #5583 @​weyert

experimental/v0.205.0

0.205.0

💥 Breaking Changes

  • fix(otlp-exporter-base)!: split node and browser config types in two #5917 @​pichlermarc
    • Fixes a bug where Node.js modules would be incorrectly used in the instantiation of a web-targeted exporter
    • Breaking changes:
      • (user-facing) createOtlpHttpExportDelegate(OtlpHttpConfiguration) has been changed to take a different, but identical type OtlpNodeHttpConfiguration to differentiate it from the web-targeted exporters
      • (user-facing) convertLegacyHttpOptions(...) now returns OtlpNodeHttpConfiguration, the returned object's contents remain identical.
      • (user-facing) agentFactory has been dropped from OtlpHttpConfiguration as it is node-specific and is now part of OtlpNodeHttpConfiguration instead

experimental/v0.204.0

0.204.0

💥 Breaking Changes

  • feat(api-logs)!: Marked private methods as "conventionally private". #5789
  • feat(exporter-otlp-*): support custom HTTP agents #5719 @​raphael-theriault-swi
    • OtlpHttpConfiguration.agentOptions has been removed and functionality has been rolled into OtlpHttpConfiguration.agentFactory
      • (old) { agentOptions: myOptions }
      • (new) { agentFactory: httpAgentFactoryFromOptions(myOptions) }

🚀 Features

  • feat(otlp-exporter-base): Add fetch transport for fetch-only environments like service workers. #5807
    • when using headers, the Browser exporter now prefers fetch over XMLHttpRequest if present. Sending via XMLHttpRequest will be removed in a future release.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​opentelemetry/sdk-node since your current version.


Updates @opentelemetry/semantic-conventions from 1.36.0 to 1.37.0

Release notes

Sourced from @​opentelemetry/semantic-conventions's releases.

semconv/v1.37.0

1.37.0

🚀 Features

  • feat: add EVENT_* exports for event names in Semantic Conventions #5832 @​trentm

  • feat: update semantic conventions to v1.37.0 #5879 @​trentm

    • Semantic Conventions v1.37.0: changelog | latest docs
    • @opentelemetry/semantic-conventions (stable) changes: 2 added exports
    • @opentelemetry/semantic-conventions/incubating (unstable) changes: 1 exported value changed, 6 newly deprecated exports, 1 newly undeprecated export, 246 added exports

Stable changes in v1.37.0

EVENT_EXCEPTION                       // exception
ATTR_ASPNETCORE_USER_IS_AUTHENTICATED // aspnetcore.user.is_authenticated

Unstable changes in v1.37.0

GEN_AI_SYSTEM_VALUE_AZ_AI_OPENAI // "azure.ai.openai" -> "az.ai.openai"
ATTR_CONTAINER_RUNTIME                         // container.runtime: Replaced by `container.runtime.name`.
ATTR_GEN_AI_OPENAI_REQUEST_SERVICE_TIER        // gen_ai.openai.request.service_tier: Replaced by `openai.request.service_tier`.
ATTR_GEN_AI_OPENAI_RESPONSE_SERVICE_TIER       // gen_ai.openai.response.service_tier: Replaced by `openai.response.service_tier`.
ATTR_GEN_AI_OPENAI_RESPONSE_SYSTEM_FINGERPRINT // gen_ai.openai.response.system_fingerprint: Replaced by `openai.response.system_fingerprint`.
ATTR_GEN_AI_SYSTEM                             // gen_ai.system: Replaced by `gen_ai.provider.name`.
GEN_AI_SYSTEM_VALUE_XAI                        // xai: Replaced by `x_ai`.

... (truncated)

Commits
  • af5c2fd chore: prepare next release (#5901)
  • 747da91 feat(semantic-conventions): update semantic conventions to v1.37.0 (#5879)
  • f2b0d2a chore(config): migrate renovate config (#5900)
  • 52ffa04 chore: group packages that need to be updated together (#5896)
  • 16c786c chore(deps): lock file maintenance (#5781)
  • a171a5c chore(deps): update dependency mocha to v11.7.2 (#5850)
  • 2d54408 ci: drop unsafe-perm in workflows (#5895)
  • 90ad17b chore(deps): update dependency semver to v7.7.2 (#5892)
  • 2d7eecb refactor(instrumentation-grpc): use relative path for semconv (#5884)
  • f689830 chore(deps): update dependency @​protobuf-ts/grpc-transport to v2.11.1 (#5888)
  • Additional commits viewable in compare view

Updates @types/node from 24.3.0 to 24.7.0

Commits

Updates @typescript-eslint/eslint-plugin from 8.40.0 to 8.46.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.46.0

8.46.0 (2025-10-06)

🚀 Features

  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#11659)
  • eslint-plugin-internal: [no-dynamic-tests] new internal Lint rule to ban dynamic syntax in generating tests (#11323)
  • rule-schema-to-typescript-types: clean up and make public (#11633)
  • typescript-eslint: export util types (#10848, #10849)
  • typescript-estree: mention file specifics in project service allowDefaultProject error (#11635)
  • typescript-estree: private identifiers can only appear on LHS of in expressions (#9232)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#11487)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#11634)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#11603)
  • eslint-plugin: removed error type previously deprecated (#11674)
  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#11660)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#11628)
  • typescript-estree: forbid abstract modifier in object methods (#11656)
  • typescript-estree: forbid abstract method and accessor to have implementation (#11657)

❤️ Thank You

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

v8.45.0

8.45.0 (2025-09-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11616)

🩹 Fixes

  • disable generating declaration maps (#11627)
  • ast-spec: narrow ArrowFunctionExpression.generator to false (#11636)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#11617)
  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#11614)
  • Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 9, 2025
Bumps the npm group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@opentelemetry/exporter-metrics-otlp-proto](https://github.com/open-telemetry/opentelemetry-js) | `0.203.0` | `0.206.0` |
| [@opentelemetry/exporter-trace-otlp-proto](https://github.com/open-telemetry/opentelemetry-js) | `0.203.0` | `0.206.0` |
| [@opentelemetry/resources](https://github.com/open-telemetry/opentelemetry-js) | `2.0.1` | `2.1.0` |
| [@opentelemetry/sdk-trace-base](https://github.com/open-telemetry/opentelemetry-js) | `2.0.1` | `2.1.0` |
| [@opentelemetry/sdk-metrics](https://github.com/open-telemetry/opentelemetry-js) | `2.0.1` | `2.1.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.34.0` | `9.37.0` |
| [@opentelemetry/sdk-node](https://github.com/open-telemetry/opentelemetry-js) | `0.203.0` | `0.206.0` |
| [@opentelemetry/semantic-conventions](https://github.com/open-telemetry/opentelemetry-js) | `1.36.0` | `1.37.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.3.0` | `24.7.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.40.0` | `8.46.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.40.0` | `8.46.0` |
| [@vercel/ncc](https://github.com/vercel/ncc) | `0.38.3` | `0.38.4` |
| [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.3.4` | `1.3.16` |
| [eslint](https://github.com/eslint/eslint) | `9.34.0` | `9.37.0` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.20.1` | `2.21.0` |
| [globals](https://github.com/sindresorhus/globals) | `16.3.0` | `16.4.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.4` | `4.20.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |



Updates `@opentelemetry/exporter-metrics-otlp-proto` from 0.203.0 to 0.206.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.203.0...experimental/v0.206.0)

Updates `@opentelemetry/exporter-trace-otlp-proto` from 0.203.0 to 0.206.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.203.0...experimental/v0.206.0)

Updates `@opentelemetry/resources` from 2.0.1 to 2.1.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@v2.0.1...v2.1.0)

Updates `@opentelemetry/sdk-trace-base` from 2.0.1 to 2.1.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@v2.0.1...v2.1.0)

Updates `@opentelemetry/sdk-metrics` from 2.0.1 to 2.1.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@v2.0.1...v2.1.0)

Updates `@eslint/js` from 9.34.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.37.0/packages/js)

Updates `@opentelemetry/sdk-node` from 0.203.0 to 0.206.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.203.0...experimental/v0.206.0)

Updates `@opentelemetry/semantic-conventions` from 1.36.0 to 1.37.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@semconv/v1.36.0...semconv/v1.37.0)

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

Updates `@typescript-eslint/eslint-plugin` from 8.40.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.40.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/parser)

Updates `@vercel/ncc` from 0.38.3 to 0.38.4
- [Release notes](https://github.com/vercel/ncc/releases)
- [Commits](vercel/ncc@0.38.3...0.38.4)

Updates `@vitest/eslint-plugin` from 1.3.4 to 1.3.16
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v1.3.4...v1.3.16)

Updates `eslint` from 9.34.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.34.0...v9.37.0)

Updates `eslint-plugin-jsonc` from 2.20.1 to 2.21.0
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.20.1...v2.21.0)

Updates `globals` from 16.3.0 to 16.4.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v16.3.0...v16.4.0)

Updates `tsx` from 4.20.4 to 4.20.6
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.4...v4.20.6)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

---
updated-dependencies:
- dependency-name: "@opentelemetry/exporter-metrics-otlp-proto"
  dependency-version: 0.206.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@opentelemetry/exporter-trace-otlp-proto"
  dependency-version: 0.206.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@opentelemetry/resources"
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@opentelemetry/sdk-trace-base"
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@opentelemetry/sdk-metrics"
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@eslint/js"
  dependency-version: 9.37.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@opentelemetry/sdk-node"
  dependency-version: 0.206.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@opentelemetry/semantic-conventions"
  dependency-version: 1.37.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-version: 24.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@vercel/ncc"
  dependency-version: 0.38.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@vitest/eslint-plugin"
  dependency-version: 1.3.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: eslint
  dependency-version: 9.37.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint-plugin-jsonc
  dependency-version: 2.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: globals
  dependency-version: 16.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: tsx
  dependency-version: 4.20.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-6536315cb0 branch from c55481d to ec32b4e Compare October 9, 2025 12:09
@paper2 paper2 merged commit bfe57ad into main Nov 8, 2025
19 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-6536315cb0 branch November 8, 2025 02:36
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.

2 participants