Skip to content

Commit 4629bb4

Browse files
jasonlamzcrystall-bitquill
authored andcommitted
chore: update changelog and versioning for 1.1.14 release
1 parent 090d835 commit 4629bb4

File tree

4 files changed

+38
-28
lines changed

4 files changed

+38
-28
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.
33

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

6+
## [1.1.14] - 2024-03-04
7+
### Added
8+
* Documentation regarding the differences between the AWS JDBC Driver and the AWS JDBC Driver for MySQL ([PR #554](https://github.com/awslabs/aws-mysql-jdbc/pull/554)).
9+
* Support for China endpoint patterns ([PR #543](https://github.com/awslabs/aws-mysql-jdbc/pull/543)).
10+
11+
### Fixed
12+
* Statement cancel waits for statement to finish before cancelling ([Issue #527](https://github.com/awslabs/aws-mysql-jdbc/issues/527)).
13+
614
## [1.1.13] - 2024-01-19
715
### Changed
816
* Upstream changes from MySQL 8.0.32 and 8.0.33 community driver. The upstream 8.0.33 changes include a security fix for [CVE-2023-21971 - RCE and Unauthorized DB Access](https://github.com/awslabs/aws-mysql-jdbc/security/advisories/GHSA-vj9v-mpjv-qf74).
@@ -191,6 +199,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
191199
### Added
192200
* This driver is based on the MySQL 8.0.21 community driver. The driver is cluster aware for Amazon Aurora MySQL. It takes advantage of Amazon Aurora's fast failover capabilities, reducing failover times from minutes to seconds.
193201

202+
[1.1.14]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.13...1.1.14
194203
[1.1.13]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.12...1.1.13
195204
[1.1.12]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.11...1.1.12
196205
[1.1.11]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.10...1.1.11

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ The AWS JDBC Driver for MySQL can be installed from pre-compiled packages that c
3838

3939
**Example - Direct download with wget**
4040
```bash
41-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.13/aws-mysql-jdbc-1.1.13.jar
42-
cp aws-mysql-jdbc-1.1.13.jar /home/userx/libs/
43-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.13.jar
41+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.14/aws-mysql-jdbc-1.1.14.jar
42+
cp aws-mysql-jdbc-1.1.14.jar /home/userx/libs/
43+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.14.jar
4444
```
4545

4646
**Upgrading to a newer version with wget**
4747

48-
To upgrade the driver, replace the .jar file of your earlier driver with the new `.jar` file. After replacing the `.jar` file, update the CLASSPATH to include the name of the new file. For example, to upgrade to version 1.1.13:
48+
To upgrade the driver, replace the .jar file of your earlier driver with the new `.jar` file. After replacing the `.jar` file, update the CLASSPATH to include the name of the new file. For example, to upgrade to version 1.1.14:
4949
```bash
50-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.13/aws-mysql-jdbc-1.1.13.jar
51-
cp aws-mysql-jdbc-1.1.13.jar /home/userx/libs/
52-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.13.jar
50+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.14/aws-mysql-jdbc-1.1.14.jar
51+
cp aws-mysql-jdbc-1.1.14.jar /home/userx/libs/
52+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.14.jar
5353
```
5454

5555
#### As a Maven dependency
@@ -61,20 +61,20 @@ You can use [Maven's dependency management](https://central.sonatype.com/search?
6161
<dependency>
6262
<groupId>software.aws.rds</groupId>
6363
<artifactId>aws-mysql-jdbc</artifactId>
64-
<version>1.1.13</version>
64+
<version>1.1.14</version>
6565
</dependency>
6666
</dependencies>
6767
```
6868

6969
**Upgrading to a newer version with Maven**
7070

71-
To upgrade to a newer version of the driver, replace the version number identified in the `pom.xml` file with the newer driver version. For example, to upgrade to version 1.1.13, modify the file to include:
71+
To upgrade to a newer version of the driver, replace the version number identified in the `pom.xml` file with the newer driver version. For example, to upgrade to version 1.1.14, modify the file to include:
7272
```xml
7373
<dependencies>
7474
<dependency>
7575
<groupId>software.aws.rds</groupId>
7676
<artifactId>aws-mysql-jdbc</artifactId>
77-
<version>1.1.13</version>
77+
<version>1.1.14</version>
7878
</dependency>
7979
</dependencies>
8080
```
@@ -85,16 +85,16 @@ You can use [Gradle's dependency management](https://central.sonatype.com/search
8585
**Example - Gradle**
8686
```gradle
8787
dependencies {
88-
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.13'
88+
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.14'
8989
}
9090
```
9191

9292
**Upgrading to a newer version with Gradle**
9393

94-
To upgrade to a newer version of the driver, replace the version number identified in the application's ```build.gradle``` file with the newer driver version. For example, to upgrade to version 1.1.13:
94+
To upgrade to a newer version of the driver, replace the version number identified in the application's ```build.gradle``` file with the newer driver version. For example, to upgrade to version 1.1.14:
9595
```gradle
9696
dependencies {
97-
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.13'
97+
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.14'
9898
}
9999
```
100100

@@ -104,9 +104,9 @@ To use the driver with an IDE (for example, IntelliJ), download the `.jar` file
104104
**Example - IntelliJ**
105105

106106
```bash
107-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.13/aws-mysql-jdbc-1.1.13.jar
108-
cp aws-mysql-jdbc-1.1.13.jar /home/userx/libs/
109-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.13.jar
107+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.14/aws-mysql-jdbc-1.1.14.jar
108+
cp aws-mysql-jdbc-1.1.14.jar /home/userx/libs/
109+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.14.jar
110110
```
111111

112112
After downloading the `.jar` file and updating the CLASSPATH, add the driver information to your `Project`:
@@ -126,9 +126,9 @@ After downloading the `.jar` file and updating the CLASSPATH, add the driver inf
126126
To upgrade to a newer version of the driver, download the updated driver, and add it to your CLASSPATH:
127127

128128
```bash
129-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.13/aws-mysql-jdbc-1.1.13.jar
130-
cp aws-mysql-jdbc-1.1.13.jar /home/userx/libs/
131-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.13.jar
129+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.14/aws-mysql-jdbc-1.1.14.jar
130+
cp aws-mysql-jdbc-1.1.14.jar /home/userx/libs/
131+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.14.jar
132132
```
133133

134134
Then, follow the steps listed above to update your project to the latest version.
@@ -140,9 +140,9 @@ To use the driver with the DBeaver database client, download the `.jar` file, co
140140
**Example - DBeaver**
141141

142142
```bash
143-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.13/aws-mysql-jdbc-1.1.13.jar
144-
cp aws-mysql-jdbc-1.1.13.jar /home/userx/libs/
145-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.13.jar
143+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.14/aws-mysql-jdbc-1.1.14.jar
144+
cp aws-mysql-jdbc-1.1.14.jar /home/userx/libs/
145+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.14.jar
146146
```
147147

148148
After downloading the .jar file and adding it to your CLASSPATH, add the driver information to the DBeaver client:
@@ -185,9 +185,9 @@ After adding driver information, you can create new connections that use the AWS
185185
To upgrade to a newer version of the driver, download the updated driver, and add it to your CLASSPATH:
186186
187187
```bash
188-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1./aws-mysql-jdbc-1.1.13.jar
189-
cp aws-mysql-jdbc-1.1.13.jar /home/userx/libs/
190-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.13.jar
188+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1./aws-mysql-jdbc-1.1.14.jar
189+
cp aws-mysql-jdbc-1.1.14.jar /home/userx/libs/
190+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.14.jar
191191
```
192192
Then, follow the steps listed above to update your DBeaver client settings.
193193
@@ -200,7 +200,7 @@ If there is an unreleased feature you would like to try, it may be available in
200200
<dependency>
201201
<groupId>software.aws.rds</groupId>
202202
<artifactId>aws-mysql-jdbc</artifactId>
203-
<version>1.1.14</version>
203+
<version>1.1.15</version>
204204
<scope>system</scope>
205205
<systemPath>path-to-snapshot-jar</systemPath>
206206
</dependency>

RELEASE_POLICY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
| November 2, 2023 | [Release 1.1.11](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.11) |
1717
| December 21, 2023 | [Release 1.1.12](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.12) |
1818
| January 19, 2024 | [Release 1.1.13](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.13) |
19+
| March 4, 2024 | [Release 1.1.14](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.14) |
1920

2021

2122
aws-mysql-jdbc-driver [follows semver](https://semver.org/#semantic-versioning-200) which means we will only release
@@ -57,4 +58,4 @@ from the updated source after the PRs are merged.
5758
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
5859
|---------------|----------------------|-------------|-----------------|--------------------------|------------------------|
5960
| 1 | 1.0.0 | Maintenance | Mar 1, 2022 | June 29, 2022 | June 29, 2023 |
60-
| 2 | 1.1.12 | Current | June 28, 2023 | July 25, 2023 | July 25, 2024 |
61+
| 2 | 1.1.14 | Current | June 28, 2023 | July 25, 2023 | July 25, 2024 |

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spotbugs.version=4.0.0
4040
# Build properties
4141
com.mysql.cj.build.driver.version.major=1
4242
com.mysql.cj.build.driver.version.minor=1
43-
com.mysql.cj.build.driver.version.subminor=13
43+
com.mysql.cj.build.driver.version.subminor=14
4444
com.mysql.cj.build.driver.displayName=Amazon Web Services (AWS) JDBC Driver for MySQL
4545
com.mysql.cj.build.driver.name=aws-mysql-connector-java
4646
com.mysql.cj.build.licenseType=GPLv2

0 commit comments

Comments
 (0)