You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,14 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/#semantic-versioning-200).
5
5
6
-
## [?]
6
+
## [2.2.5] - 2023-10-03
7
+
### :magic_wand: Added
8
+
- Optional preservation of partial session state post failover ([PR #632](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/632)).
9
+
- Round Robin host selection strategy ([PR #603](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/603)).
10
+
- Sample application failover retry with Spring Boot ([PR #638](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/638)).
11
+
7
12
### :crab: Changed
8
-
- Renamed the `messages.properties` file to `aws_advanced_jdbc_wrapper_messages.properties` ([PR #643](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/647)).
13
+
- Renamed the `messages.properties` file to `aws_advanced_jdbc_wrapper_messages.properties` ([Issue #633](https://github.com/awslabs/aws-advanced-jdbc-wrapper/issues/633)).
9
14
10
15
## [2.2.4] - 2023-08-29
11
16
### :magic_wand: Added
@@ -179,12 +184,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
179
184
The Amazon Web Services (AWS) Advanced JDBC Driver allows an application to take advantage of the features of clustered Aurora databases.
180
185
181
186
### :magic_wand: Added
182
-
* Support for PostgreSQL
183
-
* The [Failover Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheFailoverPlugin.md)
184
-
* The [Host Monitoring Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheHostMonitoringPlugin.md)
185
-
* The [AWS IAM Authentication Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheIamAuthenticationPlugin.md)
186
-
* The [AWS Secrets Manager Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheAwsSecretsManagerPlugin.md)
187
+
- Support for PostgreSQL
188
+
- The [Failover Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheFailoverPlugin.md)
189
+
- The [Host Monitoring Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheHostMonitoringPlugin.md)
190
+
- The [AWS IAM Authentication Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheIamAuthenticationPlugin.md)
191
+
- The [AWS Secrets Manager Connection Plugin](./docs/using-the-jdbc-driver/using-plugins/UsingTheAwsSecretsManagerPlugin.md)
Copy file name to clipboardExpand all lines: examples/SpringWildflyExample/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
-
# Tutorial: Getting Started with the AWS Advanced JDBC Driver, Spring Boot and Wildfly
1
+
# Tutorial: Getting Started with the AWS JDBC Driver, Spring Boot and Wildfly
2
2
3
3
In this tutorial, you will set up a Wildfly and Spring Boot application with the AWS Advanced JDBC Driver, and use the wrapper to execute some simple database operations.
4
4
5
5
> Note: this tutorial was written using the following technologies:
6
6
> - Spring Boot 2.7.1
7
7
> - Wildfly 26.1.1 Final
8
-
> - AWS Advanced JDBC Wrapper 2.2.4
8
+
> - AWS JDBC Driver 2.2.5
9
9
> - Postgresql 42.5.4
10
10
> - Gradle 7
11
11
> - Java 11
@@ -38,7 +38,7 @@ Create a Gradle project with the following project hierarchy:
38
38
│ └───main
39
39
│ │ │───module.xml
40
40
│ │ │───postgresql-42.5.4.jar
41
-
│ │ └───aws-advanced-jdbc-wrapper-2.2.4.jar
41
+
│ │ └───aws-advanced-jdbc-wrapper-2.2.5.jar
42
42
└───standalone
43
43
├───configuration
44
44
├───amazon
@@ -135,7 +135,7 @@ Since this example uses the PostgreSQL JDBC driver as the target driver, you nee
0 commit comments