Skip to content

Commit 58a0ba3

Browse files
committed
chore: bump version and update changelog
1 parent 13a2e67 commit 58a0ba3

7 files changed

Lines changed: 22 additions & 338 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.0] - 2026-01-15
8+
9+
### :magic_wand: Added
10+
- New connection properties allowing users to load custom Secrets [using the AWS Secrets Manager Authentication Plugin](https://github.com/aws/aws-advanced-nodejs-wrapper/blob/main/docs/using-the-nodejs-wrapper/using-plugins/UsingTheAwsSecretsManagerPlugin.md).
11+
12+
### :bug: Fixed
13+
- Aurora Initial Connection Strategy Plugin incorrectly erroring out during initial connections when using instance endpoints ([PR #601](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/601)).
14+
- Event listeners not properly removed resulting in unnecessary warning, addresses [issue #598](https://github.com/aws/aws-advanced-nodejs-wrapper/issues/598).
15+
- Runtime dependencies are not properly configured, causing import errors in certain environment ([PR #592](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/592)).
16+
717
## [2.0.1] - 2025-10-17
818

919
### :bug: Fixed

MAINTENANCE.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Release Schedule
22

33
| Release Date | Release |
4-
| ------------ | ------------------------------------------------------------------------------------------ |
4+
|--------------|--------------------------------------------------------------------------------------------|
55
| Nov 19 2024 | [Release 1.0.0](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/1.0.0) |
66
| Dec 12 2024 | [Release 1.1.0](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/1.1.0) |
77
| Mar 12 2025 | [Release 1.2.0](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/1.2.0) |
88
| Jul 29 2025 | [Release 1.3.0](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/1.3.0) |
99
| Sep 11 2025 | [Release 2.0.0](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/2.0.0) |
1010
| Oct 17 2025 | [Release 2.0.1](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/2.0.1) |
11+
| Jan 14 2026 | [Release 2.1.0](https://github.com/awslabs/aws-advanced-nodejs-wrapper/releases/tag/2.1.0) |
1112

1213
`aws-advanced-nodejs-wrapper` [follows semver](https://semver.org/#semantic-versioning-200) which means we will only
1314
release breaking changes in major versions. Generally speaking patches will be released to fix existing problems without
@@ -58,6 +59,6 @@ No new releases will result from these changes, but interested parties can creat
5859
from the updated source after the PRs are merged.
5960

6061
| Major Version | Latest Minor Version | Status | Initial Release | Maintenance Window Start | Maintenance Window End |
61-
| ------------- | -------------------- | ----------- | --------------- | ------------------------ | ---------------------- |
62-
| 1 | 1.3.0 | Maintenance | Nov 19, 2024 | Dec 12, 2024 | |
63-
| 2 | 2.0.0 | Maintenance | Sep 11, 2025 | Sep 11, 2025 | |
62+
| ------------- |----------------------|-------------|-----------------|--------------------------|------------------------|
63+
| 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 |

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.0.0",
11+
"aws-advanced-nodejs-wrapper": "^2.1.0",
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.0.0",
21+
"aws-advanced-nodejs-wrapper": "^2.1.0",
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.0.0",
13+
"aws-advanced-nodejs-wrapper": "^2.1.0",
1414
"mysql2": "^3.6.0"
1515
},
1616
"devDependencies": {

0 commit comments

Comments
 (0)