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
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,16 @@ 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.3] - 2023-01-05
7
+
8
+
### Fixed
9
+
* Removed "SNAPSHOT" from the full version name. [Issue 318](https://github.com/awslabs/aws-mysql-jdbc/issues/318)
10
+
* Fixed incorrect driver classpath in README.md
11
+
* Fixed failure detection interval in EFM
12
+
13
+
### Added
14
+
* Shading to -sources.jar to reflect the main jar which is shaded
15
+
6
16
## [1.1.2] - 2022-11-22
7
17
8
18
### Added
@@ -13,7 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
13
23
* Upgraded dependency versions
14
24
15
25
### Fixed
16
-
*Update FailoverConnectionPlugin license.
26
+
*Updated FailoverConnectionPlugin license.
17
27
* Fixed plugin factories package names in the README.
18
28
* Resolved an issue where the driver attempts to query for the topology during a prepared transaction.[Issue 292](https://github.com/awslabs/aws-mysql-jdbc/issues/292)
19
29
* Resolved an issue where distinct ClientPreparedStatement objects incorrectly have the same hashCode.[Issue 308](https://github.com/awslabs/aws-mysql-jdbc/issues/308)
@@ -98,6 +108,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
98
108
### Added
99
109
* 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.2:
39
+
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.3:
@@ -52,20 +52,20 @@ You can use [Maven's dependency management](https://search.maven.org/search?q=g:
52
52
<dependency>
53
53
<groupId>software.aws.rds</groupId>
54
54
<artifactId>aws-mysql-jdbc</artifactId>
55
-
<version>1.1.2</version>
55
+
<version>1.1.3</version>
56
56
</dependency>
57
57
</dependencies>
58
58
```
59
59
60
60
**Upgrading to a newer version with Maven**
61
61
62
-
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.2, modify the file to include:
62
+
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.3, modify the file to include:
63
63
```xml
64
64
<dependencies>
65
65
<dependency>
66
66
<groupId>software.aws.rds</groupId>
67
67
<artifactId>aws-mysql-jdbc</artifactId>
68
-
<version>1.1.2</version>
68
+
<version>1.1.3</version>
69
69
</dependency>
70
70
</dependencies>
71
71
```
@@ -76,16 +76,16 @@ You can use [Gradle's dependency management](https://search.maven.org/search?q=g
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.2:
85
+
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.3:
0 commit comments