@aws-sdk/client-s3-control 3.100.0 → 3.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-s3-control
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_sdk_s3_control_1 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10
11
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
@@ -27,6 +28,7 @@ class S3ControlClient extends smithy_client_1.Client {
|
|
|
27
28
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
28
29
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
29
30
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
31
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
30
32
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
31
33
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
32
34
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { resolveS3ControlConfig, } from "@aws-sdk/middleware-sdk-s3-control";
|
|
8
9
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
@@ -27,6 +28,7 @@ var S3ControlClient = (function (_super) {
|
|
|
27
28
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
28
29
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
29
30
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
32
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
33
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
34
|
return _this;
|
|
@@ -1314,9 +1314,7 @@ export interface S3ObjectMetadata {
|
|
|
1314
1314
|
/**
|
|
1315
1315
|
* <p></p>
|
|
1316
1316
|
*/
|
|
1317
|
-
UserMetadata?:
|
|
1318
|
-
[key: string]: string;
|
|
1319
|
-
};
|
|
1317
|
+
UserMetadata?: Record<string, string>;
|
|
1320
1318
|
/**
|
|
1321
1319
|
* <p></p>
|
|
1322
1320
|
*/
|
|
@@ -2440,9 +2438,7 @@ export interface GetAccessPointResult {
|
|
|
2440
2438
|
/**
|
|
2441
2439
|
* <p>The VPC endpoint for the access point.</p>
|
|
2442
2440
|
*/
|
|
2443
|
-
Endpoints?:
|
|
2444
|
-
[key: string]: string;
|
|
2445
|
-
};
|
|
2441
|
+
Endpoints?: Record<string, string>;
|
|
2446
2442
|
}
|
|
2447
2443
|
export declare namespace GetAccessPointResult {
|
|
2448
2444
|
/**
|
|
@@ -723,9 +723,7 @@ export interface S3ObjectMetadata {
|
|
|
723
723
|
|
|
724
724
|
ContentLanguage?: string;
|
|
725
725
|
|
|
726
|
-
UserMetadata?:
|
|
727
|
-
[key: string]: string;
|
|
728
|
-
};
|
|
726
|
+
UserMetadata?: Record<string, string>;
|
|
729
727
|
|
|
730
728
|
ContentLength?: number;
|
|
731
729
|
|
|
@@ -1331,9 +1329,7 @@ export interface GetAccessPointResult {
|
|
|
1331
1329
|
|
|
1332
1330
|
AccessPointArn?: string;
|
|
1333
1331
|
|
|
1334
|
-
Endpoints?:
|
|
1335
|
-
[key: string]: string;
|
|
1336
|
-
};
|
|
1332
|
+
Endpoints?: Record<string, string>;
|
|
1337
1333
|
}
|
|
1338
1334
|
export declare namespace GetAccessPointResult {
|
|
1339
1335
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
27
27
|
"@aws-sdk/hash-blob-browser": "3.78.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.78.0",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
34
34
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
35
35
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
36
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
36
37
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
37
38
|
"@aws-sdk/middleware-sdk-s3-control": "3.80.0",
|
|
38
39
|
"@aws-sdk/middleware-serde": "3.78.0",
|