Skip to content

Commit fd9e6da

Browse files
chore: update changelog and versioning for version 2.2.2 (#516)
1 parent 3239314 commit fd9e6da

File tree

12 files changed

+28
-19
lines changed

12 files changed

+28
-19
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file.
44
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).
55

66
## [2.2.2] - 2023-07-05
7+
### :magic_wand: Added
8+
- Official support for Amazon Aurora with MySQL compatibility. The AWS JDBC Driver has been validated to support [MySQL JDBC Driver](https://github.com/mysql/mysql-connector-j) and [MariaDB JDBC Driver](https://github.com/mariadb-corporation/mariadb-connector-j).
9+
- Documentation:
10+
- Maintenance and release policy ([PR #442](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/442) and [PR #507](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/507)).
11+
- Migration guide for moving from the AWS JDBC Driver for MySQL to the AWS JDBC Driver ([PR #510](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/510)).
712

813
### :crab: Changed
9-
- Update documentation to indicate MySQL JDBC Driver support ([PR #508](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/508)).
14+
- Improved integration test suite performance by creating required test database clusters in advance ([PR #411](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/411)).
15+
- Documentation:
16+
- Correct `portNumber` to `serverPort` in Hikari example ([PR #504](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/504)).
17+
- Updated Maven Central links and references to third party framework examples ([PR #499](https://github.com/awslabs/aws-advanced-jdbc-wrapper/pull/499)).
1018

1119
## [2.2.1] - 2023-6-16
1220

Maintenance.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| May 21, 2023 | [Release 2.1.1](https://github.com/awslabs/`aws-advanced-jdbc-wrapper`/releases/tag/2.1.1) |
1111
| June 14, 2023 | [Release 2.2.0](https://github.com/awslabs/`aws-advanced-jdbc-wrapper`/releases/tag/2.2.0) |
1212
| June 16, 2023 | [Release 2.2.1](https://github.com/awslabs/`aws-advanced-jdbc-wrapper`/releases/tag/2.2.1) |
13+
| July 5, 2023 | [Release 2.2.2](https://github.com/awslabs/`aws-advanced-jdbc-wrapper`/releases/tag/2.2.2) |
1314

1415
``aws-advanced-jdbc-wrapper`` [follows semver](https://semver.org/#semantic-versioning-200) which means we will only
1516
release breaking changes in major versions. Generally speaking patches will be released to fix existing problems without
@@ -64,4 +65,4 @@ from the updated source after the PRs are merged.
6465
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
6566
|---------------|----------------------|-------------|-----------------|--------------------------|------------------------|
6667
| 1 | 1.0.2 | Maintenance | Oct 5, 2022 | Apr 28, 2023 | Apr 28, 2024 |
67-
| 2 | 2.2.1 | Current | Apr 28, 2023 | N/A | N/A |
68+
| 2 | 2.2.2 | Current | Apr 28, 2023 | N/A | N/A |

benchmarks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ The benchmarks do not measure the performance of target JDBC drivers nor the per
77
## Usage
88
1. Build the benchmarks with the following command `../gradlew jmhJar`.
99
1. the JAR file will be outputted to `build/libs`
10-
2. Run the benchmarks with the following command `java -jar build/libs/benchmarks-2.2.1-jmh.jar`.
10+
2. Run the benchmarks with the following command `java -jar build/libs/benchmarks-2.2.2-jmh.jar`.
1111
1. you may have to update the command based on the exact version of the produced JAR file

docs/GettingStarted.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you are using the AWS JDBC Driver as part of a Gradle project, include the wr
1414

1515
```gradle
1616
dependencies {
17-
implementation group: 'software.amazon.jdbc', name: 'aws-advanced-jdbc-wrapper', version: '2.2.1'
17+
implementation group: 'software.amazon.jdbc', name: 'aws-advanced-jdbc-wrapper', version: '2.2.2'
1818
implementation group: 'org.postgresql', name: 'postgresql', version: '42.5.0'
1919
}
2020
```
@@ -28,13 +28,13 @@ You can use pre-compiled packages that can be downloaded directly from [GitHub R
2828
For example, the following command uses wget to download the wrapper:
2929

3030
```bash
31-
wget https://github.com/awslabs/aws-advanced-jdbc-wrapper/releases/download/2.2.1/aws-advanced-jdbc-wrapper-2.2.1.jar
31+
wget https://github.com/awslabs/aws-advanced-jdbc-wrapper/releases/download/2.2.2/aws-advanced-jdbc-wrapper-2.2.2.jar
3232
```
3333

3434
Then, the following command adds the AWS JDBC Driver to the CLASSPATH:
3535

3636
```bash
37-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-advanced-jdbc-wrapper-2.2.1.jar
37+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-advanced-jdbc-wrapper-2.2.2.jar
3838
```
3939

4040
### As a Maven Dependency
@@ -46,7 +46,7 @@ You can use [Maven's dependency management](https://search.maven.org/search?q=g:
4646
<dependency>
4747
<groupId>software.amazon.jdbc</groupId>
4848
<artifactId>aws-advanced-jdbc-wrapper</artifactId>
49-
<version>2.2.1</version>
49+
<version>2.2.2</version>
5050
</dependency>
5151
</dependencies>
5252
```
@@ -57,15 +57,15 @@ You can use [Gradle's dependency management](https://search.maven.org/search?q=g
5757

5858
```gradle
5959
dependencies {
60-
implementation group: 'software.amazon.jdbc', name: 'aws-advanced-jdbc-wrapper', version: '2.2.1'
60+
implementation group: 'software.amazon.jdbc', name: 'aws-advanced-jdbc-wrapper', version: '2.2.2'
6161
}
6262
```
6363

6464
To add a Gradle dependency in a Kotlin syntax, use the following configuration:
6565

6666
```kotlin
6767
dependencies {
68-
implementation("software.amazon.jdbc:aws-advanced-jdbc-wrapper:2.2.1")
68+
implementation("software.amazon.jdbc:aws-advanced-jdbc-wrapper:2.2.2")
6969
}
7070
```
7171

docs/using-the-jdbc-driver/UsingTheJdbcDriver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ If there is an unreleased feature you would like to try, it may be available in
134134
<dependency>
135135
<groupId>software.amazon.jdbc</groupId>
136136
<artifactId>aws-advanced-jdbc-wrapper</artifactId>
137-
<version>2.2.1-SNAPSHOT</version>
137+
<version>2.2.2-SNAPSHOT</version>
138138
<scope>system</scope>
139139
<systemPath>path-to-snapshot-jar</systemPath>
140140
</dependency>

examples/SpringBootHikariExample/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In this tutorial, you will set up a Spring Boot application using Hikari and the
44

55
> Note: this tutorial was written using the following technologies:
66
> - Spring Boot 2.7.0
7-
> - AWS Advanced JDBC Wrapper 2.2.1
7+
> - AWS Advanced JDBC Wrapper 2.2.2
88
> - Postgresql 42.5.4
99
> - Java 8
1010

examples/SpringHibernateExample/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ In this tutorial, you will set up a Spring Boot and Hibernate application with t
55
> Note: this tutorial was written using the following technologies:
66
> - Spring Boot 2.7.1
77
> - Hibernate
8-
> - AWS Advanced JDBC Driver 2.2.1
8+
> - AWS Advanced JDBC Driver 2.2.2
99
> - Postgresql 42.5.4
1010
> - Gradle 7
1111
> - Java 11

examples/SpringWildflyExample/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ In this tutorial, you will set up a Wildfly and Spring Boot application with the
55
> Note: this tutorial was written using the following technologies:
66
> - Spring Boot 2.7.1
77
> - Wildfly 26.1.1 Final
8-
> - AWS Advanced JDBC Wrapper 2.2.1
8+
> - AWS Advanced JDBC Wrapper 2.2.2
99
> - Postgresql 42.5.4
1010
> - Gradle 7
1111
> - Java 11
@@ -38,7 +38,7 @@ Create a Gradle project with the following project hierarchy:
3838
│ └───main
3939
│ │ │───module.xml
4040
│ │ │───postgresql-42.5.4.jar
41-
│ │ └───aws-advanced-jdbc-wrapper-2.2.1.jar
41+
│ │ └───aws-advanced-jdbc-wrapper-2.2.2.jar
4242
└───standalone
4343
├───configuration
4444
├───amazon
@@ -133,7 +133,7 @@ Since this example uses the PostgreSQL JDBC driver as the target driver, you nee
133133
<module xmlns="urn:jboss:module:1.1" name="software.amazon.jdbc">
134134

135135
<resources>
136-
<resource-root path="aws-advanced-jdbc-wrapper-2.2.1.jar"/>
136+
<resource-root path="aws-advanced-jdbc-wrapper-2.2.2.jar"/>
137137
<resource-root path="postgresql-42.5.4.jar"/>
138138
</resources>
139139
</module>

examples/SpringWildflyExample/wildfly/modules/software/amazon/jdbc/main/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<module xmlns="urn:jboss:module:1.1" name="software.amazon.jdbc">
2020

2121
<resources>
22-
<resource-root path="aws-advanced-jdbc-wrapper-2.2.1.jar"/>
22+
<resource-root path="aws-advanced-jdbc-wrapper-2.2.2.jar"/>
2323
<resource-root path="postgresql-42.5.4.jar"/>
2424
</resources>
2525
</module>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
aws-advanced-jdbc-wrapper.version.major=2
1616
aws-advanced-jdbc-wrapper.version.minor=2
17-
aws-advanced-jdbc-wrapper.version.subminor=1
17+
aws-advanced-jdbc-wrapper.version.subminor=2
1818
snapshot=false
1919
nexus.publish=true

0 commit comments

Comments
 (0)