diff --git a/CHANGELOG.md b/CHANGELOG.md index f83e58e35a2..c3023354c2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,24 @@ For Helidon 2.x releases please see [Helidon 2.x CHANGELOG.md](https://github.co For Helidon 1.x releases please see [Helidon 1.x CHANGELOG.md](https://github.com/oracle/helidon/blob/helidon-1.x/CHANGELOG.md) +## [3.2.6] + +This is a bugfix release of Helidon and is recommended for all users of Helidon 3. Helidon 3 requires Java 17 or newer. + +### CHANGES + +- Common: Manually count number of offered tasks instead of relying on pool active count [8264](https://github.com/helidon-io/helidon/pull/8264) +- JAX-RS Client: TLS replace in HelidonConnector fix [7902](https://github.com/helidon-io/helidon/pull/7902) +- Tracing: Backport of scope/baggage fix [8244](https://github.com/helidon-io/helidon/pull/8244) +- Tracing: Guard against NPE during early invocation of Span.current() [8256](https://github.com/helidon-io/helidon/pull/8256) +- WebClient: Calls clearData() on all data propagation providers. [8328](https://github.com/helidon-io/helidon/pull/8328) +- Dependencies: Upgrade OCI SDK to 3.34.0 [8351](https://github.com/helidon-io/helidon/pull/8351) +- Dependencies: Upgrade to Jersey 3.0.12 [8346](https://github.com/helidon-io/helidon/pull/8346) +- Dependencies: Upgrading to latest Tyrus 2.1.5 [8277](https://github.com/helidon-io/helidon/pull/8277) +- Dependencies: upgrade jsonp-api to 2.0.2 [8203](https://github.com/helidon-io/helidon/pull/8203) +- Examples: Archetype - Add jpms option with false as default [8310](https://github.com/helidon-io/helidon/pull/8310) +- Tests: Make OciMetricsDataTest.beforeEach non private [7328](https://github.com/helidon-io/helidon/pull/7328) + ## [3.2.5] This is a bugfix release of Helidon and is recommended for all users of Helidon 3. Helidon 3 requires Java 17 or newer. @@ -845,6 +863,7 @@ Notable changes: - Examples: Update bare-mp archetype to use microprofile-core [3795](https://github.com/oracle/helidon/pull/3795) +[3.2.6]: https://github.com/helidon-io/helidon/compare/3.2.5...3.2.6 [3.2.5]: https://github.com/helidon-io/helidon/compare/3.2.4...3.2.5 [3.2.4]: https://github.com/helidon-io/helidon/compare/3.2.3...3.2.4 [3.2.3]: https://github.com/helidon-io/helidon/compare/3.2.2...3.2.3 diff --git a/applications/mp/pom.xml b/applications/mp/pom.xml index 34c72d6e3ff..25e3c8d77cb 100644 --- a/applications/mp/pom.xml +++ b/applications/mp/pom.xml @@ -1,7 +1,7 @@ 3.0.2 3.6.3 - 3.0.11 + 3.0.12 6.7.0.202309050840-r 2.0.1 5.7.0 @@ -130,7 +130,7 @@ 5.12.0 4.1.100.Final 0.0.19.Final - 3.29.0 + 3.34.0 21.3.0.0 19.3.0.0 diff --git a/docs/includes/attributes.adoc b/docs/includes/attributes.adoc index f46de174e62..f51a2e219bd 100644 --- a/docs/includes/attributes.adoc +++ b/docs/includes/attributes.adoc @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// - Copyright (c) 2022, 2023 Oracle and/or its affiliates. + Copyright (c) 2022, 2024 Oracle and/or its affiliates. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ ifndef::attributes-included[] // functional attributes :imagesdir: {rootdir}/images -:helidon-version: 3.2.6-SNAPSHOT +:helidon-version: 3.2.7-SNAPSHOT :helidon-version-is-release: true ifeval::["{helidon-version-is-release}" != "true"] diff --git a/examples/config/basics/pom.xml b/examples/config/basics/pom.xml index f8cd6777dff..a917a767252 100644 --- a/examples/config/basics/pom.xml +++ b/examples/config/basics/pom.xml @@ -1,7 +1,7 @@