@aws-sdk/middleware-flexible-checksums 3.53.0 → 3.54.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,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.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/middleware-flexible-checksums
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Encoder, GetAwsChunkedEncodingStream, HashConstructor, StreamHasher } from "@aws-sdk/types";
|
|
1
|
+
import { BodyLengthCalculator, Encoder, GetAwsChunkedEncodingStream, HashConstructor, StreamHasher } from "@aws-sdk/types";
|
|
2
2
|
export interface PreviouslyResolved {
|
|
3
3
|
/**
|
|
4
4
|
* The function that will be used to convert binary data to a base64-encoded string.
|
|
@@ -8,7 +8,7 @@ export interface PreviouslyResolved {
|
|
|
8
8
|
/**
|
|
9
9
|
* A function that can calculate the length of a body.
|
|
10
10
|
*/
|
|
11
|
-
bodyLengthChecker:
|
|
11
|
+
bodyLengthChecker: BodyLengthCalculator;
|
|
12
12
|
/**
|
|
13
13
|
* A function that returns Readable Stream which follows aws-chunked encoding stream.
|
|
14
14
|
*/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Encoder, GetAwsChunkedEncodingStream, HashConstructor, StreamHasher } from "@aws-sdk/types";
|
|
1
|
+
import { BodyLengthCalculator, Encoder, GetAwsChunkedEncodingStream, HashConstructor, StreamHasher } from "@aws-sdk/types";
|
|
2
2
|
export interface PreviouslyResolved {
|
|
3
3
|
|
|
4
4
|
base64Encoder: Encoder;
|
|
5
5
|
|
|
6
|
-
bodyLengthChecker:
|
|
6
|
+
bodyLengthChecker: BodyLengthCalculator;
|
|
7
7
|
|
|
8
8
|
getAwsChunkedEncodingStream: GetAwsChunkedEncodingStream;
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-flexible-checksums",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.54.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",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@aws-crypto/crc32": "2.0.0",
|
|
23
23
|
"@aws-crypto/crc32c": "2.0.0",
|
|
24
24
|
"@aws-sdk/is-array-buffer": "3.52.0",
|
|
25
|
-
"@aws-sdk/protocol-http": "3.
|
|
26
|
-
"@aws-sdk/types": "3.
|
|
25
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
26
|
+
"@aws-sdk/types": "3.54.0",
|
|
27
27
|
"tslib": "^2.3.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|