From 0a8d28ea57593b34e7ad89ae5391b5b5662c4c77 Mon Sep 17 00:00:00 2001 From: Karen Chen Date: Wed, 4 Sep 2024 10:21:12 -0700 Subject: [PATCH] chore: bump version and update changelog --- .github/workflows/build-installer.yml | 3 ++- CHANGELOG.md | 8 ++++++++ docs/building-the-aws-driver/BuildingTheAwsDriver.md | 6 ++---- version.cmake | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index fd0663b32..1b7c95ac3 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -4,6 +4,7 @@ on: env: BUILD_TYPE: Release + DRIVER_VERSION: 1.1.0 jobs: build-windows: @@ -64,7 +65,7 @@ jobs: run: | choco upgrade jq -y . ".\sign_installer.ps1" - Invoke-SignInstaller ${{ github.workspace }}\wix winx64a ${{github.ref_name}} ${{ secrets.AWS_UNSIGNED_BUCKET }} ${{ secrets.AWS_SIGNED_BUCKET }} ${{ secrets.AWS_S3_KEY }}aws-mysql-odbc-${{github.ref_name}}-winx64a.msi + Invoke-SignInstaller ${{ github.workspace }}\wix winx64a ${{ env.DRIVER_VERSION}} ${{ secrets.AWS_UNSIGNED_BUCKET }} ${{ secrets.AWS_SIGNED_BUCKET }} ${{ secrets.AWS_S3_KEY }}aws-mysql-odbc-${{ env.DRIVER_VERSION}}-winx64a.msi - name: Upload Windows installer as artifact if: success() diff --git a/CHANGELOG.md b/CHANGELOG.md index c80d96b5f..ab53de7bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,15 @@ 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.0] - 2024-09-04 +### :magic_wand: Added +- [Okta authentication support](./docs/using-the-aws-driver/OktaAuthentication.md). + +### :bug: Fixed +- Access violation error when retrieving driver diagnostic data ([Issue 202](https://github.com/aws/aws-mysql-odbc/issues/202)). + ## [1.0.0] - 2024-07-17 The Amazon Web Services (AWS) ODBC Driver for MySQL allows an application to take advantage of the features of clustered MySQL databases. It is based on and can be used as a drop-in compatible for the MySQL Connector/ODBC driver, and is compatible with all MySQL deployments. +[1.1.0]: https://github.com/aws/aws-mysql-odbc/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/aws/aws-mysql-odbc/releases/tag/1.0.0 diff --git a/docs/building-the-aws-driver/BuildingTheAwsDriver.md b/docs/building-the-aws-driver/BuildingTheAwsDriver.md index 7064e588e..a3ff9f7fd 100644 --- a/docs/building-the-aws-driver/BuildingTheAwsDriver.md +++ b/docs/building-the-aws-driver/BuildingTheAwsDriver.md @@ -14,11 +14,9 @@ cmake -S . -B build -G "Visual Studio 17 2022" -DMYSQL_DIR="C:\Program Files\MySQL\MySQL Server 8.3" -DMYSQLCLIENT_STATIC_LINKING=TRUE cmake --build build --config Release ``` -4. To build the installer, MySQL 8.0.36 is required. Other MySQL versions may not work. Download the [MySQL 8.0.36](https://downloads.mysql.com/archives/community/) ZIP archive or msi installer. If the zip archive is used, unzip it to a folder before using it. - - Run `build_installer.ps1` with specified MySQL 8.0.36 installation or unzipped folder path in a developer powershell. For example +4. To build the installer, run the following command: ``` - .\build_installer.ps1 x64 Release "Visual Studio 17 2022" "C:\Users\MyUser\Downloads\mysql-8.0.36-winx64\mysql-8.0.36-winx64" + .\build_installer.ps1 x64 Release "Visual Studio 17 2022" ``` ### Troubleshooting: diff --git a/version.cmake b/version.cmake index c686b2568..a11b9cafa 100644 --- a/version.cmake +++ b/version.cmake @@ -29,7 +29,7 @@ # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA SET(CONNECTOR_MAJOR "1") -SET(CONNECTOR_MINOR "0") +SET(CONNECTOR_MINOR "1") SET(CONNECTOR_PATCH "0") SET(CONNECTOR_LEVEL "") SET(CONNECTOR_QUALITY "GA")