Skip to content

Commit

Permalink
Publish v3.657.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 23, 2024
1 parent 51c977f commit b06a8b7
Show file tree
Hide file tree
Showing 35 changed files with 184 additions and 18 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-athena:** List/Get/Update/Delete/CreateDataCatalog now integrate with AWS Glue connections. Users can create a Glue connection through Athena or use a Glue connection to define their Athena federated parameters. ([51c977f](https://github.com/aws/aws-sdk-js-v3/commit/51c977f9f1a1b2bb705b5a39cd83e6d214a9bef4))
* **client-bedrock-agent:** Amazon Bedrock Prompt Flows and Prompt Management now supports using inference profiles to increase throughput and improve resilience. ([3db793d](https://github.com/aws/aws-sdk-js-v3/commit/3db793d15e22c8b8d6c73dd6ffd5a4502f2b511f))
* **client-ec2:** Amazon EC2 G6e instances powered by NVIDIA L40S Tensor Core GPUs are the most cost-efficient GPU instances for deploying generative AI models and the highest performance GPU instances for spatial computing workloads. ([a99738f](https://github.com/aws/aws-sdk-js-v3/commit/a99738f66b48e16c5df6e2f7cf56285ba37ef1c7))
* **client-emr-serverless:** This release adds support for job concurrency and queuing configuration at Application level. ([f6a2631](https://github.com/aws/aws-sdk-js-v3/commit/f6a2631cb4db38f48575917a18ec993f1fb6b2b8))
* **client-glue:** Added AthenaProperties parameter to Glue Connections, allowing Athena to store service specific properties on Glue Connections. ([a8db47f](https://github.com/aws/aws-sdk-js-v3/commit/a8db47fcda3007ab20838f8772b22effa04e8bdd))
* **client-rds:** Support ComputeRedundancy parameter in ModifyDBShardGroup API. Add DBShardGroupArn in DBShardGroup API response. Remove InvalidMaxAcuFault from CreateDBShardGroup and ModifyDBShardGroup API. Both API will throw InvalidParameterValueException for invalid ACU configuration. ([f69b00e](https://github.com/aws/aws-sdk-js-v3/commit/f69b00edab12702846a50e656a509fa0b0713202))
* **client-resource-explorer-2:** AWS Resource Explorer released ListResources feature which allows customers to list all indexed AWS resources within a view. ([093a53f](https://github.com/aws/aws-sdk-js-v3/commit/093a53f15676ec38b52c2a8b35082aff8619fa8f))





# [3.656.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.655.0...v3.656.0) (2024-09-20)


Expand Down
2 changes: 1 addition & 1 deletion benchmark/size/report.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
|@aws-sdk/node-http-handler|3.370.0|14.4 KB|N/A|N/A|N/A|
|@aws-sdk/polly-request-presigner|3.495.0|23.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/s3-presigned-post|3.496.0|27.4 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/s3-request-presigner|3.651.1|32.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/s3-request-presigner|3.654.0|32.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/signature-v4|3.370.0|14.4 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
|@aws-sdk/signature-v4-crt|3.651.1|54.6 KB|N/A|N/A|N/A|
|@aws-sdk/smithy-client|3.370.0|18.8 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
Expand Down
8 changes: 8 additions & 0 deletions clients/client-api-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

**Note:** Version bump only for package @aws-sdk/client-api-gateway





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-api-gateway
Expand Down
2 changes: 1 addition & 1 deletion clients/client-api-gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-api-gateway",
"description": "AWS SDK for JavaScript Api Gateway Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-api-gateway",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-athena/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-athena:** List/Get/Update/Delete/CreateDataCatalog now integrate with AWS Glue connections. Users can create a Glue connection through Athena or use a Glue connection to define their Athena federated parameters. ([51c977f](https://github.com/aws/aws-sdk-js-v3/commit/51c977f9f1a1b2bb705b5a39cd83e6d214a9bef4))





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-athena
Expand Down
2 changes: 1 addition & 1 deletion clients/client-athena/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-athena",
"description": "AWS SDK for JavaScript Athena Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-athena",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-bedrock-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-bedrock-agent:** Amazon Bedrock Prompt Flows and Prompt Management now supports using inference profiles to increase throughput and improve resilience. ([3db793d](https://github.com/aws/aws-sdk-js-v3/commit/3db793d15e22c8b8d6c73dd6ffd5a4502f2b511f))





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-bedrock-agent
Expand Down
2 changes: 1 addition & 1 deletion clients/client-bedrock-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-bedrock-agent",
"description": "AWS SDK for JavaScript Bedrock Agent Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agent",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-ec2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-ec2:** Amazon EC2 G6e instances powered by NVIDIA L40S Tensor Core GPUs are the most cost-efficient GPU instances for deploying generative AI models and the highest performance GPU instances for spatial computing workloads. ([a99738f](https://github.com/aws/aws-sdk-js-v3/commit/a99738f66b48e16c5df6e2f7cf56285ba37ef1c7))





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-ec2
Expand Down
2 changes: 1 addition & 1 deletion clients/client-ec2/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-ec2",
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-emr-serverless/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-emr-serverless:** This release adds support for job concurrency and queuing configuration at Application level. ([f6a2631](https://github.com/aws/aws-sdk-js-v3/commit/f6a2631cb4db38f48575917a18ec993f1fb6b2b8))





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-emr-serverless
Expand Down
2 changes: 1 addition & 1 deletion clients/client-emr-serverless/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-emr-serverless",
"description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-emr-serverless",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-glue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-glue:** Added AthenaProperties parameter to Glue Connections, allowing Athena to store service specific properties on Glue Connections. ([a8db47f](https://github.com/aws/aws-sdk-js-v3/commit/a8db47fcda3007ab20838f8772b22effa04e8bdd))





# [3.655.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.654.0...v3.655.0) (2024-09-19)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-glue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-glue",
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
"version": "3.655.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-glue",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-rds/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-rds:** Support ComputeRedundancy parameter in ModifyDBShardGroup API. Add DBShardGroupArn in DBShardGroup API response. Remove InvalidMaxAcuFault from CreateDBShardGroup and ModifyDBShardGroup API. Both API will throw InvalidParameterValueException for invalid ACU configuration. ([f69b00e](https://github.com/aws/aws-sdk-js-v3/commit/f69b00edab12702846a50e656a509fa0b0713202))





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-rds
Expand Down
2 changes: 1 addition & 1 deletion clients/client-rds/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-rds",
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-rds",
Expand Down
11 changes: 11 additions & 0 deletions clients/client-resource-explorer-2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)


### Features

* **client-resource-explorer-2:** AWS Resource Explorer released ListResources feature which allows customers to list all indexed AWS resources within a view. ([093a53f](https://github.com/aws/aws-sdk-js-v3/commit/093a53f15676ec38b52c2a8b35082aff8619fa8f))





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/client-resource-explorer-2
Expand Down
2 changes: 1 addition & 1 deletion clients/client-resource-explorer-2/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-resource-explorer-2",
"description": "AWS SDK for JavaScript Resource Explorer 2 Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-resource-explorer-2",
Expand Down
8 changes: 8 additions & 0 deletions clients/client-s3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

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





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)


Expand Down
2 changes: 1 addition & 1 deletion clients/client-s3/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-s3",
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline client-s3",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.656.0",
"version": "3.657.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
8 changes: 8 additions & 0 deletions lib/lib-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

**Note:** Version bump only for package @aws-sdk/lib-storage





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/lib-storage
Expand Down
2 changes: 1 addition & 1 deletion lib/lib-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/lib-storage",
"version": "3.654.0",
"version": "3.657.0",
"description": "Storage higher order operation",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/middleware-flexible-checksums/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

**Note:** Version bump only for package @aws-sdk/middleware-flexible-checksums





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)


Expand Down
2 changes: 1 addition & 1 deletion packages/middleware-flexible-checksums/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-flexible-checksums",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline middleware-flexible-checksums",
Expand Down
8 changes: 8 additions & 0 deletions packages/s3-presigned-post/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

**Note:** Version bump only for package @aws-sdk/s3-presigned-post





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/s3-presigned-post
Expand Down
2 changes: 1 addition & 1 deletion packages/s3-presigned-post/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/s3-presigned-post",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline s3-presigned-post",
Expand Down
8 changes: 8 additions & 0 deletions packages/s3-request-presigner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

**Note:** Version bump only for package @aws-sdk/s3-request-presigner





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/s3-request-presigner
Expand Down
2 changes: 1 addition & 1 deletion packages/s3-request-presigner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/s3-request-presigner",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "node ../../scripts/compilation/inline s3-request-presigner",
Expand Down
8 changes: 8 additions & 0 deletions private/aws-client-api-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.657.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.656.0...v3.657.0) (2024-09-23)

**Note:** Version bump only for package @aws-sdk/aws-client-api-test





# [3.654.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.653.0...v3.654.0) (2024-09-18)

**Note:** Version bump only for package @aws-sdk/aws-client-api-test
Expand Down
2 changes: 1 addition & 1 deletion private/aws-client-api-test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/aws-client-api-test",
"description": "Test suite for client interface stability",
"version": "3.654.0",
"version": "3.657.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
Expand Down
Loading

0 comments on commit b06a8b7

Please sign in to comment.