@aws-sdk/middleware-sdk-s3 3.49.0 → 3.50.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.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-s3",
3
- "version": "3.49.0",
3
+ "version": "3.50.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",
@@ -25,14 +25,14 @@
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "dependencies": {
28
- "@aws-sdk/protocol-http": "3.49.0",
29
- "@aws-sdk/signature-v4": "3.49.0",
30
- "@aws-sdk/types": "3.49.0",
28
+ "@aws-sdk/protocol-http": "3.50.0",
29
+ "@aws-sdk/signature-v4": "3.50.0",
30
+ "@aws-sdk/types": "3.50.0",
31
31
  "@aws-sdk/util-arn-parser": "3.49.0",
32
32
  "tslib": "^2.3.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@aws-sdk/signature-v4-crt": "3.49.0",
35
+ "@aws-sdk/signature-v4-crt": "3.50.0",
36
36
  "@tsconfig/recommended": "1.0.1",
37
37
  "concurrently": "7.0.0",
38
38
  "downlevel-dts": "0.7.0",
@@ -1,15 +0,0 @@
1
- import { SignatureV4CryptoInit, SignatureV4Init } from "@aws-sdk/signature-v4";
2
- import { HttpRequest, RequestPresigner, RequestPresigningArguments, RequestSigner, RequestSigningArguments } from "@aws-sdk/types";
3
- export declare type S3SignerV4Init = SignatureV4Init & SignatureV4CryptoInit & {
4
- runtime?: string;
5
- };
6
-
7
- export declare class S3SignatureV4 implements RequestPresigner, RequestSigner {
8
- private readonly sigv4Signer;
9
- private sigv4aSigner?;
10
- private readonly signerOptions;
11
- constructor(options: S3SignerV4Init);
12
- sign(requestToSign: HttpRequest, options?: RequestSigningArguments): Promise<HttpRequest>;
13
- presign(originalRequest: HttpRequest, options?: RequestPresigningArguments): Promise<HttpRequest>;
14
- private getSigv4aSigner;
15
- }
@@ -1,4 +0,0 @@
1
- export * from "./S3SignatureV4";
2
- export * from "./throw-200-exceptions";
3
- export * from "./use-regional-endpoint";
4
- export * from "./validate-bucket-name";
@@ -1,12 +0,0 @@
1
- import { DeserializeMiddleware, Encoder, Pluggable, RelativeMiddlewareOptions, StreamCollector } from "@aws-sdk/types";
2
- declare type PreviouslyResolved = {
3
- streamCollector: StreamCollector;
4
- utf8Encoder: Encoder;
5
- };
6
-
7
- export declare const throw200ExceptionsMiddleware: (config: PreviouslyResolved) => DeserializeMiddleware<any, any>;
8
-
9
- export declare const throw200ExceptionsMiddlewareOptions: RelativeMiddlewareOptions;
10
-
11
- export declare const getThrow200ExceptionsPlugin: (config: PreviouslyResolved) => Pluggable<any, any>;
12
- export {};
@@ -1,12 +0,0 @@
1
- import { BuildHandlerOptions, BuildMiddleware, Pluggable, Provider } from "@aws-sdk/types";
2
- declare type PreviouslyResolved = {
3
- region: Provider<string>;
4
- isCustomEndpoint: boolean;
5
- };
6
-
7
- export declare const useRegionalEndpointMiddleware: (config: PreviouslyResolved) => BuildMiddleware<any, any>;
8
-
9
- export declare const useRegionalEndpointMiddlewareOptions: BuildHandlerOptions;
10
-
11
- export declare const getUseRegionalEndpointPlugin: (config: PreviouslyResolved) => Pluggable<any, any>;
12
- export {};
@@ -1,7 +0,0 @@
1
- import { InitializeHandlerOptions, InitializeMiddleware, Pluggable } from "@aws-sdk/types";
2
-
3
- export declare function validateBucketNameMiddleware(): InitializeMiddleware<any, any>;
4
-
5
- export declare const validateBucketNameMiddlewareOptions: InitializeHandlerOptions;
6
-
7
- export declare const getValidateBucketNamePlugin: (unused: any) => Pluggable<any, any>;