Skip to content

Commit f377729

Browse files
chore: version bump and changelog update for 1.1.15 (#584)
1 parent 926d28f commit f377729

File tree

4 files changed

+34
-28
lines changed

4 files changed

+34
-28
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ 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.15] - 2024-06-06
7+
### Fixed
8+
* Exception thrown when using IAM authentication and CN RDS URL ([Issue #579](https://github.com/awslabs/aws-mysql-jdbc/issues/579)).
9+
610
## [1.1.14] - 2024-03-04
711
### Added
812
* 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)).
@@ -199,6 +203,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
199203
### Added
200204
* 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.
201205

206+
[1.1.15]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.14...1.1.15
202207
[1.1.14]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.13...1.1.14
203208
[1.1.13]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.12...1.1.13
204209
[1.1.12]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.11...1.1.12

README.md

+26-26
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.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
41+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.15/aws-mysql-jdbc-1.1.15.jar
42+
cp aws-mysql-jdbc-1.1.15.jar /home/userx/libs/
43+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.15.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.14:
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.15:
4949
```bash
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
50+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.15/aws-mysql-jdbc-1.1.15.jar
51+
cp aws-mysql-jdbc-1.1.15.jar /home/userx/libs/
52+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.15.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.14</version>
64+
<version>1.1.15</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.14, 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.15, 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.14</version>
77+
<version>1.1.15</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.14'
88+
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.15'
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.14:
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.15:
9595
```gradle
9696
dependencies {
97-
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.14'
97+
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.15'
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.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
107+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.15/aws-mysql-jdbc-1.1.15.jar
108+
cp aws-mysql-jdbc-1.1.15.jar /home/userx/libs/
109+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.15.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.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
129+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.15/aws-mysql-jdbc-1.1.15.jar
130+
cp aws-mysql-jdbc-1.1.15.jar /home/userx/libs/
131+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.15.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.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
143+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.15/aws-mysql-jdbc-1.1.15.jar
144+
cp aws-mysql-jdbc-1.1.15.jar /home/userx/libs/
145+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.15.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.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
188+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1./aws-mysql-jdbc-1.1.15.jar
189+
cp aws-mysql-jdbc-1.1.15.jar /home/userx/libs/
190+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.15.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.15</version>
203+
<version>1.1.16</version>
204204
<scope>system</scope>
205205
<systemPath>path-to-snapshot-jar</systemPath>
206206
</dependency>

RELEASE_POLICY.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
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) |
1919
| March 4, 2024 | [Release 1.1.14](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.14) |
20+
| June 5, 2024 | [Release 1.1.15](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.15) |
2021

2122

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

gradle.properties

+1-1
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=14
43+
com.mysql.cj.build.driver.version.subminor=15
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)