pragmaticivan / nestjs-otel

OpenTelemetry (Tracing + Metrics) module for Nest framework (node.js) 🔭
Apache License 2.0
540 stars 49 forks source link

build(deps): bump the otel-dependencies group with 4 updates #487

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 months ago

Bumps the otel-dependencies group with 4 updates: @opentelemetry/api, @opentelemetry/exporter-prometheus, @opentelemetry/sdk-metrics and @opentelemetry/sdk-trace-node.

Updates @opentelemetry/api from 1.8.0 to 1.9.0

Release notes

Sourced from @​opentelemetry/api's releases.

v1.9.0

:rocket: (Enhancement)

  • feat(instrumentation-grpc): set net.peer.name and net.peer.port on client spans #3430

:bug: (Bug Fix)

  • fix(sdk-metrics): use default Resource to comply with semantic conventions #3411 @​pichlermarc
    • Metrics exported by the SDK now contain the following resource attributes by default:
      • service.name
      • telemetry.sdk.name
      • telemetry.sdk.language
      • telemetry.sdk.version
  • fix(sdk-trace): make spans resilient to clock drift #3434 @​dyladan
  • fix(selenium-tests): updated webpack version for selenium test issue #3456 @​SaumyaBhushan
  • fix(sdk-metrics): fix duplicated registration of metrics for collectors #3488 @​legendecas
  • fix(core): fix precision loss in numberToHrtime #3480 @​legendecas

:house: (Internal)

api/v1.9.0

1.9.0

:rocket: (Enhancement)

  • feat(metrics): added synchronous gauge #4528 @​clintonb
  • feat(api): allow adding span links after span creation #4536 @​seemk
    • This change is non-breaking for end-users, but breaking for Trace SDK implmentations in accordance with the specification as new features need to be implemented.
  • feat: support node 22 #4666 @​dyladan
Changelog

Sourced from @​opentelemetry/api's changelog.

1.9.0

:rocket: (Enhancement)

  • feat(instrumentation-grpc): set net.peer.name and net.peer.port on client spans #3430
  • feat(exporter-trace-otlp-proto): Add protobuf otlp trace exporter support for browser #3208 @​pkanal

:bug: (Bug Fix)

  • fix(sdk-metrics): use default Resource to comply with semantic conventions #3411 @​pichlermarc
    • Metrics exported by the SDK now contain the following resource attributes by default:
      • service.name
      • telemetry.sdk.name
      • telemetry.sdk.language
      • telemetry.sdk.version
  • fix(sdk-metrics): use Date.now() for instrument recording timestamps #3514 @​MisterSquishy
  • fix(sdk-trace): make spans resilient to clock drift #3434 @​dyladan
  • fix(selenium-tests): updated webpack version for selenium test issue #3456 @​SaumyaBhushan
  • fix(sdk-metrics): collect metrics when periodic exporting metric reader flushes #3517 @​legendecas
  • fix(sdk-metrics): fix duplicated registration of metrics for collectors #3488 @​legendecas
  • fix(core): fix precision loss in numberToHrtime #3480 @​legendecas

:house: (Internal)

Commits
  • 08f597f chore: release API 1.4.0 / SDK 1.9.0 / 0.35.0 (#3516)
  • 969bb62 fix(tracing): make spans resilient to performance clock drift (#3434)
  • 2dcc898 Document repo settings (#3519)
  • 475e401 docs(sdk-metrics): fix badge and reword introductory sentence (#3484)
  • 126ae93 fix(sdk-node): fix exporter to be read only OTEL_TRACES_EXPORTER is set to a ...
  • c93ab9e fix(core): fix precision loss in numberToHrtime (#3480)
  • 3fd6fb8 fix(sdk-metrics): fix duplicated registration of metrics for collectors (#3488)
  • 93222fc fix(api): declare this parameter type in observable callbacks (#3497)
  • eecb800 feat(sdk-node): configure no-op sdk with OTEL_SDK_DISABLED environment vari...
  • 1c3af6c feat(api-logs): add the SeverityNumber enumeration (#3443)
  • Additional commits viewable in compare view


Updates @opentelemetry/exporter-prometheus from 0.51.1 to 0.52.1

Release notes

Sourced from @​opentelemetry/exporter-prometheus's releases.

experimental/v0.52.1

0.52.1

:rocket: (Enhancement)

  • refactor(instrumentation-fetch): move fetch to use SEMATRR #4632
  • refactor(otlp-transformer): use explicit exports #4785 @​pichlermarc

:bug: (Bug Fix)

:house: (Internal)

  • test: add npm run maint:regenerate-test-certs maintenance script and regenerate recently expired test certs #4777

experimental/v0.52.0

0.52.0

:boom: Breaking Change

  • feat(exporter--otlp-)!: move serialization for Node.js exporters to @opentelemetry/otlp-transformer #4542 @​pichlermarc
    • Breaking changes:
      • (user-facing) convert() now returns an empty object and will be removed in a follow-up
      • (internal) OTLPExporterNodeBase now has additional constructor parameters that are required
      • (internal) OTLPExporterNodeBase now has an additional ResponseType type parameter
  • feat(exporter--otlp-)!: move serialization for Node.js exporters to @opentelemetry/otlp-transformer #4581 @​pichlermarc
    • Breaking changes:
      • (user-facing) convert() has been removed from all exporters
      • (internal) OTLPExporterBrowserBase: RequestType has been replaced by a ResponseType type-argument
      • (internal) OTLPExporterNodeBase: ServiceRequest has been replaced by a ServiceResponse type-argument
      • (internal) the @opentelemetry/otlp-exporter-proto-base package has been removed, and will from now on be deprecated in npm
  • feat(instrumentation): remove default value for config in base instrumentation constructor #4695: @​blumamir
  • fix(instrumentation)!: remove unused supportedVersions from Instrumentation interface #4694 @​blumamir
  • feat(instrumentation)!: simplify registerInstrumentations() API
    • Breaking changes:
      • removes InstrumentationOptions type
      • occurrences of InstrumentationOptions are now replaced by (Instrumentation | Instrumentation[])[]
        • migrate usages of registerInstrumentations({instrumentations: fooInstrumentation}) to registerInstrumentations({instrumentations: [fooInstrumentation]})
        • passing Instrumentation classes to registerInstrumentations() is now not possible anymore.
  • feat(sdk-node)!: simplify type of instrumentations option
    • Breaking changes:
      • replaces InstrumentationOptions with (Instrumentation | Instrumentation[])[]

:rocket: (Enhancement)

  • feat(instrumentation): apply unwrap before wrap in base class #4692

... (truncated)

Commits
  • 0608f40 chore: prepare release 1.25.1/0.52.1 (#4809)
  • cdd5284 feat(instrumentation): Use a caret version for import-in-the-middle depende...
  • 81f78a6 chore(deps): update dependency chromedriver to v126 (#4800)
  • 1041ed4 chore(deps): lock file maintenance (#4801)
  • c07aa53 fix: Update import-in-the-middle (#4806)
  • 3cbc9c7 docs: add SimpleSpanProcessor warning (#4798)
  • 9e421f6 docs(exporter-logs-otlp-http): change OTLPLogsExporter to OTLPLogExporter (#4...
  • dd83751 docs: change to SEMRESATTRS_SERVICE_NAME (#4797)
  • 4fa7c13 refactor(examples/opentelemetry-web): use new exported string constants for s...
  • 812c774 refactor(context-zone-peer-dep): use explicit exports (#4787)
  • Additional commits viewable in compare view


Updates @opentelemetry/sdk-metrics from 1.24.1 to 1.25.1

Release notes

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

v1.25.1

1.25.1

:books: (Refine Doc)

  • refactor(examples): added usage of @​opentelemetry/semantic-conventions and @​opentelemetry/resources to the examples in examples/opentelemetry-web for maintaining consistency across all examples. #4764 @​Zen-cronic

:house: (Internal)

v1.25.0

1.25.0

:rocket: (Enhancement)

:books: (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @​Zen-cronic
Changelog

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

1.25.1

:books: (Refine Doc)

  • refactor(examples): added usage of @​opentelemetry/semantic-conventions and @​opentelemetry/resources to the examples in examples/opentelemetry-web for maintaining consistency across all examples. #4764 @​Zen-cronic

:house: (Internal)

1.25.0

:rocket: (Enhancement)

:books: (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @​Zen-cronic
Commits
  • 0608f40 chore: prepare release 1.25.1/0.52.1 (#4809)
  • cdd5284 feat(instrumentation): Use a caret version for import-in-the-middle depende...
  • 81f78a6 chore(deps): update dependency chromedriver to v126 (#4800)
  • 1041ed4 chore(deps): lock file maintenance (#4801)
  • c07aa53 fix: Update import-in-the-middle (#4806)
  • 3cbc9c7 docs: add SimpleSpanProcessor warning (#4798)
  • 9e421f6 docs(exporter-logs-otlp-http): change OTLPLogsExporter to OTLPLogExporter (#4...
  • dd83751 docs: change to SEMRESATTRS_SERVICE_NAME (#4797)
  • 4fa7c13 refactor(examples/opentelemetry-web): use new exported string constants for s...
  • 812c774 refactor(context-zone-peer-dep): use explicit exports (#4787)
  • Additional commits viewable in compare view


Updates @opentelemetry/sdk-trace-node from 1.24.1 to 1.25.1

Release notes

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

v1.25.1

1.25.1

:books: (Refine Doc)

  • refactor(examples): added usage of @​opentelemetry/semantic-conventions and @​opentelemetry/resources to the examples in examples/opentelemetry-web for maintaining consistency across all examples. #4764 @​Zen-cronic

:house: (Internal)

v1.25.0

1.25.0

:rocket: (Enhancement)

:books: (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @​Zen-cronic
Changelog

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

1.25.1

:books: (Refine Doc)

  • refactor(examples): added usage of @​opentelemetry/semantic-conventions and @​opentelemetry/resources to the examples in examples/opentelemetry-web for maintaining consistency across all examples. #4764 @​Zen-cronic

:house: (Internal)

1.25.0

:rocket: (Enhancement)

:books: (Refine Doc)

  • refactor(examples): use new exported string constants for semconv in examples/esm-http-ts #4758 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/basic-tracer-node #4759 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/http #4750 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/grpc-js #4760 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/otlp-exporter-node #4762 @​Zen-cronic
  • refactor(examples): use new exported string constants for semconv in examples/opentracing-shim #4761 @​Zen-cronic
Commits
  • 0608f40 chore: prepare release 1.25.1/0.52.1 (#4809)
  • cdd5284 feat(instrumentation): Use a caret version for import-in-the-middle depende...
  • 81f78a6 chore(deps): update dependency chromedriver to v126 (#4800)
  • 1041ed4 chore(deps): lock file maintenance (#4801)
  • c07aa53 fix: Update import-in-the-middle (#4806)
  • 3cbc9c7 docs: add SimpleSpanProcessor warning (#4798)
  • 9e421f6 docs(exporter-logs-otlp-http): change OTLPLogsExporter to OTLPLogExporter (#4...
  • dd83751 docs: change to SEMRESATTRS_SERVICE_NAME (#4797)
  • 4fa7c13 refactor(examples/opentelemetry-web): use new exported string constants for s...
  • 812c774 refactor(context-zone-peer-dep): use explicit exports (#4787)
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 2 weeks ago

Superseded by #495.