Skip to content

chore(deps): bump the prod-dependencies group across 1 directory with 2 updates#310

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/prod-dependencies-ade5743078
Open

chore(deps): bump the prod-dependencies group across 1 directory with 2 updates#310
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/prod-dependencies-ade5743078

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 17, 2025

Bumps the prod-dependencies group with 2 updates in the / directory: @opentelemetry/instrumentation and @opentelemetry/instrumentation-http.

Updates @opentelemetry/instrumentation from 0.57.2 to 0.218.0

Release notes

Sourced from @​opentelemetry/instrumentation's releases.

experimental/v0.218.0

0.218.0

🚀 Features

  • feat(otlp-transformer): replace protobufjs metrics serialization with custom implementation #6625 @​pichlermarc
  • feat(configuration): show all config validation errors, if there are multiple #6683 @​trentm
  • feat(sdk-node): allow startNodeSDK() without an arg #6688 @​trentm

🏠 Internal

  • refactor(sdk-logs): alias LoggerProviderConfig to LoggerProviderOptions #6691 @​david-luna
  • refactor(sdk-logs): use Logger.enabled() within Logger.emit() implementation #6680 @​david-luna

experimental/v0.217.0

0.217.0

🚀 Features

  • feat(otlp-transformer): replace protobufjs trace serialization with custom implementation #6625 @​pichlermarc
  • feat(configuration): auto-generate TypeScript types from OTel declarative config JSON schema (stable v1.0.0) using json-schema-to-typescript and ajv #6533 @​MikeGoldsmith
  • feat(configuration, sdk-node): startNodeSDK() code path now uses log_level configuration to setup a DiagConsoleLogger #6668 @​trentm
    • Note that allowed values for log_level in a configuration YAML file are not the same set as for OTEL_LOG_LEVEL. Use log_level: trace to see all logs (equivalent of OTEL_LOG_LEVEL=ALL). Use log_level: fatal to effectively disable the SDK's internal diagnostic logger (equivalent of OTEL_LOG_LEVEL=NONE).
    • If log_level is not specified, a diagnostic console logger at "info" level will be setup.
    • An invalid YAML config file will now result in a noop OTel SDK.

🐛 Bug Fixes

  • fix(configuration): do not validate OTEL_CONFIG_FILE value before using it for file config #6643 @​trentm
  • fix(configuration): improve how 'additionalProperties' in JSON schema is translated to TS types #6650 @​trentm
  • fix(configuration): remove stripMinItems and preprocessNullArrays from validation/parsing #6657 @​trentm
  • fix(configuration): improve handling of enums in generated types #6659 @​trentm
  • fix(configuration): improve the technique for removing '| null' on types the JSON Schema #6662 @​trentm
  • fix(sampler-jaeger-remote): add missing axios dep #6656 @​trentm
  • fix(exporter-prometheus): handle malformed URLs in Prometheus exporter request handler #6674 @​homanp

experimental/v0.216.0

0.216.0

🚀 Features

🐛 Bug Fixes

  • fix(instrumentation-xml-http-request): avoid unwrapping XMLHttpRequest API when disabling #6611 @​david-luna
  • fix(instrumentation-fetch): tolerate non-writable globalThis.fetch and fix premature _isEnabled / _isFetchPatched flips in enable() @​brunorodmoreira

... (truncated)

Commits
  • 06ad0ea chore: prepare next release (#6703)
  • 38ca257 feat(otlp-transformer): replace protobufjs metrics serialization with custom ...
  • 013c600 chore: prepare next release (#6699)
  • b7a0c63 feat(semantic-conventions): update semantic conventions to v1.41.1 (#6695)
  • 774143b chore(renovate): add minimumReleaseAge to config (#6697)
  • e0dafe0 fix(otlp-exporter-base): remove brackets from IPv6 hostname in HTTP transport...
  • f804c93 chore(deps): update github/codeql-action digest to 68bde55 (#6682)
  • 95e48e7 refactor(sdk-logs): alias LoggerProviderConfig to LoggerProviderOptions (...
  • 907b627 feat(sdk-node): allow startNodeSDK() without an arg (#6688)
  • 0d15261 docs: Add SIG meeting info and welcoming language (#6689)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​opentelemetry/instrumentation since your current version.


Updates @opentelemetry/instrumentation-http from 0.57.2 to 0.218.0

Release notes

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

experimental/v0.218.0

0.218.0

🚀 Features

  • feat(otlp-transformer): replace protobufjs metrics serialization with custom implementation #6625 @​pichlermarc
  • feat(configuration): show all config validation errors, if there are multiple #6683 @​trentm
  • feat(sdk-node): allow startNodeSDK() without an arg #6688 @​trentm

🏠 Internal

  • refactor(sdk-logs): alias LoggerProviderConfig to LoggerProviderOptions #6691 @​david-luna
  • refactor(sdk-logs): use Logger.enabled() within Logger.emit() implementation #6680 @​david-luna

experimental/v0.217.0

0.217.0

🚀 Features

  • feat(otlp-transformer): replace protobufjs trace serialization with custom implementation #6625 @​pichlermarc
  • feat(configuration): auto-generate TypeScript types from OTel declarative config JSON schema (stable v1.0.0) using json-schema-to-typescript and ajv #6533 @​MikeGoldsmith
  • feat(configuration, sdk-node): startNodeSDK() code path now uses log_level configuration to setup a DiagConsoleLogger #6668 @​trentm
    • Note that allowed values for log_level in a configuration YAML file are not the same set as for OTEL_LOG_LEVEL. Use log_level: trace to see all logs (equivalent of OTEL_LOG_LEVEL=ALL). Use log_level: fatal to effectively disable the SDK's internal diagnostic logger (equivalent of OTEL_LOG_LEVEL=NONE).
    • If log_level is not specified, a diagnostic console logger at "info" level will be setup.
    • An invalid YAML config file will now result in a noop OTel SDK.

🐛 Bug Fixes

  • fix(configuration): do not validate OTEL_CONFIG_FILE value before using it for file config #6643 @​trentm
  • fix(configuration): improve how 'additionalProperties' in JSON schema is translated to TS types #6650 @​trentm
  • fix(configuration): remove stripMinItems and preprocessNullArrays from validation/parsing #6657 @​trentm
  • fix(configuration): improve handling of enums in generated types #6659 @​trentm
  • fix(configuration): improve the technique for removing '| null' on types the JSON Schema #6662 @​trentm
  • fix(sampler-jaeger-remote): add missing axios dep #6656 @​trentm
  • fix(exporter-prometheus): handle malformed URLs in Prometheus exporter request handler #6674 @​homanp

experimental/v0.216.0

0.216.0

🚀 Features

🐛 Bug Fixes

  • fix(instrumentation-xml-http-request): avoid unwrapping XMLHttpRequest API when disabling #6611 @​david-luna
  • fix(instrumentation-fetch): tolerate non-writable globalThis.fetch and fix premature _isEnabled / _isFetchPatched flips in enable() @​brunorodmoreira

... (truncated)

Commits
  • 06ad0ea chore: prepare next release (#6703)
  • 38ca257 feat(otlp-transformer): replace protobufjs metrics serialization with custom ...
  • 013c600 chore: prepare next release (#6699)
  • b7a0c63 feat(semantic-conventions): update semantic conventions to v1.41.1 (#6695)
  • 774143b chore(renovate): add minimumReleaseAge to config (#6697)
  • e0dafe0 fix(otlp-exporter-base): remove brackets from IPv6 hostname in HTTP transport...
  • f804c93 chore(deps): update github/codeql-action digest to 68bde55 (#6682)
  • 95e48e7 refactor(sdk-logs): alias LoggerProviderConfig to LoggerProviderOptions (...
  • 907b627 feat(sdk-node): allow startNodeSDK() without an arg (#6688)
  • 0d15261 docs: Add SIG meeting info and welcoming language (#6689)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​opentelemetry/instrumentation-http since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 17, 2025
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 2 times, most recently from f2d0ed8 to bfbbe47 Compare March 19, 2025 22:24
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from bfbbe47 to 98be5ab Compare April 9, 2025 07:41
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 2 times, most recently from 08e032b to e34ef70 Compare April 9, 2025 22:29
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 2 times, most recently from 16ffdd2 to df00756 Compare April 25, 2025 22:47
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 2 times, most recently from d339cd4 to ea89d93 Compare May 5, 2025 22:23
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from ea89d93 to 7a1d363 Compare May 8, 2025 22:14
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from 7a1d363 to f29f727 Compare May 23, 2025 22:26
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 2 times, most recently from a3835a4 to 55fa6b5 Compare June 5, 2025 22:29
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from 55fa6b5 to ee1feec Compare June 27, 2025 22:09
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 2 times, most recently from b43b403 to b3a2857 Compare July 15, 2025 03:03
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from b3a2857 to 07427c7 Compare July 16, 2025 22:56
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 3 times, most recently from 474c7c6 to f54bac4 Compare August 14, 2025 22:32
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from f54bac4 to 11d2c4b Compare August 19, 2025 07:06
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch 3 times, most recently from 583598a to 3ddfe60 Compare September 4, 2025 12:56
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

1 similar comment
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from 3ddfe60 to ae78780 Compare September 19, 2025 22:07
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from ae78780 to 9383fdd Compare October 27, 2025 23:44
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from 9383fdd to 47655ec Compare November 6, 2025 22:08
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 12, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from 47655ec to 47bb4b9 Compare November 13, 2025 22:08
… 2 updates

Bumps the prod-dependencies group with 2 updates in the / directory: [@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js) and [@opentelemetry/instrumentation-http](https://github.com/open-telemetry/opentelemetry-js).


Updates `@opentelemetry/instrumentation` from 0.57.2 to 0.218.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.57.2...experimental/v0.218.0)

Updates `@opentelemetry/instrumentation-http` from 0.57.2 to 0.218.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.57.2...experimental/v0.218.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/instrumentation"
  dependency-version: 0.200.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: "@opentelemetry/instrumentation-http"
  dependency-version: 0.200.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the prod-dependencies group with 2 updates chore(deps): bump the prod-dependencies group across 1 directory with 2 updates May 21, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/prod-dependencies-ade5743078 branch from 47bb4b9 to a68faf4 Compare May 21, 2026 10:13
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 ☠️ do not merge javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant