jenkinsci / opentelemetry-plugin

Monitor and observe Jenkins with OpenTelemetry.
https://plugins.jenkins.io/opentelemetry/
Apache License 2.0
93 stars 47 forks source link

chore(deps): bump the otel-dependencies group across 1 directory with 6 updates #855

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the otel-dependencies group with 6 updates in the / directory:

Package From To
io.opentelemetry:opentelemetry-bom 1.36.0 1.38.0
io.opentelemetry:opentelemetry-bom-alpha 1.36.0-alpha 1.38.0-alpha
io.opentelemetry.semconv:opentelemetry-semconv 1.23.1-alpha 1.25.0-alpha
io.opentelemetry.instrumentation:opentelemetry-resources 1.33.0-alpha 2.4.0-alpha
io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8 1.33.0-alpha 2.4.0-alpha
io.opentelemetry.contrib:opentelemetry-aws-resources 1.33.0-alpha 1.36.0-alpha

Updates io.opentelemetry:opentelemetry-bom from 1.36.0 to 1.38.0

Release notes

Sourced from io.opentelemetry:opentelemetry-bom's releases.

Version 1.38.0

API

  • Stabilize synchronous gauge (#6419)

Incubator

  • Add put(AttributeKey, T) overload to EventBuilder (#6331)

Baggage

  • Baggage filters space-only keys (#6431)

SDK

  • Add experimental scope config to enable / disable scopes (i.e. meter, logger, tracer) (#6375)

Traces

  • Add ReadableSpan#getAttributes (#6382)
  • Use standard ArrayList size rather than max number of links for initial span links allocation (#6252)

Metrics

  • Use low precision Clock#now when computing timestamp for exemplars (#6417)
  • Update invalid instrument name log message now that forward slash / is valid (#6343)

Exporters

  • Introduce low allocation OTLP marshalers. If using autoconfigure, opt in via OTEL_JAVA_EXPERIMENTAL_EXPORTER_MEMORY_MODE=REUSABLE_DATA.
    • Low allocation OTLP logs marshaler (#6429)
    • Low allocation OTLP metrics marshaler (#6422)
    • Low allocation OTLP trace marshaler (#6410)
    • Add memory mode support to OTLP exporters (#6430)
    • Marshal span status description without allocation (#6423)
    • Add private constructors for stateless marshalers (#6434)
  • Mark opentelemetry-exporter-sender-jdk stable (#6357)
  • PrometheusHttpServer prevent concurrent reads when reusable memory mode (#6371)
  • Ignore TLS components (SSLContext, TrustManager, KeyManager) if plain HTTP protocol is used for exporting (#6329)
  • Add is_remote_parent span flags to OTLP exported Spans and SpanLinks (#6388)
  • Add missing fields to OTLP metric exporters toString() (#6402)

Extensions

  • Rename otel.config.file to otel.experimental.config.file for autoconfigure (#6396)

OpenCensus Shim

  • Fix opencensus shim spanBuilderWithRemoteParent behavior (#6415)

... (truncated)

Changelog

Sourced from io.opentelemetry:opentelemetry-bom's changelog.

Version 1.38.0 (2024-05-10)

API

  • Stabilize synchronous gauge (#6419)

Incubator

  • Add put(AttributeKey, T) overload to EventBuilder (#6331)

Baggage

  • Baggage filters space-only keys (#6431)

SDK

  • Add experimental scope config to enable / disable scopes (i.e. meter, logger, tracer) (#6375)

Traces

  • Add ReadableSpan#getAttributes (#6382)
  • Use standard ArrayList size rather than max number of links for initial span links allocation (#6252)

Metrics

  • Use low precision Clock#now when computing timestamp for exemplars (#6417)
  • Update invalid instrument name log message now that forward slash / is valid (#6343)

Exporters

  • Introduce low allocation OTLP marshalers. If using autoconfigure, opt in via OTEL_JAVA_EXPERIMENTAL_EXPORTER_MEMORY_MODE=REUSABLE_DATA.
    • Low allocation OTLP logs marshaler (#6429)
    • Low allocation OTLP metrics marshaler (#6422)
    • Low allocation OTLP trace marshaler (#6410)
    • Add memory mode support to OTLP exporters (#6430)
    • Marshal span status description without allocation (#6423)

... (truncated)

Commits


Updates io.opentelemetry:opentelemetry-bom-alpha from 1.36.0-alpha to 1.38.0-alpha

Release notes

Sourced from io.opentelemetry:opentelemetry-bom-alpha's releases.

Version 1.37.0

NOTICE: This release contains a significant restructuring of the experimental event API and the API incubator artifact. Please read the notes in the API -> Incubator section carefully.

API

  • Promote Span#addLink to stable API (#6317)

Incubator

  • BREAKING: Rename opentelemetry-extension-incubator to opentelemetry-api-incubator, merge opentelemetry-api-events into opentelemetry-api-incubator. (#6289)
  • BREAKING: Remove domain from event api. EventEmitterProvider#setEventDomain has been removed. The event.name field should now be namespaced to avoid collisions. See Semantic Conventions for Event Attributes for more details. (#6253)
  • BREAKING: Rename EventEmitter and related classes to EventLogger. (#6316)
  • BREAKING: Refactor Event API to reflect spec changes. Restructure API to put fields in the AnyValue log record body. Add setters for timestamp, context, and severity. Set default severity to INFO=9. (#6318)

SDK

  • Add get{Signal}Exporter methods to Simple{Signal}Processor, Batch{Signal}Processor. (#6078)

Metrics

  • Use synchronized instead of reentrant lock in explicit bucket histogram (#6309)

Exporters

  • Fix typo in OTLP javadoc (#6311)
  • Add PrometheusHttpServer#toBuilder() (#6333)
  • Bugfix: Use getPrometheusName for Otel2PrometheusConverter map keys to avoid metric name conflicts (#6308)

Extensions

  • Add Metric exporter REUSABLE_DATA memory mode configuration options, including autoconfigure support via env var OTEL_JAVA_EXPERIMENTAL_EXPORTER_MEMORY_MODE=REUSABLE_DATA. (#6304)
  • Add autoconfigure console alias for logging exporter (#6027)
  • Update jaeger autoconfigure docs to point to OTLP (#6307)
  • Add ServiceInstanceIdResourceProvider implementation for generating service.instance.id UUID if not already provided by user. Included in opentelemetry-sdk-extension-incubator. (#6226)
  • Add GCP resource detector to list of resource providers in autoconfigure docs (#6336)

Tooling

  • Check for Java 17 toolchain and fail if not found (#6303)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​asafm @​bogdandrutu @​breedx-splk @​brunobat @​helpermethod @​jack-berg

... (truncated)

Changelog

Sourced from io.opentelemetry:opentelemetry-bom-alpha's changelog.

Changelog

Unreleased

Version 1.38.0 (2024-05-10)

API

  • Stabilize synchronous gauge (#6419)

Incubator

  • Add put(AttributeKey, T) overload to EventBuilder (#6331)

Baggage

  • Baggage filters space-only keys (#6431)

SDK

  • Add experimental scope config to enable / disable scopes (i.e. meter, logger, tracer) (#6375)

Traces

  • Add ReadableSpan#getAttributes (#6382)
  • Use standard ArrayList size rather than max number of links for initial span links allocation (#6252)

Metrics

  • Use low precision Clock#now when computing timestamp for exemplars (#6417)
  • Update invalid instrument name log message now that forward slash / is valid (#6343)

Exporters

  • Introduce low allocation OTLP marshalers. If using autoconfigure, opt in via OTEL_JAVA_EXPERIMENTAL_EXPORTER_MEMORY_MODE=REUSABLE_DATA.
    • Low allocation OTLP logs marshaler (#6429)
    • Low allocation OTLP metrics marshaler (#6422)
    • Low allocation OTLP trace marshaler (#6410)

... (truncated)

Commits


Updates io.opentelemetry.semconv:opentelemetry-semconv from 1.23.1-alpha to 1.25.0-alpha

Release notes

Sourced from io.opentelemetry.semconv:opentelemetry-semconv's releases.

Version 1.24.0

NOTICE: This release contains a significant restructuring of this repository and the generated classes as we evolve it towards a first stable artifact (although there is no stable artifact as of this release). Please read the notes carefully and refer to the PRs and associated issues for more details. Additionally, the README contains useful information that should be reviewed.

  • BREAKING: Split out incubating artifact. This repo now publishes io.opentelemetry.semconv:opentelemetry-semconv:{{version}} for semantic conventions which are stable (the artifact itself is not yet stable but we aim to stabilize eventually), and io.opentelemetry.semconv:opentelemetry-semconv-incubating:{{version}} for semantic conventions which are incubating (experimental) (this artifact will always have the -alpha designation). As a part of this restructuring, old attributes which were removed from semantic-conventions (without being deprecated there) have been removed. (#41)
  • BREAKING: Generate classes by root namespace. Where previously all attributes were contained in two classes, ResourceAttributes and SemanticAttributes, they are now organized by their root namespace. For example, the http.request.header attribute lives in HttpAttributes. (#45)
  • Fix typo in readme (#42)
  • Encode semconv version in build dir to fix build cache (#51)
  • Cleanup enum generation (#52)
  • Update readme to reflect new artifact strategy (#53)
  • Use build-tools release 0.24.0 (#55)
  • Exclude namespaces that aren't useful in jvm environments (#54)
  • Update to semantic-conventions 1.24.0 (#46)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​arminru @​breedx-splk @​jack-berg @​JnRouvignac @​jsuereth @​kenfinnigan @​lmolkova @​trask

Changelog

Sourced from io.opentelemetry.semconv:opentelemetry-semconv's changelog.

Changelog

Unreleased

Version 1.25.0 (2024-04-08)

  • Restore and deprecate the SemanticAttributes and ResourceAttributes classes removed in 1.23.1 for easier upgrades. These will be removed prior to a stable release of io.opentelemetry.semconv:opentelemetry-semconv. (#62)
  • Update to semantic-conventions 1.25.0 (#61)

Version 1.24.0 (2024-03-27)

NOTICE: This release contains a significant restructuring of this repository and the generated classes as we evolve it towards a first stable artifact (although there is no stable artifact as of this release). Please read the notes carefully and refer to the PRs and associated issues for more details. Additionally, the README contains useful information that should be reviewed.

  • BREAKING: Split out incubating artifact. This repo now publishes io.opentelemetry.semconv:opentelemetry-semconv:{{version}} for semantic conventions which are stable (the artifact itself is not yet stable but we aim to stabilize eventually), and io.opentelemetry.semconv:opentelemetry-semconv-incubating:{{version}} for semantic conventions which are incubating (experimental) (this artifact will always have the -alpha designation). As a part of this restructuring, old attributes which were removed from semantic-conventions (without being deprecated there) have been removed. (#41)
  • BREAKING: Generate classes by root namespace. Where previously all attributes were contained in two classes, ResourceAttributes and SemanticAttributes, they are now organized by their root namespace. For example, the http.request.header attribute lives in HttpAttributes. (#45)
  • Fix typo in readme (#42)
  • Encode semconv version in build dir to fix build cache (#51)
  • Cleanup enum generation (#52)
  • Update readme to reflect new artifact strategy (#53)
  • Use build-tools release 0.24.0 (#55)
  • Exclude namespaces that aren't useful in jvm environments (#54)
  • Update to semantic-conventions 1.24.0 (#46)

Version 1.23.1 (2023-11-21)

... (truncated)

Commits


Updates io.opentelemetry.instrumentation:opentelemetry-resources from 1.33.0-alpha to 2.4.0-alpha

Release notes

Sourced from io.opentelemetry.instrumentation:opentelemetry-resources's releases.

Version 2.3.0

This release targets the OpenTelemetry SDK 1.37.0.

Note that many artifacts have the -alpha suffix attached to their version number, reflecting that they are still alpha quality and will continue to have breaking changes. Please see the VERSIONING.md for more details.

📈 Enhancements

  • Handle async requests in spring mvc library instrumentation (#10868)
  • Support statement sanitizer enabled flag in lettuce 5.1 instrumentation (#10922)
  • Remove AWS Active Tracing span linking (#10930)
  • Make spring boot honor the standard environment variables for maps (#11000)
  • Pulsar: use span links when receive telemetry is enabled (#10650)
  • Rename messaging.kafka.destination.partition to messaging.destination.partition.id (#11086)
  • Support service.instance.id in spring starter (#11071)
  • Add library instrumentation for RestTemplateBuilder (#11054)
  • Add cloud resource providers in spring starter (#11014)

🛠️ Bug fixes

  • Fix disabling virtual thread context propagation (#10881)
  • Fix virtual thread instrumentation for jdk 21 ea versions (#10887)
  • Fix spring kafka interceptor wrappers not delegating some methods (#10935)
  • AWS Lambda Runtime legacy internal handlers need to be ignored from being instrumented and so traced … (#10942)
  • Metro: ignore UnsupportedOperationException when updating span name (#10996)
  • Fix jedis plugin for 2.7.2 (#10982)
  • Fix idle in druid instrumentation (#11079)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​123liuziming @​AlchemyDing @​breedx-splk @​cleverchuk @​damienburke @​huange7 @​itsmykairos @​jack-berg @​jaydeluca @​jeanbisutti @​johnbley @​JonasKunz @​laurit @​Moscagus @​phillipdriver @​rapphil @​robberphex @​serkan-ozal @​srinivas-bode

... (truncated)

Changelog

Sourced from io.opentelemetry.instrumentation:opentelemetry-resources's changelog.

Changelog

Unreleased

Version 1.33.3 (2024-05-21)

📈 Enhancements

  • Backport: Fix the logic to get container.id resource attribute (#11333)
  • Backport: Update the OpenTelemetry SDK version to 1.38.0 (#11386)
  • Backport: Fix a bug in undertow instrumentation related to HTTP/2 (#11387)
  • Backport: Fix container.id issue in some crio scenarios (#11405)

Version 2.4.0 (2024-05-18)

🌟 New javaagent instrumentation

📈 Enhancements

  • Instrument ConnectionSource in Akka/Pekko HTTP Servers (#11103)
  • Use constant span name when using Spring AMQP AnonymousQueues (#11141)
  • Add support for RestClient in Spring starter (#11038)
  • Add support for WebFlux server in Spring starter (#11185)
  • Add async operation end strategy for Kotlin coroutines flow (#11168)
  • Add automatic JDBC instrumentation to the Spring starter (#11258)
  • Add StructuredTaskScope instrumentation (#11202)
  • Allow reading OTel context from reactor ContextView (#11235)
  • Add spring starter r2dbc support (#11221)
  • Enable instrumentation of Spring EJB clients (#11104)

... (truncated)

Commits


Updates io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8 from 1.33.0-alpha to 2.4.0-alpha

Release notes

Sourced from io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8's releases.

Version 2.3.0

This release targets the OpenTelemetry SDK 1.37.0.

Note that many artifacts have the -alpha suffix attached to their version number, reflecting that they are still alpha quality and will continue to have breaking changes. Please see the VERSIONING.md for more details.

📈 Enhancements

  • Handle async requests in spring mvc library instrumentation (#10868)
  • Support statement sanitizer enabled flag in lettuce 5.1 instrumentation (#10922)
  • Remove AWS Active Tracing span linking (#10930)
  • Make spring boot honor the standard environment variables for maps (#11000)
  • Pulsar: use span links when receive telemetry is enabled (#10650)
  • Rename messaging.kafka.destination.partition to messaging.destination.partition.id (#11086)
  • Support service.instance.id in spring starter (#11071)
  • Add library instrumentation for RestTemplateBuilder (#11054)
  • Add cloud resource providers in spring starter (#11014)

🛠️ Bug fixes

  • Fix disabling virtual thread context propagation (#10881)
  • Fix virtual thread instrumentation for jdk 21 ea versions (#10887)
  • Fix spring kafka interceptor wrappers not delegating some methods (#10935)
  • AWS Lambda Runtime legacy internal handlers need to be ignored from being instrumented and so traced … (#10942)
  • Metro: ignore UnsupportedOperationException when updating span name (#10996)
  • Fix jedis plugin for 2.7.2 (#10982)
  • Fix idle in druid instrumentation (#11079)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​123liuziming @​AlchemyDing @​breedx-splk @​cleverchuk @​damienburke @​huange7 @​itsmykairos @​jack-berg @​jaydeluca @​jeanbisutti @​johnbley @​JonasKunz @​laurit @​Moscagus @​phillipdriver @​rapphil @​robberphex @​serkan-ozal @​srinivas-bode

... (truncated)

Changelog

Sourced from io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8's changelog.

Changelog

Unreleased

Version 1.33.3 (2024-05-21)

📈 Enhancements

  • Backport: Fix the logic to get container.id resource attribute (#11333)
  • Backport: Update the OpenTelemetry SDK version to 1.38.0 (#11386)
  • Backport: Fix a bug in undertow instrumentation related to HTTP/2 (#11387)
  • Backport: Fix container.id issue in some crio scenarios (#11405)

Version 2.4.0 (2024-05-18)

🌟 New javaagent instrumentation

📈 Enhancements

  • Instrument ConnectionSource in Akka/Pekko HTTP Servers (#11103)
  • Use constant span name when using Spring AMQP AnonymousQueues (#11141)
  • Add support for RestClient in Spring starter (#11038)
  • Add support for WebFlux server in Spring starter (#11185)
  • Add async operation end strategy for Kotlin coroutines flow (#11168)
  • Add automatic JDBC instrumentation to the Spring starter (#11258)
  • Add StructuredTaskScope instrumentation (#11202)
  • Allow reading OTel context from reactor ContextView (#11235)
  • Add spring starter r2dbc support (#11221)
  • Enable instrumentation of Spring EJB clients (#11104)

... (truncated)

Commits


Updates io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8 from 1.33.0-alpha to 2.4.0-alpha

Release notes

Sourced from io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8's releases.

Version 2.3.0

This release targets the OpenTelemetry SDK 1.37.0.

Note that many artifacts have the -alpha suffix attached to their version number, reflecting that they are still alpha quality and will continue to have breaking changes. Please see the VERSIONING.md for more details.

📈 Enhancements

  • Handle async requests in spring mvc library instrumentation (#10868)
  • Support statement sanitizer enabled flag in lettuce 5.1 instrumentation (#10922)
  • Remove AWS Active Tracing span linking (#10930)
  • Make spring boot honor the standard environment variables for maps (#11000)
  • Pulsar: use span links when receive telemetry is enabled (#10650)
  • Rename messaging.kafka.destination.partition to messaging.destination.partition.id (#11086)
  • Support service.instance.id in spring starter (#11071)
  • Add library instrumentation for RestTemplateBuilder (#11054)
  • Add cloud resource providers in spring starter (#11014)

🛠️ Bug fixes

  • Fix disabling virtual thread context propagation (#10881)
  • Fix virtual thread instrumentation for jdk 21 ea versions (#10887)
  • Fix spring kafka interceptor wrappers not delegating some methods (#10935)
  • AWS Lambda Runtime legacy internal handlers need to be ignored from being instrumented and so traced … (#10942)
  • Metro: ignore UnsupportedOperationException when updating span name (#10996)
  • Fix jedis plugin for 2.7.2 (#10982)
  • Fix idle in druid instrumentation (#11079)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​123liuziming @​AlchemyDing @​breedx-splk @​cleverchuk @​damienburke @​huange7 @​itsmykairos @​jack-berg @​jaydeluca @​jeanbisutti @​johnbley @​JonasKunz @​laurit @​Moscagus @​phillipdriver @​rapphil @​robberphex @​serkan-ozal @​srinivas-bode

... (truncated)

Changelog

Sourced from io.opentelemetry.instrumentation:opentelemetry-runtime-telemetry-java8's changelog.

Changelog

Unreleased

Version 1.33.3 (2024-05-21)

📈 Enhancements

  • Backport: Fix the logic to get container.id resource attribute (#11333)
  • Backport: Update the OpenTelemetry SDK version to 1.38.0 (#11386)
  • Backport: Fix a bug in undertow instrumentation related to HTTP/2 (#11387)
  • Backport: Fix container.id issue in some crio scenarios (#11405)

Version 2.4.0 (2024-05-18)

🌟 New javaagent instrumentation

📈 Enhancements

  • Instrument ConnectionSource in Akka/Pekko HTTP Servers (#11103)
  • Use constant span name when using Spring AMQP AnonymousQueues (#11141)
  • Add support for RestClient in Spring starter (#11038)
  • Add support for WebFlux server in Spring starter (#11185)
  • Add async operation end strategy for Kotlin coroutines flow (#11168)
  • Add automatic JDBC instrumentation to the Spring starter (#11258)
  • Add StructuredTaskScope instrumentation (#11202)
  • Allow reading OTel context from reactor ContextView (#11235)
  • Add spring starter r2dbc support (#11221)
  • Enable instrumentation of Spring EJB clients (#11104)

... (truncated)

Commits


Updates io.opentelemetry.contrib:opentelemetry-aws-resources from 1.33.0-alpha to 1.36.0-alpha

Release notes

Sourced from io.opentelemetry.contrib:opentelemetry-aws-resources's releases.

Version 1.35.0

This release targets the OpenTelemetry SDK 1.35.0.

JMX metrics

  • Add support for newly named Tomcat MBean with Spring (#1269)

Span stack traces - New 🌟

This module provides a SpanProcessor that captures stack traces on spans that meet a certain criteria such as exceeding a certain duration threshold.

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​breedx-splk @​jackshirazi @​jkwatson @​JonasKunz @​laurit @​sethAmazon @​SylvainJuge @​trask @​zeitlinger

Version 1.34.0

This release targets the OpenTelemetry SDK 1.34.0.

AWS resources

  • Add support for cloud.account.id, cloud.availability_zone, cloud.region, and cloud.resource_id (#1171)

AWS X-Ray propagator

  • Add xray propagators that prioritizes xray environment variable (#1032)

GCP Resources

  • Update docs on how to use with Java agent v2.2.0 and later (#1237)

Micrometer MeterProvider

  • Implement Metrics incubator APIs to accept advice (#1190)

🙇 Thank you

This release was possible thanks to the following contributors who shared their brilliant ideas and awesome pull requests:

@​breedx-splk @​HaloFour

... (truncated)

Changelog

Sourced from io.opentelemetry.contrib:opentelemetry-aws-resources's changelog.

Changelog

Unreleased

Version 1.36.0 (2024-05-29)

AWS resources

  • Optimization: don't attempt detection if a cloud provider has already been detected (#1225)

Baggage processor - New 🌟

This module provides a SpanProcessor that stamps baggage onto spans as attributes on start.

Consistent sampling

  • Assume random trace ID and set th-field only for sampled spans (#1278)

GCP Resources

  • Optimization: don't attempt detection if a cloud provider has already been detected (#1225)
  • Update guidance for manual instrumentation usage (#1250)

JMX metrics

  • Remove slf4j-simple dependency (#1283)

Maven extension

  • Disable metrics and logs by default (#1276)
  • Migrate to current semconv (#1299)
  • Migrate from Plexus to JSR 330 dependency injection APIs (#1320)

Span stack trace

  • Enable publishing to maven central (#1297)

Version 1.35.0 (2024-04-16)

JMX metrics

... (truncated)

Commits


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

Looks like these dependencies are updatable in another way, so this is no longer needed.