Skip to content

Commit 890ee68

Browse files
authored
Update version to 2.3.0-SNAPSHOT. Update CHANGELOG. (helidon-io#2778)
* Update version to 2.3.0-SNAPSHOT. Update CHANGELOG.
1 parent c589951 commit 890ee68

402 files changed

Lines changed: 791 additions & 777 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
77

88
For Helidon 1.x releases please see [Helidon 1.x CHANGELOG.md](https://github.com/oracle/helidon/blob/helidon-1.x/CHANGELOG.md)
99

10-
## [2.2.1-SNAPSHOT]
10+
## [2.3.0]
11+
12+
2.3.0 is a minor release of Helidon that contains bug fixes and minor enhancements.
13+
14+
### Compatibility
15+
16+
2.3.0 is API compatible with 2.2.0.
17+
18+
### CHANGES
19+
20+
## [2.2.1]
1121

1222
2.2.1 is a bugfix release of Helidon. It contains bug fixes, performance fixes and dependency upgrades.
1323

@@ -30,8 +40,10 @@ For Helidon 1.x releases please see [Helidon 1.x CHANGELOG.md](https://github.co
3040
- Examples: Fix WebServer Basics example [2634](https://github.com/oracle/helidon/pull/2634)
3141
- Examples: Fixed different output in DbClient SE archetype [2703](https://github.com/oracle/helidon/pull/2703)
3242
- Examples: PokemonService template fixed in SE Database Archetype. [2701](https://github.com/oracle/helidon/pull/2701)
43+
- Fault Tolerance: Do not attempt to access the request context in Fallback callback [2748](https://github.com/oracle/helidon/pull/2748)
3344
- Jersey: Allow override of Jersey property via config [2737](https://github.com/oracle/helidon/pull/2737)
3445
- K8s: Update k8s descriptors to avoid using deprecated APIs [2719](https://github.com/oracle/helidon/pull/2719)
46+
- Metrics: Support async invocations using optional synthetic SimplyTimed behavior [2745](https://github.com/oracle/helidon/pull/2745)
3547
- Micronaut extensions: micronaut data with ucp [2572](https://github.com/oracle/helidon/pull/2572)
3648
- Performance: New implementation of LazyValue [2738](https://github.com/oracle/helidon/pull/2738)
3749
- Performance: Properly release underlying buffer before passing it to WebSocket handler [2715](https://github.com/oracle/helidon/pull/2715)
@@ -44,6 +56,7 @@ For Helidon 1.x releases please see [Helidon 1.x CHANGELOG.md](https://github.co
4456
- WebServer: Lays the groundwork for permitting other Netty transports [2478](https://github.com/oracle/helidon/pull/2478)
4557
- Build: Manage versions of version plugin and helidon-maven-plugin [2626](https://github.com/oracle/helidon/pull/2626)
4658

59+
4760
## [2.2.0]
4861

4962
2.2.0 is a minor release of Helidon. It contains bug fixes and enhancements. Notable enhancements:
@@ -1231,7 +1244,8 @@ If there is no authorization provider configured, ABAC provider will be configur
12311244
otherwise they are ignored
12321245

12331246

1234-
[2.2.1-SNAPSHOT]: https://github.com/oracle/helidon/compare/2.2.0...HEAD
1247+
[2.3.0-SNAPSHOT]: https://github.com/oracle/helidon/compare/2.2.1...HEAD
1248+
[2.2.0]: https://github.com/oracle/helidon/compare/2.2.0...2.2.1
12351249
[2.2.0]: https://github.com/oracle/helidon/compare/2.1.0...2.2.0
12361250
[2.1.0]: https://github.com/oracle/helidon/compare/2.0.2...2.1.0
12371251
[2.0.2]: https://github.com/oracle/helidon/compare/2.0.1...2.0.2

applications/mp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2019, 2020 Oracle and/or its affiliates.
4+
Copyright (c) 2019, 2021 Oracle and/or its affiliates.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.applications</groupId>
2525
<artifactId>helidon-applications-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<artifactId>helidon-mp</artifactId>
2929
<packaging>pom</packaging>

applications/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2019, 2021 Oracle and/or its affiliates. All rights reserved.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon</groupId>
2525
<artifactId>helidon-dependencies</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
<relativePath>../dependencies/pom.xml</relativePath>
2828
</parent>
2929
<groupId>io.helidon.applications</groupId>

applications/se/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2019, 2020 Oracle and/or its affiliates.
4+
Copyright (c) 2019, 2021 Oracle and/or its affiliates.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.applications</groupId>
2525
<artifactId>helidon-applications-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<artifactId>helidon-se</artifactId>
2929
<packaging>pom</packaging>

archetypes/bare-mp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.archetypes</groupId>
2525
<artifactId>helidon-archetypes-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<packaging>helidon-archetype</packaging>
2929
<artifactId>helidon-bare-mp</artifactId>

archetypes/bare-se/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.archetypes</groupId>
2525
<artifactId>helidon-archetypes-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<packaging>helidon-archetype</packaging>
2929
<artifactId>helidon-bare-se</artifactId>

archetypes/catalog/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.archetypes</groupId>
2525
<artifactId>helidon-archetypes-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<packaging>helidon-archetype-catalog</packaging>
2929
<artifactId>helidon-archetype-catalog</artifactId>

archetypes/database-mp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.archetypes</groupId>
2525
<artifactId>helidon-archetypes-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<packaging>helidon-archetype</packaging>
2929
<artifactId>helidon-database-mp</artifactId>

archetypes/database-se/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon.archetypes</groupId>
2525
<artifactId>helidon-archetypes-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<packaging>helidon-archetype</packaging>
2929
<artifactId>helidon-database-se</artifactId>

archetypes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>io.helidon</groupId>
2525
<artifactId>helidon-project</artifactId>
26-
<version>2.2.1-SNAPSHOT</version>
26+
<version>2.3.0-SNAPSHOT</version>
2727
</parent>
2828
<groupId>io.helidon.archetypes</groupId>
2929
<artifactId>helidon-archetypes-project</artifactId>

0 commit comments

Comments
 (0)