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
+5
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@ 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
+
## [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
+
6
10
## [1.1.14] - 2024-03-04
7
11
### Added
8
12
* 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/),
199
203
### Added
200
204
* 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.
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:
@@ -61,20 +61,20 @@ You can use [Maven's dependency management](https://central.sonatype.com/search?
61
61
<dependency>
62
62
<groupId>software.aws.rds</groupId>
63
63
<artifactId>aws-mysql-jdbc</artifactId>
64
-
<version>1.1.14</version>
64
+
<version>1.1.15</version>
65
65
</dependency>
66
66
</dependencies>
67
67
```
68
68
69
69
**Upgrading to a newer version with Maven**
70
70
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:
72
72
```xml
73
73
<dependencies>
74
74
<dependency>
75
75
<groupId>software.aws.rds</groupId>
76
76
<artifactId>aws-mysql-jdbc</artifactId>
77
-
<version>1.1.14</version>
77
+
<version>1.1.15</version>
78
78
</dependency>
79
79
</dependencies>
80
80
```
@@ -85,16 +85,16 @@ You can use [Gradle's dependency management](https://central.sonatype.com/search
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:
0 commit comments