@aws-sdk/middleware-sdk-s3 3.168.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 CHANGED
@@ -3,6 +3,22 @@
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
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
@@ -1,7 +1,13 @@
1
- import { FinalizeRequestHandlerOptions, FinalizeRequestMiddleware, Pluggable } from "@aws-sdk/types";
2
-
3
- export declare function checkContentLengthHeader(): FinalizeRequestMiddleware<any, any>;
4
-
5
- export declare const checkContentLengthHeaderMiddlewareOptions: FinalizeRequestHandlerOptions;
6
-
7
- export declare const getCheckContentLengthHeaderPlugin: (unused: any) => Pluggable<any, any>;
1
+ import {
2
+ FinalizeRequestHandlerOptions,
3
+ FinalizeRequestMiddleware,
4
+ Pluggable,
5
+ } from "@aws-sdk/types";
6
+ export declare function checkContentLengthHeader(): FinalizeRequestMiddleware<
7
+ any,
8
+ any
9
+ >;
10
+ export declare const checkContentLengthHeaderMiddlewareOptions: FinalizeRequestHandlerOptions;
11
+ export declare const getCheckContentLengthHeaderPlugin: (
12
+ unused: any
13
+ ) => Pluggable<any, any>;
@@ -1,4 +1,4 @@
1
- export * from "./check-content-length-header";
2
- export * from "./throw-200-exceptions";
3
- export * from "./validate-bucket-name";
4
- export * from "./write-get-object-response-endpoint";
1
+ export * from "./check-content-length-header";
2
+ export * from "./throw-200-exceptions";
3
+ export * from "./validate-bucket-name";
4
+ export * from "./write-get-object-response-endpoint";
@@ -1,12 +1,19 @@
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
+ import {
2
+ DeserializeMiddleware,
3
+ Encoder,
4
+ Pluggable,
5
+ RelativeMiddlewareOptions,
6
+ StreamCollector,
7
+ } from "@aws-sdk/types";
8
+ declare type PreviouslyResolved = {
9
+ streamCollector: StreamCollector;
10
+ utf8Encoder: Encoder;
11
+ };
12
+ export declare const throw200ExceptionsMiddleware: (
13
+ config: PreviouslyResolved
14
+ ) => DeserializeMiddleware<any, any>;
15
+ export declare const throw200ExceptionsMiddlewareOptions: RelativeMiddlewareOptions;
16
+ export declare const getThrow200ExceptionsPlugin: (
17
+ config: PreviouslyResolved
18
+ ) => Pluggable<any, any>;
19
+ export {};
@@ -1,7 +1,13 @@
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>;
1
+ import {
2
+ InitializeHandlerOptions,
3
+ InitializeMiddleware,
4
+ Pluggable,
5
+ } from "@aws-sdk/types";
6
+ export declare function validateBucketNameMiddleware(): InitializeMiddleware<
7
+ any,
8
+ any
9
+ >;
10
+ export declare const validateBucketNameMiddlewareOptions: InitializeHandlerOptions;
11
+ export declare const getValidateBucketNamePlugin: (
12
+ unused: any
13
+ ) => Pluggable<any, any>;
@@ -1,14 +1,20 @@
1
- import { BuildMiddleware, Pluggable, Provider, RelativeMiddlewareOptions } from "@aws-sdk/types";
2
- declare type PreviouslyResolved = {
3
- region: Provider<string>;
4
- isCustomEndpoint: boolean;
5
- disableHostPrefix: boolean;
6
- runtime: string;
7
- };
8
-
9
- export declare const writeGetObjectResponseEndpointMiddleware: (config: PreviouslyResolved) => BuildMiddleware<any, any>;
10
-
11
- export declare const writeGetObjectResponseEndpointMiddlewareOptions: RelativeMiddlewareOptions;
12
-
13
- export declare const getWriteGetObjectResponseEndpointPlugin: (config: PreviouslyResolved) => Pluggable<any, any>;
14
- export {};
1
+ import {
2
+ BuildMiddleware,
3
+ Pluggable,
4
+ Provider,
5
+ RelativeMiddlewareOptions,
6
+ } from "@aws-sdk/types";
7
+ declare type PreviouslyResolved = {
8
+ region: Provider<string>;
9
+ isCustomEndpoint: boolean;
10
+ disableHostPrefix: boolean;
11
+ runtime: string;
12
+ };
13
+ export declare const writeGetObjectResponseEndpointMiddleware: (
14
+ config: PreviouslyResolved
15
+ ) => BuildMiddleware<any, any>;
16
+ export declare const writeGetObjectResponseEndpointMiddlewareOptions: RelativeMiddlewareOptions;
17
+ export declare const getWriteGetObjectResponseEndpointPlugin: (
18
+ config: PreviouslyResolved
19
+ ) => Pluggable<any, any>;
20
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-s3",
3
- "version": "3.168.0",
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,16 +20,16 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@aws-sdk/middleware-bucket-endpoint": "3.168.0",
24
- "@aws-sdk/protocol-http": "3.168.0",
25
- "@aws-sdk/types": "3.168.0",
26
- "@aws-sdk/util-arn-parser": "3.168.0",
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
+ "@aws-sdk/util-arn-parser": "3.170.0",
27
27
  "tslib": "^2.3.1"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@tsconfig/recommended": "1.0.1",
31
31
  "concurrently": "7.0.0",
32
- "downlevel-dts": "0.7.0",
32
+ "downlevel-dts": "0.10.1",
33
33
  "rimraf": "3.0.2",
34
34
  "typedoc": "0.19.2",
35
35
  "typescript": "~4.6.2"