Skip to content

Commit f74ee35

Browse files
committed
chore: bump version to 1.4.0 and update changelog
1 parent 5f03c75 commit f74ee35

File tree

4 files changed

+28
-11
lines changed

4 files changed

+28
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
33

44
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).
55

6+
## [1.4.0] - 2025-10-17
7+
### :magic_wand: Added
8+
* [EFM v2](https://github.com/aws/aws-advanced-python-wrapper/blob/main/docs/using-the-python-driver/using-plugins/UsingTheHostMonitoringPlugin.md#host-monitoring-plugin-v2), an improved alternate version of the `efm` plugin which addresses issues such as garbage collection and monitoring stability, is now live!
9+
10+
### :bug: Fixed
11+
* Update subscribed methods to explicit methods ([PR #960](https://github.com/aws/aws-advanced-python-wrapper/pull/960))
12+
* Limitless Connection Plugin to properly round the load metric values for Limitless transaction routers ([PR #988](https://github.com/aws/aws-advanced-python-wrapper/pull/988)).
13+
14+
### :crab: Changed
15+
* Update documentation for Limitless Plugin ([PR #914](https://github.com/aws/aws-advanced-python-wrapper/pull/914)).
16+
* Update documentation for Blue/Green Support ([PR #995](https://github.com/aws/aws-advanced-python-wrapper/pull/995)).
17+
* Add qualifiers to PostgreSQL SQL statements ([PR #1007](https://github.com/aws/aws-advanced-python-wrapper/pull/1007)).
18+
619
## [1.3.0] - 2025-07-28
720
### :magic_wand: Added
821
* [Blue/Green Plugin](https://github.com/aws/aws-advanced-python-wrapper/blob/main/docs/using-the-python-driver/using-plugins/UsingTheBlueGreenPlugin.md), which adds support for blue/green deployments ([PR #911](https://github.com/aws/aws-advanced-python-wrapper/pull/911)).
@@ -46,6 +59,7 @@ The Amazon Web Services (AWS) Advanced Python Wrapper allows an application to t
4659
* Support for PostgreSQL
4760
* Support for MySQL
4861

62+
[1.4.0]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.3.0...1.4.0
4963
[1.3.0]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.2.0...1.3.0
5064
[1.2.0]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.1.1...1.2.0
5165
[1.1.1]: https://github.com/aws/aws-advanced-python-wrapper/compare/1.1.0...1.1.1

Maintenance.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
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) |
6-
| July 31, 2024 | [Release 1.1.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.1.0) |
7-
| October 18, 2024 | [Release 1.1.1](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.1.1) |
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) |
7+
| October 18, 2024 | [Release 1.1.1](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.1.1) |
8+
| December 12, 2024 | [Release 1.2.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.2.0) |
9+
| July 28, 2025 | [Release 1.3.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.3.0) |
10+
| October 17, 2025 | [Release 1.4.0](https://github.com/awslabs/aws-advanced-python-wrapper/releases/tag/1.4.0) |
811

912
`aws-advanced-python-wrapper` [follows semver](https://semver.org/#semantic-versioning-200) which means we will only
1013
release breaking changes in major versions. Generally speaking patches will be released to fix existing problems without
@@ -30,12 +33,12 @@ and log all changes in the changelog at the bottom of this page.
3033
For `aws-advanced-python-wrapper` new features and active development always takes place against the newest version.
3134
The `aws-advanced-python-wrapper` project follows the semantic versioning specification for assigning version numbers
3235
to releases, so you should be able to upgrade to the latest minor version of that same major version of the
33-
software without encountering incompatible changes (e.g., 1.1.0 → 1.3.x).
36+
software without encountering incompatible changes (e.g., 1.1.0 → 1.4.x).
3437

3538
Sometimes an incompatible change is unavoidable. When this happens, the software’s maintainers will increment
36-
the major version number (e.g., increment from `aws-advanced-python-wrapper` 1.3.0 to `aws-advanced-python-wrapper` 2.0.0).
39+
the major version number (e.g., increment from `aws-advanced-python-wrapper` 1.4.0 to `aws-advanced-python-wrapper` 2.0.0).
3740
The last minor version of the previous major version of the software will then enter a maintenance window
38-
(e.g., 1.3.x). During the maintenance window, the software will continue to receive bug fixes and security patches,
41+
(e.g., 1.4.x). During the maintenance window, the software will continue to receive bug fixes and security patches,
3942
but no new features.
4043

4144
We follow OpenSSF’s best practices for patching publicly known vulnerabilities, and we make sure that there are
@@ -57,4 +60,4 @@ from the updated source after the PRs are merged.
5760

5861
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
5962
|---------------|----------------------|---------|-----------------|--------------------------|------------------------|
60-
| 1 | 1.3.0 | Current | May 16, 2024 | May 16, 2024 | N/A |
63+
| 1 | 1.4.0 | Current | May 16, 2024 | May 16, 2024 | N/A |

aws_advanced_python_wrapper/driver_info.py

Lines changed: 1 addition & 1 deletion
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.3.0"
18+
DRIVER_VERSION = "1.4.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws_advanced_python_wrapper"
3-
version = "1.3.0"
3+
version = "1.4.0"
44
description = "Amazon Web Services (AWS) Advanced Python Wrapper"
55
authors = ["Amazon Web Services"]
66
readme = "README.md"

0 commit comments

Comments
 (0)