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
chore: Update driver version for the 1.1.0 release (#235)
Summary
- Updated driver version for the 1.1.0 release.
Description
- Driver version updated in gradle.properties and README.md.
- Updated CHANGELOG.md for the release.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,18 @@ All notable changes to this project will be documented in this file.
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
6
7
-
## [1.1.0] - 2022-06-03
7
+
## [1.1.0] - 2022-06-29
8
8
9
9
### Added
10
-
* Secrets Manager Plugin and corresponding unit tests have been added.
* Upgraded the driver to use AWS Java SDK v.2.17.165.
11
14
12
15
### Fixed
16
+
* Resolved an issue related to `abort`, `close`, and `isClosed` by filtering out methods that do not require failover. [Issue 206](https://github.com/awslabs/aws-mysql-jdbc/issues/206).
17
+
* Resolved an issue where `max_allowed_packet` on the server wasn't being respected by the driver. [Issue 191](https://github.com/awslabs/aws-mysql-jdbc/issues/191).
18
+
* Resolved a concurrency issue with the Aurora toplogy cache. [Issue 188](https://github.com/awslabs/aws-mysql-jdbc/discussions/188).
13
19
* Resolved an issue where non-network errors were not propagated during failover.
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.0.0:
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.0:
@@ -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.0.0</version>
55
+
<version>1.1.0</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.0.0, 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.0, 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.0.0</version>
68
+
<version>1.1.0</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.0.0:
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.0:
0 commit comments