JDK 23 Feature Freeze / New Loom EA builds
Welcome to the latest OpenJDK Quality Outreach update! JDK 23, scheduled for General Availability on September 17, 2024, is now in Rampdown Phase One (RDP1) [1]. At this point, the overall JDK 23 feature set is frozen (see the final list of JEPs integrated into JDK 23 below) and only low-risk enhancements might still be considered. The coming weeks should be leveraged to identify and resolve as many issues as possible, i.e. before JDK 23 enters the Release Candidates phase in early August [2]. We count on you to test your projects and help us make JDK 23 another solid release! This time, we are covering several heads-up related to JDK 23 : Deprecate the Memory-Access Methods in sun.misc.Unsafe for Removal and default annotation processing policy change. Also, make sure to check the new Loom early-access builds which have an improved Java monitors implementation to work better with virtual threads. [1] https://mail.openjdk.org/pipermail/jdk-dev/2024-June/009053.html [2] https://openjdk.org/projects/jdk/23/ ## Heads-Up - JDK 23: Deprecate the Memory-Access Methods in sun.misc.Unsafe for Removal As mentioned in a previous communication [3], there’s a plan to ultimately remove the sun.misc.Unsafe memory-access methods as the platform offers safer alternatives. JEP 471 (Deprecate the Memory-Access Methods in sun.misc.Unsafe for Removal) [4] outlines in more detail this plan including the initial step which is happening in JDK 23, i.e., all of the sun.misc unsafe memory-access methods are now marked as deprecated for removal. This will cause, in JDK 23, compile-time deprecation warnings for code that refers to these methods, alerting library developers to their forthcoming removal. A new command-line option also enables application developers and users to receive runtime warnings when those methods are used. Developers relying on those sun.misc.Unsafe APIs for access memory are strongly encouraged to start, if they haven't done so yet, the migration from the sun.misc.Unsafe APIs to supported replacements. For more details, make sure to read JEP 471 (Deprecate the Memory-Access Methods in sun.misc.Unsafe for Removal). [3] https://mail.openjdk.org/pipermail/quality-discuss/2024-January/001132.html [4] https://openjdk.org/jeps/471 ## Heads-Up - JDK 23: Changes Default Annotation Processing Policy Annotation processing is a compile-time feature, where javac scans the to-be-compiled source files for annotations and then the class path for matching annotation processors, so they can generate source code. Up to JDK 22, this feature is enabled by default, which may have been reasonable when it was introduced in JDK 6 circa 2006, but from a current perspective, in the interest of making build output more robust against annotation processors being placed on the class path unintentionally, this is much less reasonable. Hence, starting with JDK 23, javac requires an additional command-line option to enable annotation processing. ### New `-proc` Value To that end, the pre-existing option `-proc:$policy` was extended, where `$policy` can now have the following values: - `none`: compilation _without_ annotation processing, this policy exists since JDK 6 - `only`: annotation processing _without_ compilation, this policy exists since JDK 6 - `full`: annotation processing followed by compilation, this policy is the default in JDK ≤22 but the value itself is new (see next section for versions that support it) Up to and including JDK 22, code bases that require annotation processing before compilation could rely on javac's default behavior to process annotations but that is no longer the case. Starting with JDK 23, at least one annotation-processing command line option needs to be present. If neither `-processor`, `--processor-path`, now `--processor-module-path` is used, `-proc:only` or `-proc:full` has to be provided. In other words, absent other command line options, `-proc:none` is the default on JDK 23. ### Migration to `-proc:full` Several measures were undertaken to help projects prepare for the switch to `-proc:full`: - As of the April 2024 JDK security updates, support for `-proc:full` has been backported to 17u (17.0.11) and 11u (11.0.23) for both Oracle JDK and OpenJDK distributions. Additionally, Oracle's 8u release (8u411) also supports `-proc:full`. - Starting in JDK 21, javac prints an informative message if implicit usage of annotation processing under the default policy is detected. With `-proc:full` backported, it is possible to configure a build that will work the same before and after the change in javac's default policy. Additional details can be found in the original proposal [5]. [5] https://mail.openjdk.org/pipermail/jdk-dev/2024-May/009028.html ## Heads-up - Loom: New EA builds with improved Java monitors implementation to work better with virtual threads Project Loom published new early-access builds [6]. These builds have an improved
CXF 4.1.0 ?
Hi all, What needs to be done for 4.1.0 to be ready for release? I am asking, because CXF 4.1.x (EE10) is a blocker for the next TomEE milestone and we might be able to help with it :) Gruß & tx Richard
Re: [PR] CXFXJC-47: XJC DefaultValue plugin uses JAXBElement that does not have a default constructor [cxf-xjc-utils]
reta commented on PR #129: URL: https://github.com/apache/cxf-xjc-utils/pull/129#issuecomment-2158124499 > @reta do you already know when the two new versions are released? @marcelhdl there is no ETA as of today, but hopefully soon enough -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump github/codeql-action from 3.25.7 to 3.25.8 [cxf]
reta merged PR #1915: URL: https://github.com/apache/cxf/pull/1915 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump cxf.opentelemetry.version from 1.34.1 to 1.39.0 [cxf]
reta closed pull request #1916: Bump cxf.opentelemetry.version from 1.34.1 to 1.39.0 URL: https://github.com/apache/cxf/pull/1916 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump cxf.opentelemetry.version from 1.34.1 to 1.39.0 [cxf]
reta commented on PR #1916: URL: https://github.com/apache/cxf/pull/1916#issuecomment-2158163597 Covered by https://issues.apache.org/jira/browse/CXF-8976 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump cxf.opentelemetry.version from 1.34.1 to 1.39.0 [cxf]
dependabot[bot] commented on PR #1916: URL: https://github.com/apache/cxf/pull/1916#issuecomment-2158163647 OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file. If you change your mind, just re-open this PR and I'll resolve any conflicts on it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump cxf.dropwizard4.version from 4.2.25 to 4.2.26 [cxf]
reta merged PR #1917: URL: https://github.com/apache/cxf/pull/1917 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[PR] Bump github/codeql-action from 2.13.4 to 3.25.8 [cxf-fediz]
dependabot[bot] opened a new pull request, #284: URL: https://github.com/apache/cxf-fediz/pull/284 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.13.4 to 3.25.8. Release notes Sourced from https://github.com/github/codeql-action/releases";>github/codeql-action's releases. CodeQL Bundle v2.17.4 Bundles CodeQL CLI v2.17.4 (https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md";>changelog, https://github.com/github/codeql-cli-binaries/releases/tag/v2.17.4";>release) Includes the following CodeQL language packs from https://github.com/github/codeql/tree/codeql-cli/v2.17.4";>github/codeql@codeql-cli/v2.17.4: codeql/cpp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/cpp/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/cpp/ql/src";>source) codeql/cpp-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/cpp/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/cpp/ql/lib";>source) codeql/csharp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/csharp/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/csharp/ql/src";>source) codeql/csharp-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/csharp/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/csharp/ql/lib";>source) codeql/go-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/go/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/go/ql/src";>source) codeql/go-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/go/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/go/ql/lib";>source) codeql/java-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/java/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/java/ql/src";>source) codeql/java-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/java/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/java/ql/lib";>source) codeql/javascript-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/javascript/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/javascript/ql/src";>source) codeql/javascript-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/javascript/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/javascript/ql/lib";>source) codeql/python-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/python/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/python/ql/src";>source) codeql/python-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/python/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/python/ql/lib";>source) codeql/ruby-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/ruby/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/ruby/ql/src";>source) codeql/ruby-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/ruby/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/ruby/ql/lib";>source) codeql/swift-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/swift/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/swift/ql/src";>source) codeql/swift-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.4/swift/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.4/swift/ql/lib";>source) CodeQL Bundle v2.17.3 Bundles CodeQL CLI v2.17.3 (https://github.com/github/codeql-cli-binaries/blob/HEAD/CHANGELOG.md";>changelog, https://github.com/github/codeql-cli-binaries/releases/tag/v2.17.3";>release) Includes the following CodeQL language packs from https://github.com/github/codeql/tree/codeql-cli/v2.17.3";>github/codeql@codeql-cli/v2.17.3: codeql/cpp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.3/cpp/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.3/cpp/ql/src";>source) codeql/cpp-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.3/cpp/ql/lib/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.3/cpp/ql/lib";>source) codeql/csharp-queries (https://github.com/github/codeql/tree/codeql-cli/v2.17.3/csharp/ql/src/CHANGELOG.md";>changelog, https://github.com/github/codeql/tree/codeql-cli/v2.17.3/csharp/ql/src";>source) codeql/csharp-all (https://github.com/github/codeql/tree/codeql-cli/v2.17.3/csharp/ql/lib/CHANGELOG.md";>changelog, h
Re: [PR] Bump github/codeql-action from 2.13.4 to 3.25.7 [cxf-fediz]
dependabot[bot] commented on PR #282: URL: https://github.com/apache/cxf-fediz/pull/282#issuecomment-2158231236 Superseded by #284. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] Bump github/codeql-action from 2.13.4 to 3.25.7 [cxf-fediz]
dependabot[bot] closed pull request #282: Bump github/codeql-action from 2.13.4 to 3.25.7 URL: https://github.com/apache/cxf-fediz/pull/282 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[PR] Bump cxf.micrometer.version from 1.13.0 to 1.13.1 [cxf]
dependabot[bot] opened a new pull request, #1918: URL: https://github.com/apache/cxf/pull/1918 Bumps `cxf.micrometer.version` from 1.13.0 to 1.13.1. Updates `io.micrometer:micrometer-core` from 1.13.0 to 1.13.1 Release notes Sourced from https://github.com/micrometer-metrics/micrometer/releases";>io.micrometer:micrometer-core's releases. 1.13.1 :hammer: Dependency Upgrades Bump me.champeau.gradle:japicmp-gradle-plugin from 0.4.2 to 0.4.3 https://redirect.github.com/micrometer-metrics/micrometer/pull/5219";>#5219 Bump spring-javaformat from 0.0.41 to 0.0.42 https://redirect.github.com/micrometer-metrics/micrometer/pull/5218";>#5218 Bump dropwizard-metrics from 4.2.25 to 4.2.26 https://redirect.github.com/micrometer-metrics/micrometer/pull/5215";>#5215 Bump org.apache.felix:org.apache.felix.scr from 2.2.10 to 2.2.12 https://redirect.github.com/micrometer-metrics/micrometer/pull/5208";>#5208 Bump software.amazon.awssdk:cloudwatch from 2.25.64 to 2.25.69 https://redirect.github.com/micrometer-metrics/micrometer/pull/5202";>#5202 Bump org.hdrhistogram:HdrHistogram from 2.2.1 to 2.2.2 https://redirect.github.com/micrometer-metrics/micrometer/pull/5190";>#5190 Bump spring from 5.3.35 to 5.3.36 https://redirect.github.com/micrometer-metrics/micrometer/pull/5189";>#5189 Bump org.hsqldb:hsqldb from 2.7.2 to 2.7.3 https://redirect.github.com/micrometer-metrics/micrometer/pull/5188";>#5188 Bump com.netflix.spectator:spectator-reg-atlas from 1.7.12 to 1.7.13 https://redirect.github.com/micrometer-metrics/micrometer/pull/5186";>#5186 Bump io.netty:netty-bom from 4.1.109.Final to 4.1.110.Final https://redirect.github.com/micrometer-metrics/micrometer/pull/5185";>#5185 Bump org.apache.maven:maven-resolver-provider from 3.9.6 to 3.9.7 https://redirect.github.com/micrometer-metrics/micrometer/pull/5183";>#5183 Bump com.signalfx.public:signalfx-java from 1.0.41 to 1.0.42 https://redirect.github.com/micrometer-metrics/micrometer/pull/5182";>#5182 Bump io.projectreactor:reactor-bom from 2022.0.18 to 2022.0.19 https://redirect.github.com/micrometer-metrics/micrometer/pull/5121";>#5121 Bump com.gradle.develocity from 3.17.3 to 3.17.4 https://redirect.github.com/micrometer-metrics/micrometer/pull/5119";>#5119 Bump spring from 5.3.34 to 5.3.35 https://redirect.github.com/micrometer-metrics/micrometer/pull/5118";>#5118 :memo: Tasks Update japicmp compatibleVersion to 1.12.0 for 1.13.x https://redirect.github.com/micrometer-metrics/micrometer/pull/5143";>#5143 Add 1.13.x and remove 1.11.x from dependabot config https://redirect.github.com/micrometer-metrics/micrometer/issues/5094";>#5094 :heart: Contributors Thank you to all the contributors who worked on this release: https://github.com/izeye";>@izeye Commits https://github.com/micrometer-metrics/micrometer/commit/cf9533ca1872731182b5bd354cad10fa56714640";>cf9533c Update compatibleVersion to 1.12.0 for 1.13.x branch (https://redirect.github.com/micrometer-metrics/micrometer/issues/5143";>#5143) https://github.com/micrometer-metrics/micrometer/commit/370148e7042456f46bd969343d5a983e66e909c3";>370148e Bump software.amazon.awssdk:cloudwatch from 2.25.64 to 2.25.69 (https://redirect.github.com/micrometer-metrics/micrometer/issues/5202";>#5202) https://github.com/micrometer-metrics/micrometer/commit/3ee9e7d32a6b78c61b76d9b9668d70795e7846b0";>3ee9e7d Merge branch '1.12.x' into 1.13.x https://github.com/micrometer-metrics/micrometer/commit/9f139127a1b7999c101e0d18b249af05de23a14f";>9f13912 Bump org.apache.felix:org.apache.felix.scr from 2.2.10 to 2.2.12 (https://redirect.github.com/micrometer-metrics/micrometer/issues/5214";>#5214) https://github.com/micrometer-metrics/micrometer/commit/37a64982a8587fa69575f6a31d3bde7e0b44bf11";>37a6498 Merge branch '1.9.x' into 1.12.x https://github.com/micrometer-metrics/micrometer/commit/155108997bf8e1e9f541facb0af4d344aa0d7f81";>1551089 Bump com.amazonaws:aws-java-sdk-cloudwatch from 1.12.734 to 1.12.739 (https://redirect.github.com/micrometer-metrics/micrometer/issues/5210";>#5210) https://github.com/micrometer-metrics/micrometer/commit/23b966e9a857d0b6d5246d2ae4778a79d3b6e770";>23b966e Bump dropwizard-metrics from 4.2.25 to 4.2.26 (https://redirect.github.com/micrometer-metrics/micrometer/issues/5201";>#5201) https://github.com/micrometer-metrics/micrometer/commit/6b7f6280237bb2df61f23d34e55a75a46c014b61";>6b7f628 Bump spring-javaformat from 0.0.41 to 0.0.42 (https://redirect.github.com/micrometer-metrics/micrometer/issues/5207";>#5207) https://github.com/micrometer-metrics/micrometer/commit/213054393c3271f4f2c8dbc35009c28d9caf5887";>2130543 Bump me.champeau.gradle:japicmp-gradle-plugin from 0.4.2 to 0.4.3 (https://redirect.github.com/micrometer-metrics/micrometer/issues/5212";>#5212) https://github.com/micrometer-metrics/micrometer/commit/82232f22c7c62f575f81364839feb1612e1ccd2c";>82
[PR] Bump cxf.micrometer-tracing.version from 1.2.6 to 1.3.1 [cxf]
dependabot[bot] opened a new pull request, #1919: URL: https://github.com/apache/cxf/pull/1919 Bumps `cxf.micrometer-tracing.version` from 1.2.6 to 1.3.1. Updates `io.micrometer:micrometer-tracing-bridge-brave` from 1.2.6 to 1.3.1 Release notes Sourced from https://github.com/micrometer-metrics/tracing/releases";>io.micrometer:micrometer-tracing-bridge-brave's releases. 1.3.1 :lady_beetle: Bug Fixes OtelTracer does not set parent context when explicitly specified https://redirect.github.com/micrometer-metrics/tracing/issues/698";>#698 The value of parentId depends on sampling https://redirect.github.com/micrometer-metrics/tracing/issues/687";>#687 :hammer: Dependency Upgrades Bump io.micrometer:micrometer-bom from 1.13.0 to 1.13.1 https://redirect.github.com/micrometer-metrics/tracing/pull/743";>#743 Bump io.spring.javaformat:spring-javaformat-checkstyle from 0.0.41 to 0.0.42 https://redirect.github.com/micrometer-metrics/tracing/pull/738";>#738 Bump io.spring.javaformat:spring-javaformat-gradle-plugin from 0.0.41 to 0.0.42 https://redirect.github.com/micrometer-metrics/tracing/pull/736";>#736 Bump io.zipkin.aws:brave-propagation-aws from 1.2.4 to 1.2.5 https://redirect.github.com/micrometer-metrics/tracing/pull/730";>#730 Bump spring from 5.3.35 to 5.3.36 https://redirect.github.com/micrometer-metrics/tracing/pull/727";>#727 Bump io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv from 1.33.2-alpha to 1.33.3-alpha https://redirect.github.com/micrometer-metrics/tracing/pull/724";>#724 Bump com.gradle.develocity from 3.17.3 to 3.17.4 https://redirect.github.com/micrometer-metrics/tracing/pull/718";>#718 Bump io.projectreactor:reactor-bom from 2022.0.18 to 2022.0.19 https://redirect.github.com/micrometer-metrics/tracing/pull/711";>#711 Bump org.aspectj:aspectjweaver from 1.9.22 to 1.9.22.1 https://redirect.github.com/micrometer-metrics/tracing/pull/708";>#708 :memo: Tasks Add 1.3.x and remove 1.1.x from dependabot config https://redirect.github.com/micrometer-metrics/tracing/issues/707";>#707 1.3.0 :star: New Features / Enhancements SimpleTracer setParent and setNoParent don't do anything https://redirect.github.com/micrometer-metrics/tracing/issues/675";>#675 re-uses w3c traceparent parser from brave https://redirect.github.com/micrometer-metrics/tracing/pull/532";>#532 deps: bumps to Brave 6.0.0 and moves off internal type https://redirect.github.com/micrometer-metrics/tracing/pull/511";>#511 Add TestSpanReporter https://redirect.github.com/micrometer-metrics/tracing/issues/463";>#463 :lady_beetle: Bug Fixes ObservationAwareBaggageThreadLocalAccessor loses scopes in the wrong order https://redirect.github.com/micrometer-metrics/tracing/issues/579";>#579 stops setting shared flag when extracting headers https://redirect.github.com/micrometer-metrics/tracing/pull/535";>#535 Spring Boot 3.2.1 misbehave with micrometer-tracing-bridge-brave:1.2.1 https://redirect.github.com/micrometer-metrics/tracing/issues/504";>#504 OpenTelemetry and tagged baggage does not create a tag https://redirect.github.com/micrometer-metrics/tracing/issues/375";>#375 Tasks Exclude benchmarks module from the BOM https://redirect.github.com/micrometer-metrics/tracing/issues/621";>#621 Add package-info.java with non-null by default https://redirect.github.com/micrometer-metrics/tracing/pull/545";>#545 Further deprecate OTel and Brave Http instrumentations https://redirect.github.com/micrometer-metrics/tracing/issues/371";>#371 Remove unused OTel Logging Exporter dependency https://redirect.github.com/micrometer-metrics/tracing/issues/562";>#562 :hammer: Dependency Upgrades Upgrade to OTel 1.35.0 and Zipkin dependencies https://redirect.github.com/micrometer-metrics/tracing/pull/536";>#536 Upgrade to Micrometer 1.13.0 https://redirect.github.com/micrometer-metrics/tracing/issues/700";>#700 Bump io.opentelemetry:opentelemetry-bom-alpha from 1.37.0-alpha to 1.38.0-alpha https://redirect.github.com/micrometer-metrics/tracing/pull/705";>#705 Bump io.opentelemetry:opentelemetry-bom from 1.37.0 to 1.38.0 https://redirect.github.com/micrometer-metrics/tracing/pull/702";>#702 ... (truncated) Commits https://github.com/micrometer-metrics/tracing/commit/6dea9a16fecfb24f6485281562212cd2905bf511";>6dea9a1 Merge branch '1.2.x' into 1.3.x https://github.com/micrometer-metrics/tracing/commit/1ce6d9371955af50c1d59f3b003a0194890f4464";>1ce6d93 Bump io.micrometer:micrometer-bom from 1.13.0 to 1.13.1 (https://redirect.github.com/micrometer-metrics/tracing/issues/743";>#743) https://github.com/micrometer-metrics/tracing/commit/a3c8a247608ec3de7e4de1a086b9e8cc77ce1d85";>a3c8a24 Bump io.micrometer:micrometer-bom from 1.12.6 to 1.12.7 (https://redirect.github.com/micrometer-metrics/tracing/issues/742";>#742