Skip to content

Commit f0613df

Browse files
author
awstools
committed
Publish v3.442.0
1 parent 334a371 commit f0613df

File tree

15 files changed

+91
-8
lines changed

15 files changed

+91
-8
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-apprunner:** AWS App Runner now supports using dual-stack address type for the public endpoint of your incoming traffic. ([f77c1c9](https://github.com/aws/aws-sdk-js-v3/commit/f77c1c94481f1c8b19f3c08ae69281778de2e444))
12+
* **client-connect:** GetMetricDataV2 API: Update to include new metrics PERCENT_NON_TALK_TIME, PERCENT_TALK_TIME, PERCENT_TALK_TIME_AGENT, PERCENT_TALK_TIME_CUSTOMER ([55d62b8](https://github.com/aws/aws-sdk-js-v3/commit/55d62b8ef63d315e221aededd90699279cbd76cf))
13+
* **client-gamelift:** Amazon GameLift adds support for shared credentials, which allows applications that are deployed on managed EC2 fleets to interact with other AWS resources. ([2c85ed8](https://github.com/aws/aws-sdk-js-v3/commit/2c85ed80b699977d00c64abd00e6bf21cd59b867))
14+
* **client-glue:** This release introduces Google BigQuery Source and Target in AWS Glue CodeGenConfigurationNode. ([08d5b25](https://github.com/aws/aws-sdk-js-v3/commit/08d5b256779a884a6adedf20c1e8b3ec14b44533))
15+
* **client-network-firewall:** This release introduces the stateless rule analyzer, which enables you to analyze your stateless rules for asymmetric routing. ([8f6dca1](https://github.com/aws/aws-sdk-js-v3/commit/8f6dca1938d7202738f3c16eff3c89d02c1c8fa8))
16+
* **client-quicksight:** Got confirmed from qmeixua@ about custom week features, and tested locally with aws cli and java sdk that the subtypes are showing up. ([cf31194](https://github.com/aws/aws-sdk-js-v3/commit/cf311940ca8d402bc8f5d99668a3d1668bd82f1f))
17+
* **clients:** update client endpoints as of 2023-11-02 ([334a371](https://github.com/aws/aws-sdk-js-v3/commit/334a3716e7512f4a3868f2ea8c34971c1ae85794))
18+
19+
20+
21+
22+
623
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
724

825

benchmark/size/report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
|@aws-sdk/client-efs|3.438.0|787.9 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
2222
|@aws-sdk/client-eventbridge|3.438.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
2323
|@aws-sdk/client-firehose|3.438.0|535.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
24-
|@aws-sdk/client-glue|3.438.0|4.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
24+
|@aws-sdk/client-glue|3.441.0|4.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
2525
|@aws-sdk/client-iam|3.438.0|3.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
2626
|@aws-sdk/client-kinesis|3.438.0|760 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
2727
|@aws-sdk/client-kms|3.438.0|1.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|

clients/client-apprunner/CHANGELOG.md

+11
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-apprunner:** AWS App Runner now supports using dual-stack address type for the public endpoint of your incoming traffic. ([f77c1c9](https://github.com/aws/aws-sdk-js-v3/commit/f77c1c94481f1c8b19f3c08ae69281778de2e444))
12+
13+
14+
15+
16+
617
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
718

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

clients/client-apprunner/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-apprunner",
33
"description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
4-
"version": "3.441.0",
4+
"version": "3.442.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-connect/CHANGELOG.md

+11
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-connect:** GetMetricDataV2 API: Update to include new metrics PERCENT_NON_TALK_TIME, PERCENT_TALK_TIME, PERCENT_TALK_TIME_AGENT, PERCENT_TALK_TIME_CUSTOMER ([55d62b8](https://github.com/aws/aws-sdk-js-v3/commit/55d62b8ef63d315e221aededd90699279cbd76cf))
12+
13+
14+
15+
16+
617
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
718

819

clients/client-connect/package.json

+1-1
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.441.0",
4+
"version": "3.442.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-gamelift/CHANGELOG.md

+11
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-gamelift:** Amazon GameLift adds support for shared credentials, which allows applications that are deployed on managed EC2 fleets to interact with other AWS resources. ([2c85ed8](https://github.com/aws/aws-sdk-js-v3/commit/2c85ed80b699977d00c64abd00e6bf21cd59b867))
12+
13+
14+
15+
16+
617
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
718

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

clients/client-gamelift/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-gamelift",
33
"description": "AWS SDK for JavaScript Gamelift Client for Node.js, Browser and React Native",
4-
"version": "3.441.0",
4+
"version": "3.442.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-glue/CHANGELOG.md

+11
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-glue:** This release introduces Google BigQuery Source and Target in AWS Glue CodeGenConfigurationNode. ([08d5b25](https://github.com/aws/aws-sdk-js-v3/commit/08d5b256779a884a6adedf20c1e8b3ec14b44533))
12+
13+
14+
15+
16+
617
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
718

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

clients/client-glue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-glue",
33
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4-
"version": "3.441.0",
4+
"version": "3.442.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-network-firewall/CHANGELOG.md

+11
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-network-firewall:** This release introduces the stateless rule analyzer, which enables you to analyze your stateless rules for asymmetric routing. ([8f6dca1](https://github.com/aws/aws-sdk-js-v3/commit/8f6dca1938d7202738f3c16eff3c89d02c1c8fa8))
12+
13+
14+
15+
16+
617
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
718

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

clients/client-network-firewall/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-network-firewall",
33
"description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native",
4-
"version": "3.441.0",
4+
"version": "3.442.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-quicksight/CHANGELOG.md

+11
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.442.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.441.0...v3.442.0) (2023-11-02)
7+
8+
9+
### Features
10+
11+
* **client-quicksight:** Got confirmed from qmeixua@ about custom week features, and tested locally with aws cli and java sdk that the subtypes are showing up. ([cf31194](https://github.com/aws/aws-sdk-js-v3/commit/cf311940ca8d402bc8f5d99668a3d1668bd82f1f))
12+
13+
14+
15+
16+
617
# [3.441.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.440.0...v3.441.0) (2023-11-01)
718

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

clients/client-quicksight/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-quicksight",
33
"description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
4-
"version": "3.441.0",
4+
"version": "3.442.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.441.0",
2+
"version": "3.442.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"command": {

0 commit comments

Comments
 (0)