Skip to content

Commit 6bbbca2

Browse files
author
awstools
committed
Publish v3.898.0
1 parent 6ffe6c1 commit 6bbbca2

File tree

23 files changed

+142
-23
lines changed

23 files changed

+142
-23
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.898.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.897.0...v3.898.0) (2025-09-26)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-agent-runtime:** This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces. ([0444d5c](https://github.com/aws/aws-sdk-js-v3/commit/0444d5c2eaf52cb94e5afc8541b9bcf48abf16e8))
12+
* **client-bedrock-data-automation:** Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality. ([c81765a](https://github.com/aws/aws-sdk-js-v3/commit/c81765a45af3bc12404df36deae130ab3021aef7))
13+
* **client-billing:** Add ability to combine custom billing views to create new consolidated views. ([dcc6ea3](https://github.com/aws/aws-sdk-js-v3/commit/dcc6ea33d51f3c64a408ecd606a36af355cea337))
14+
* **client-connect:** Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs. ([3dbdb5f](https://github.com/aws/aws-sdk-js-v3/commit/3dbdb5f080f484392bd5f71d13b67f266714a220))
15+
* **client-cost-explorer:** Support for payer account dimension and billing view health status. ([8ddf547](https://github.com/aws/aws-sdk-js-v3/commit/8ddf547e5444197fa0fd8f6a4907e07f60da4406))
16+
* **client-dynamodb-streams:** Added support for IPv6 compatible endpoints for DynamoDB Streams. ([c763e40](https://github.com/aws/aws-sdk-js-v3/commit/c763e4054d1d7f88889313d91e0ae60d61c74015))
17+
* **client-redshift:** Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications ([82795e3](https://github.com/aws/aws-sdk-js-v3/commit/82795e3ad412684bb0d02a0c8184aff356118f5c))
18+
* **clients:** update client endpoints as of 2025-09-26 ([6ffe6c1](https://github.com/aws/aws-sdk-js-v3/commit/6ffe6c111bde657e81af1be6b1d13c326ff1fda0))
19+
20+
21+
22+
23+
624
# [3.897.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.896.0...v3.897.0) (2025-09-25)
725

826

benchmark/size/report-bundlers.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
| Application | SDK Version | browser:Webpack | browser:Rollup | browser:EsBuild |
22
| :---------------------------------------- | :---------- | :-------------- | :------------- | :-------------- |
3-
| lib-dynamodb-aggregate.ts | 3.896.0 | 210 kb | 203 kb | 231 kb |
4-
| multiple-sdk-clients.ts | 3.896.0 | 477 kb | 468 kb | 513 kb |
5-
| private-multiple-clients-micg.ts | 3.896.0 | 416 kb | 409 kb | 460 kb |
6-
| private-multiple-clients-schema.ts | 3.896.0 | 355 kb | 357 kb | 401 kb |
7-
| private-restjson-micg-aggregate.ts | 3.896.0 | 228 kb | 222 kb | 247 kb |
8-
| private-restjson-micg-single-command.ts | 3.896.0 | 124 kb | 119 kb | 139 kb |
9-
| private-restjson-schema-aggregate.ts | 3.896.0 | 212 kb | 210 kb | 232 kb |
10-
| private-restjson-schema-single-command.ts | 3.896.0 | 146 kb | 141 kb | 163 kb |
11-
| sdk-ec2-aggregate.ts | 3.896.0 | 1.15 mb | 1.097 mb | 1.143 mb |
12-
| sdk-s3-aggregate.ts | 3.896.0 | 356 kb | 347 kb | 378 kb |
13-
| sdk-s3-single-command.ts | 3.896.0 | 202 kb | 195 kb | 221 kb |
14-
| sdk-sagemaker-aggregate.ts | 3.896.0 | 462 kb | 444 kb | 481 kb |
3+
| lib-dynamodb-aggregate.ts | 3.897.0 | 210 kb | 203 kb | 231 kb |
4+
| multiple-sdk-clients.ts | 3.897.0 | 477 kb | 468 kb | 513 kb |
5+
| private-multiple-clients-micg.ts | 3.897.0 | 416 kb | 409 kb | 460 kb |
6+
| private-multiple-clients-schema.ts | 3.897.0 | 355 kb | 357 kb | 401 kb |
7+
| private-restjson-micg-aggregate.ts | 3.897.0 | 228 kb | 222 kb | 247 kb |
8+
| private-restjson-micg-single-command.ts | 3.897.0 | 124 kb | 119 kb | 139 kb |
9+
| private-restjson-schema-aggregate.ts | 3.897.0 | 212 kb | 210 kb | 232 kb |
10+
| private-restjson-schema-single-command.ts | 3.897.0 | 146 kb | 141 kb | 163 kb |
11+
| sdk-ec2-aggregate.ts | 3.897.0 | 1.15 mb | 1.097 mb | 1.143 mb |
12+
| sdk-s3-aggregate.ts | 3.897.0 | 356 kb | 347 kb | 378 kb |
13+
| sdk-s3-single-command.ts | 3.897.0 | 202 kb | 195 kb | 221 kb |
14+
| sdk-sagemaker-aggregate.ts | 3.897.0 | 462 kb | 444 kb | 481 kb |

clients/client-bedrock-agent-runtime/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.898.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.897.0...v3.898.0) (2025-09-26)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-agent-runtime:** This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces. ([0444d5c](https://github.com/aws/aws-sdk-js-v3/commit/0444d5c2eaf52cb94e5afc8541b9bcf48abf16e8))
12+
13+
14+
15+
16+
617
# [3.896.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0) (2025-09-24)
718

819
**Note:** Version bump only for package @aws-sdk/client-bedrock-agent-runtime

clients/client-bedrock-agent-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-bedrock-agent-runtime",
33
"description": "AWS SDK for JavaScript Bedrock Agent Runtime Client for Node.js, Browser and React Native",
4-
"version": "3.896.0",
4+
"version": "3.898.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agent-runtime",

clients/client-bedrock-data-automation/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.898.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.897.0...v3.898.0) (2025-09-26)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-data-automation:** Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality. ([c81765a](https://github.com/aws/aws-sdk-js-v3/commit/c81765a45af3bc12404df36deae130ab3021aef7))
12+
13+
14+
15+
16+
617
# [3.896.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0) (2025-09-24)
718

819
**Note:** Version bump only for package @aws-sdk/client-bedrock-data-automation

clients/client-bedrock-data-automation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-bedrock-data-automation",
33
"description": "AWS SDK for JavaScript Bedrock Data Automation Client for Node.js, Browser and React Native",
4-
"version": "3.896.0",
4+
"version": "3.898.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-data-automation",

clients/client-billing/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.898.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.897.0...v3.898.0) (2025-09-26)
7+
8+
9+
### Features
10+
11+
* **client-billing:** Add ability to combine custom billing views to create new consolidated views. ([dcc6ea3](https://github.com/aws/aws-sdk-js-v3/commit/dcc6ea33d51f3c64a408ecd606a36af355cea337))
12+
13+
14+
15+
16+
617
# [3.896.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0) (2025-09-24)
718

819
**Note:** Version bump only for package @aws-sdk/client-billing

clients/client-billing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-billing",
33
"description": "AWS SDK for JavaScript Billing Client for Node.js, Browser and React Native",
4-
"version": "3.896.0",
4+
"version": "3.898.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-billing",

clients/client-connect/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.898.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.897.0...v3.898.0) (2025-09-26)
7+
8+
9+
### Features
10+
11+
* **client-connect:** Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs. ([3dbdb5f](https://github.com/aws/aws-sdk-js-v3/commit/3dbdb5f080f484392bd5f71d13b67f266714a220))
12+
13+
14+
15+
16+
617
# [3.896.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.895.0...v3.896.0) (2025-09-24)
718

819
**Note:** Version bump only for package @aws-sdk/client-connect

clients/client-connect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-connect",
33
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4-
"version": "3.896.0",
4+
"version": "3.898.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-connect",

0 commit comments

Comments
 (0)