Skip to content

Commit f785c9a

Browse files
committed
chore: bump version to 2.1.1
1 parent 513597b commit f785c9a

7 files changed

Lines changed: 17 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

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

7+
## [2.1.1] - 2026-05-28
8+
9+
### :bug: Fixed
10+
11+
- Use a MySQL-specific default plugin chain when the driver dialect is MySQL2, excluding the `efm2` plugin from the defaults.
12+
- Prevent process crash during Aurora failover when using the PostgreSQL client, addresses [issue #620](https://github.com/aws/aws-advanced-nodejs-wrapper/issues/620) ([PR #621](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/621)).
13+
714
## [2.1.0] - 2026-01-15
815

916
### :magic_wand: Added
@@ -99,6 +106,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99106

100107
The Amazon Web Services (AWS) Advanced NodeJS Wrapper allows an application to take advantage of the features of clustered Aurora databases.
101108

109+
[2.1.1]: https://github.com/aws/aws-advanced-nodejs-wrapper/compare/2.1.0...2.1.1
110+
[2.1.0]: https://github.com/aws/aws-advanced-nodejs-wrapper/compare/2.0.1...2.1.0
102111
[2.0.1]: https://github.com/aws/aws-advanced-nodejs-wrapper/compare/2.0.0...2.0.1
103112
[2.0.0]: https://github.com/aws/aws-advanced-nodejs-wrapper/compare/1.3.0...2.0.0
104113
[1.3.0]: https://github.com/aws/aws-advanced-nodejs-wrapper/compare/1.2.0...1.3.0

MAINTENANCE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
| Sep 11 2025 | [Release 2.0.0](https://github.com/aws/aws-advanced-nodejs-wrapper/releases/tag/2.0.0) |
1010
| Oct 17 2025 | [Release 2.0.1](https://github.com/aws/aws-advanced-nodejs-wrapper/releases/tag/2.0.1) |
1111
| Jan 15 2026 | [Release 2.1.0](https://github.com/aws/aws-advanced-nodejs-wrapper/releases/tag/2.1.0) |
12+
| May 28 2026 | [Release 2.1.1](https://github.com/aws/aws-advanced-nodejs-wrapper/releases/tag/2.1.1) |
1213

1314
`aws-advanced-nodejs-wrapper` [follows semver](https://semver.org/#semantic-versioning-200) which means we will only
1415
release breaking changes in major versions. Generally speaking patches will be released to fix existing problems without
@@ -61,4 +62,4 @@ from the updated source after the PRs are merged.
6162
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
6263
| ------------- | -------------------- | ----------- | --------------- | ------------------------ | ---------------------- |
6364
| 1 | 1.3.0 | Maintenance | Nov 19, 2024 | Sep 11, 2025 | Sep 11, 2026 |
64-
| 2 | 2.1.0 | Current | Sep 11, 2025 | N/A | N/A |
65+
| 2 | 2.1.1 | Current | Sep 11, 2025 | N/A | N/A |

examples/javascript_example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"start": "node index.js"
99
},
1010
"dependencies": {
11-
"aws-advanced-nodejs-wrapper": "^2.1.0",
11+
"aws-advanced-nodejs-wrapper": "^2.1.1",
1212
"pg": "^8.11.0"
1313
}
1414
}

examples/prisma_example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@prisma/client": "6.0.0",
2020
"@prisma/driver-adapter-utils": "^6.0.0",
21-
"aws-advanced-nodejs-wrapper": "^2.1.0",
21+
"aws-advanced-nodejs-wrapper": "^2.1.1",
2222
"pg": "^8.13.1",
2323
"util": "^0.12.5"
2424
}

examples/typescript_example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dev": "ts-node src/index.ts"
1111
},
1212
"dependencies": {
13-
"aws-advanced-nodejs-wrapper": "^2.1.0",
13+
"aws-advanced-nodejs-wrapper": "^2.1.1",
1414
"mysql2": "^3.6.0"
1515
},
1616
"devDependencies": {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-advanced-nodejs-wrapper",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"type": "module",
55
"engines": {
66
"node": ">=22.9.0",

0 commit comments

Comments
 (0)