@aws-sdk/middleware-sdk-s3 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/check-content-length-header.d.ts +0 -3
- package/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -3
- package/dist-types/ts3.4/validate-bucket-name.d.ts +0 -3
- package/dist-types/ts3.4/write-get-object-response-endpoint.d.ts +0 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
|
|
@@ -3,14 +3,11 @@ import {
|
|
|
3
3
|
FinalizeRequestMiddleware,
|
|
4
4
|
Pluggable,
|
|
5
5
|
} from "@aws-sdk/types";
|
|
6
|
-
|
|
7
6
|
export declare function checkContentLengthHeader(): FinalizeRequestMiddleware<
|
|
8
7
|
any,
|
|
9
8
|
any
|
|
10
9
|
>;
|
|
11
|
-
|
|
12
10
|
export declare const checkContentLengthHeaderMiddlewareOptions: FinalizeRequestHandlerOptions;
|
|
13
|
-
|
|
14
11
|
export declare const getCheckContentLengthHeaderPlugin: (
|
|
15
12
|
unused: any
|
|
16
13
|
) => Pluggable<any, any>;
|
|
@@ -9,13 +9,10 @@ declare type PreviouslyResolved = {
|
|
|
9
9
|
streamCollector: StreamCollector;
|
|
10
10
|
utf8Encoder: Encoder;
|
|
11
11
|
};
|
|
12
|
-
|
|
13
12
|
export declare const throw200ExceptionsMiddleware: (
|
|
14
13
|
config: PreviouslyResolved
|
|
15
14
|
) => DeserializeMiddleware<any, any>;
|
|
16
|
-
|
|
17
15
|
export declare const throw200ExceptionsMiddlewareOptions: RelativeMiddlewareOptions;
|
|
18
|
-
|
|
19
16
|
export declare const getThrow200ExceptionsPlugin: (
|
|
20
17
|
config: PreviouslyResolved
|
|
21
18
|
) => Pluggable<any, any>;
|
|
@@ -3,14 +3,11 @@ import {
|
|
|
3
3
|
InitializeMiddleware,
|
|
4
4
|
Pluggable,
|
|
5
5
|
} from "@aws-sdk/types";
|
|
6
|
-
|
|
7
6
|
export declare function validateBucketNameMiddleware(): InitializeMiddleware<
|
|
8
7
|
any,
|
|
9
8
|
any
|
|
10
9
|
>;
|
|
11
|
-
|
|
12
10
|
export declare const validateBucketNameMiddlewareOptions: InitializeHandlerOptions;
|
|
13
|
-
|
|
14
11
|
export declare const getValidateBucketNamePlugin: (
|
|
15
12
|
unused: any
|
|
16
13
|
) => Pluggable<any, any>;
|
|
@@ -10,13 +10,10 @@ declare type PreviouslyResolved = {
|
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
11
|
runtime: string;
|
|
12
12
|
};
|
|
13
|
-
|
|
14
13
|
export declare const writeGetObjectResponseEndpointMiddleware: (
|
|
15
14
|
config: PreviouslyResolved
|
|
16
15
|
) => BuildMiddleware<any, any>;
|
|
17
|
-
|
|
18
16
|
export declare const writeGetObjectResponseEndpointMiddlewareOptions: RelativeMiddlewareOptions;
|
|
19
|
-
|
|
20
17
|
export declare const getWriteGetObjectResponseEndpointPlugin: (
|
|
21
18
|
config: PreviouslyResolved
|
|
22
19
|
) => Pluggable<any, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-sdk-s3",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.171.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/middleware-bucket-endpoint": "3.
|
|
24
|
-
"@aws-sdk/protocol-http": "3.
|
|
25
|
-
"@aws-sdk/types": "3.
|
|
23
|
+
"@aws-sdk/middleware-bucket-endpoint": "3.171.0",
|
|
24
|
+
"@aws-sdk/protocol-http": "3.171.0",
|
|
25
|
+
"@aws-sdk/types": "3.171.0",
|
|
26
26
|
"@aws-sdk/util-arn-parser": "3.170.0",
|
|
27
27
|
"tslib": "^2.3.1"
|
|
28
28
|
},
|