From f2536cdca91ae89bf6d63fadfc23c6165be1eeda Mon Sep 17 00:00:00 2001 From: Aaron Chung Date: Wed, 20 Dec 2023 16:24:06 -0800 Subject: [PATCH] chore: update changelog and versioning for 1.1.12 release --- CHANGELOG.md | 5 +++++ README.md | 50 +++++++++++++++++++++++------------------------ RELEASE_POLICY.md | 33 ++++++++++++++++--------------- gradle.properties | 2 +- 4 files changed, 48 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a60cc19..afcd71701 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. 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). +## [1.1.12] - 2023-12-21 +### Added +* [**Experimental** Enhanced Host Monitoring Plugin v2](https://github.com/awslabs/aws-mysql-jdbc/blob/main/README.md#experimental-enhanced-failure-monitoring-plugin-v2), which is a redesign of the original Enhanced Host Monitoring Plugin and addresses memory leaks and high CPU usage during monitoring sessions ([PR #513](https://github.com/awslabs/aws-mysql-jdbc/pull/513)). + ## [1.1.11] - 2023-11-02 ### Added * Documentation regarding known limitations with Amazon Aurora Global Databases ([PR #482](https://github.com/awslabs/aws-mysql-jdbc/pull/482)). @@ -183,6 +187,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Added * 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. +[1.1.12]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.11...1.1.12 [1.1.11]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.10...1.1.11 [1.1.10]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.9...1.1.10 [1.1.9]: https://github.com/awslabs/aws-mysql-jdbc/compare/1.1.8...1.1.9 diff --git a/README.md b/README.md index 801df5c80..1b93489e6 100644 --- a/README.md +++ b/README.md @@ -29,18 +29,18 @@ The AWS JDBC Driver for MySQL can be installed from pre-compiled packages that c **Example - Direct download with wget** ```bash -wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.11/aws-mysql-jdbc-1.1.11.jar -cp aws-mysql-jdbc-1.1.11.jar /home/userx/libs/ -export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.11.jar +wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.12/aws-mysql-jdbc-1.1.12.jar +cp aws-mysql-jdbc-1.1.12.jar /home/userx/libs/ +export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.12.jar ``` **Upgrading to a newer version with wget** -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.11: +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.12: ```bash -wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.11/aws-mysql-jdbc-1.1.11.jar -cp aws-mysql-jdbc-1.1.11.jar /home/userx/libs/ -export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.11.jar +wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.12/aws-mysql-jdbc-1.1.12.jar +cp aws-mysql-jdbc-1.1.12.jar /home/userx/libs/ +export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.12.jar ``` #### As a Maven dependency @@ -52,20 +52,20 @@ You can use [Maven's dependency management](https://central.sonatype.com/search? software.aws.rds aws-mysql-jdbc - 1.1.11 + 1.1.12 ``` **Upgrading to a newer version with Maven** -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.11, modify the file to include: +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.12, modify the file to include: ```xml software.aws.rds aws-mysql-jdbc - 1.1.11 + 1.1.12 ``` @@ -76,16 +76,16 @@ You can use [Gradle's dependency management](https://central.sonatype.com/search **Example - Gradle** ```gradle dependencies { - implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.11' + implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.12' } ``` **Upgrading to a newer version with Gradle** -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.11: +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.12: ```gradle dependencies { - implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.11' + implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.12' } ``` @@ -95,9 +95,9 @@ To use the driver with an IDE (for example, IntelliJ), download the `.jar` file **Example - IntelliJ** ```bash -wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.11/aws-mysql-jdbc-1.1.11.jar -cp aws-mysql-jdbc-1.1.11.jar /home/userx/libs/ -export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.11.jar +wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.12/aws-mysql-jdbc-1.1.12.jar +cp aws-mysql-jdbc-1.1.12.jar /home/userx/libs/ +export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.12.jar ``` After downloading the `.jar` file and updating the CLASSPATH, add the driver information to your `Project`: @@ -117,9 +117,9 @@ After downloading the `.jar` file and updating the CLASSPATH, add the driver inf To upgrade to a newer version of the driver, download the updated driver, and add it to your CLASSPATH: ```bash -wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.11/aws-mysql-jdbc-1.1.11.jar -cp aws-mysql-jdbc-1.1.11.jar /home/userx/libs/ -export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.11.jar +wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.12/aws-mysql-jdbc-1.1.12.jar +cp aws-mysql-jdbc-1.1.12.jar /home/userx/libs/ +export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.12.jar ``` Then, follow the steps listed above to update your project to the latest version. @@ -131,9 +131,9 @@ To use the driver with the DBeaver database client, download the `.jar` file, co **Example - DBeaver** ```bash -wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.11/aws-mysql-jdbc-1.1.11.jar -cp aws-mysql-jdbc-1.1.11.jar /home/userx/libs/ -export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.11.jar +wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.12/aws-mysql-jdbc-1.1.12.jar +cp aws-mysql-jdbc-1.1.12.jar /home/userx/libs/ +export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.12.jar ``` After downloading the .jar file and adding it to your CLASSPATH, add the driver information to the DBeaver client: @@ -176,9 +176,9 @@ After adding driver information, you can create new connections that use the AWS To upgrade to a newer version of the driver, download the updated driver, and add it to your CLASSPATH: ```bash -wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1./aws-mysql-jdbc-1.1.11.jar -cp aws-mysql-jdbc-1.1.11.jar /home/userx/libs/ -export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.11.jar +wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1./aws-mysql-jdbc-1.1.12.jar +cp aws-mysql-jdbc-1.1.12.jar /home/userx/libs/ +export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.12.jar ``` Then, follow the steps listed above to update your DBeaver client settings. diff --git a/RELEASE_POLICY.md b/RELEASE_POLICY.md index 559f0fc28..5d322cbb4 100644 --- a/RELEASE_POLICY.md +++ b/RELEASE_POLICY.md @@ -1,19 +1,20 @@ # Release Schedule and Maintenance Policy -| Release Date | Release | -|------------------|---------------------------------------------------------------------------------| -| Mar 1, 2022 | [Release 1.0.0](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.0.0) | -| June 29, 2022 | [Release 1.1.0](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.0) | -| Sept 22, 2022 | [Release 1.1.1](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.1) | -| Nov 22, 2022 | [Release 1.1.2](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.2) | -| Jan 5, 2023 | [Release 1.1.3](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.3) | -| Jan 27, 2023 | [Release 1.1.4](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.4) | -| Mar 30, 2023 | [Release 1.1.5](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.5) | -| Apr 28, 2023 | [Release 1.1.6](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.6) | -| May 11, 2023 | [Release 1.1.7](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.7) | -| June 28, 2023 | [Release 1.1.8](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.8) | -| July 31, 2023 | [Release 1.1.9](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.9) | -| October 3, 2023 | [Release 1.1.10](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.10) | -| November 2, 2023 | [Release 1.1.11](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.11) | +| Release Date | Release | +|-------------------|---------------------------------------------------------------------------------| +| Mar 1, 2022 | [Release 1.0.0](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.0.0) | +| June 29, 2022 | [Release 1.1.0](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.0) | +| Sept 22, 2022 | [Release 1.1.1](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.1) | +| Nov 22, 2022 | [Release 1.1.2](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.2) | +| Jan 5, 2023 | [Release 1.1.3](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.3) | +| Jan 27, 2023 | [Release 1.1.4](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.4) | +| Mar 30, 2023 | [Release 1.1.5](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.5) | +| Apr 28, 2023 | [Release 1.1.6](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.6) | +| May 11, 2023 | [Release 1.1.7](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.7) | +| June 28, 2023 | [Release 1.1.8](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.8) | +| July 31, 2023 | [Release 1.1.9](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.9) | +| October 3, 2023 | [Release 1.1.10](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.10) | +| November 2, 2023 | [Release 1.1.11](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.11) | +| December 21, 2023 | [Release 1.1.12](https://github.com/awslabs/aws-mysql-jdbc/releases/tag/1.1.12) | aws-mysql-jdbc-driver [follows semver](https://semver.org/#semantic-versioning-200) which means we will only release @@ -55,4 +56,4 @@ from the updated source after the PRs are merged. | Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End | |---------------|----------------------|-------------|-----------------|--------------------------|------------------------| | 1 | 1.0.0 | Maintenance | Mar 1, 2022 | June 29, 2022 | June 29, 2023 | -| 2 | 1.1.11 | Current | June 28, 2023 | July 25, 2023 | July 25, 2024 | +| 2 | 1.1.12 | Current | June 28, 2023 | July 25, 2023 | July 25, 2024 | diff --git a/gradle.properties b/gradle.properties index f4b15ace7..c982804e9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -40,7 +40,7 @@ spotbugs.version=4.0.0 # Build properties com.mysql.cj.build.driver.version.major=1 com.mysql.cj.build.driver.version.minor=1 -com.mysql.cj.build.driver.version.subminor=11 +com.mysql.cj.build.driver.version.subminor=12 com.mysql.cj.build.driver.displayName=Amazon Web Services (AWS) JDBC Driver for MySQL com.mysql.cj.build.driver.name=aws-mysql-connector-java com.mysql.cj.build.licenseType=GPLv2