Skip to content

Commit 1f5ff9b

Browse files
authored
chore: bump driver version (#627)
1 parent 439cf58 commit 1f5ff9b

File tree

6 files changed

+168
-137
lines changed

6 files changed

+168
-137
lines changed

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
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+
6+
## [1.1.0] - 2024-07-31
7+
### :magic_wand: Added
8+
* Okta authentication support. See the [documentation](./docs/using-the-python-driver/using-plugins/UsingTheOktaAuthenticationPlugin.md) for more details and sample code.
9+
110
## [1.0.0] - 2024-05-23
211
The Amazon Web Services (AWS) Advanced Python Wrapper allows an application to take advantage of the features of clustered Aurora databases.
312

413
### :magic_wand: Added
514
* Support for PostgreSQL
615
* Support for MySQL
716

8-
[1.0.0]: https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.0.0
17+
[1.1.0]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.0.0...1.1.0
18+
[1.0.0]: https://github.com/aws/aws-advanced-python-wrapper/releases/tag/1.0.0

Diff for: Maintenance.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Release Schedule
22

3-
| Release Date | Release |
4-
|--------------|--------------------------------------------------------------------------------------------|
5-
| May 16, 2024 | [Release 1.0.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.0.0) |
3+
| Release Date | Release |
4+
|---------------|--------------------------------------------------------------------------------------------|
5+
| May 16, 2024 | [Release 1.0.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.0.0) |
6+
| July 31, 2024 | [Release 1.1.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.1.0) |
67

78
`aws-advanced-python-wrapper` [follows semver](https://semver.org/#semantic-versioning-200) which means we will only
89
release breaking changes in major versions. Generally speaking patches will be released to fix existing problems without
@@ -55,4 +56,4 @@ from the updated source after the PRs are merged.
5556

5657
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
5758
|---------------|----------------------|---------|-----------------|--------------------------|------------------------|
58-
| 1 | 1.0.0 | Current | May 16, 2024 | May 16, 2024 | N/A |
59+
| 1 | 1.1.0 | Current | May 16, 2024 | May 16, 2024 | N/A |

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,14 @@ This `aws-advanced-python-wrapper` is being tested against the following Communi
222222

223223
| Database | Versions |
224224
|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
225-
| MySQL | 8.3.0 |
225+
| MySQL | 8.4.0 |
226226
| PostgreSQL | 16.2 |
227227
| Aurora MySQL | - LTS version, see [here](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.Versions.html#AuroraMySQL.Updates.LTS) for more details. <br><br> - Latest release, as shown on [this page](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.30Updates.html). |
228228
| Aurora PostgreSQL | - LTS version, see [here](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.LTS.html) for more details. <br><br> - Latest release, as shown on [this page](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/AuroraPostgreSQL.Updates.html).) |
229229

230230
The `aws-advanced-python-wrapper` is compatible with MySQL 5.7 and MySQL 8.0 as per MySQL Connector/Python.
231+
> [!WARNING]\
232+
> Due to recent internal changes with the `v9.0.0` MySQL Connector/Python driver in regards to connection handling, the AWS Advanced Python Wrapper is not recommended for usage with `v9.0.0`. The AWS Advanced Python Wrapper will be updated in the future for `v9.0.0` compatibility with the community driver.
231233
232234
## License
233235

Diff for: aws_advanced_python_wrapper/driver_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
class DriverInfo:
1717
DRIVER_NAME = "aws_advanced_python_wrapper"
18-
DRIVER_VERSION = "1.0.0-rc"
18+
DRIVER_VERSION = "1.1.0"

0 commit comments

Comments
 (0)