Skip to content

Commit 79a0c73

Browse files
authored
chore: bump version and update CHANGELOG.md for 1.2.0 (#413)
1 parent 3662820 commit 79a0c73

File tree

3 files changed

+29
-6
lines changed

3 files changed

+29
-6
lines changed

Diff for: CHANGELOG.md

+26-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ 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+
## [1.2.0] - 2025-03-12
8+
9+
### :magic_wand: Added
10+
11+
- Enhanced Failover Monitoring 2 Plugin. See [Using The Host Monitoring Plugin](./docs/using-the-nodejs-wrapper/using-plugins/UsingTheHostMonitoringPlugin.md#host-monitoring-plugin-v2).
12+
- Custom Endpoint Plugin. See [Using the Custom Endpoint Plugin](./docs/using-the-nodejs-wrapper/using-plugins/UsingTheCustomEndpointPlugin.md).
13+
- Failover 2 Plugin. See [Using the Failover 2 Plugin](./docs/using-the-nodejs-wrapper/using-plugins/UsingTheFailover2Plugin.md).
14+
- Documentation on [session state](./docs/using-the-nodejs-wrapper/SessionState.md), [driver dialects](./docs/using-the-nodejs-wrapper/DriverDialects.md), [fastest response strategy](./docs/using-the-nodejs-wrapper/using-plugins/UsingTheFastestResponseStrategyPlugin.md), and [maintenance](./MAINTENANCE.md).
15+
16+
### :crab: Changed
17+
18+
- More robust MySQL catalog usage detection ([PR #366](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/366)).
19+
- Changed connection tracker to update after reader failover to new connection ([PR #356](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/356)).
20+
- Improved documentation instructions for integration tests and running code samples ([PR #370](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/370) & [PR #374](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/374)).
21+
22+
### :bug: Fixed
23+
24+
- Usage of setQueryTimeout for MySQL2DriverDialect ([PR #393](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/393)).
25+
- Retrieving keep alive settings ([PR #395](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/395)).
26+
- Reader failover to wait for complete batch ([PR #390](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/390)).
27+
- EFM2 abort and stop monitoring on dead connection ([PR #415](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/415)).
28+
- Check if first connection after failover is stale ([PR #416](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/416)).
29+
730
## [1.1.0] - 2024-12-12
831

932
### :magic_wand: Added
@@ -15,15 +38,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1538
- Fastest Response Strategy Plugin selects reader based on fastest response time ([PR #345](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/345)).
1639
- Simple connection tutorial using Prisma ORM. See [Using The NodeJS Wrapper with Prisma ORM](./examples/prisma_example/README.md).
1740
- Added configuration parameter connectionProvider ([PR #330](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/330)).
18-
- This replaces the setConnectionProvider method. For an example, see: [Using Internal Connection Pooling](./docs/using-the-nodejs-wrapper/using-plugins/UsingTheReadWriteSplittingPlugin.md/#internal-connection-pooling)
41+
- This replaces the setConnectionProvider method. For an example, see: [Using Internal Connection Pooling](./docs/using-the-nodejs-wrapper/using-plugins/UsingTheReadWriteSplittingPlugin.md/#internal-connection-pooling).
1942

2043
### :crab: Changed
2144

2245
- Deprecated configuration parameter [mysqlQueryTimeout](./docs/using-the-nodejs-wrapper/UsingTheNodejsWrapper.md#aws-advanced-nodejs-wrapper-parameters).
23-
- Updated documentation on host patterns, custom endpoints, and prerequisites for the Okta and ADFS Plugins ([PR #319](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/319)) & ([PR #327](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/327)).
46+
- Updated documentation on host patterns, custom endpoints, and prerequisites for the Okta and ADFS Plugins ([PR #319](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/319) & [PR #327](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/327)).
2447
- Migrated to AWS JS SDK v3 ([PR #331](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/331)).
2548
- Optimized getHostInfoByStrategy and acceptsStrategy calls for the Plugin Manager ([PR #332](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/332)).
26-
- Updated AwsClient#releaseResources to be a static method called at the end of an application ([PR #333](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/333)) & [PR #347](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/347)).
49+
- Updated AwsClient#releaseResources to be a static method called at the end of an application ([PR #333](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/333) & [PR #347](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/347)).
2750
- Updated Session State logging to display false values ([PR #337](https://github.com/aws/aws-advanced-nodejs-wrapper/pull/337)).
2851

2952
## [1.0.0] - 2024-11-19

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-advanced-nodejs-wrapper",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"type": "module",
55
"workspaces": [
66
"common",

0 commit comments

Comments
 (0)