@aws-sdk/middleware-sdk-s3 3.165.0 → 3.170.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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
9
+
10
+
11
+
12
+
13
+
14
+ # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.165.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.164.0...v3.165.0) (2022-09-06)
7
23
 
8
24
 
@@ -1,7 +1,16 @@
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
+
7
+ export declare function checkContentLengthHeader(): FinalizeRequestMiddleware<
8
+ any,
9
+ any
10
+ >;
11
+
12
+ export declare const checkContentLengthHeaderMiddlewareOptions: FinalizeRequestHandlerOptions;
13
+
14
+ export declare const getCheckContentLengthHeaderPlugin: (
15
+ unused: any
16
+ ) => 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,22 @@
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
+
13
+ export declare const throw200ExceptionsMiddleware: (
14
+ config: PreviouslyResolved
15
+ ) => DeserializeMiddleware<any, any>;
16
+
17
+ export declare const throw200ExceptionsMiddlewareOptions: RelativeMiddlewareOptions;
18
+
19
+ export declare const getThrow200ExceptionsPlugin: (
20
+ config: PreviouslyResolved
21
+ ) => Pluggable<any, any>;
22
+ export {};
@@ -1,7 +1,16 @@
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
+
7
+ export declare function validateBucketNameMiddleware(): InitializeMiddleware<
8
+ any,
9
+ any
10
+ >;
11
+
12
+ export declare const validateBucketNameMiddlewareOptions: InitializeHandlerOptions;
13
+
14
+ export declare const getValidateBucketNamePlugin: (
15
+ unused: any
16
+ ) => Pluggable<any, any>;
@@ -1,14 +1,23 @@
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
+
14
+ export declare const writeGetObjectResponseEndpointMiddleware: (
15
+ config: PreviouslyResolved
16
+ ) => BuildMiddleware<any, any>;
17
+
18
+ export declare const writeGetObjectResponseEndpointMiddlewareOptions: RelativeMiddlewareOptions;
19
+
20
+ export declare const getWriteGetObjectResponseEndpointPlugin: (
21
+ config: PreviouslyResolved
22
+ ) => Pluggable<any, any>;
23
+ export {};
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-s3",
3
- "version": "3.165.0",
3
+ "version": "3.170.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",
7
7
  "build:es": "tsc -p tsconfig.es.json",
8
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
8
9
  "build:types": "tsc -p tsconfig.types.json",
9
10
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
10
11
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
@@ -19,16 +20,16 @@
19
20
  },
20
21
  "license": "Apache-2.0",
21
22
  "dependencies": {
22
- "@aws-sdk/middleware-bucket-endpoint": "3.162.0",
23
- "@aws-sdk/protocol-http": "3.162.0",
24
- "@aws-sdk/types": "3.162.0",
25
- "@aws-sdk/util-arn-parser": "3.55.0",
23
+ "@aws-sdk/middleware-bucket-endpoint": "3.170.0",
24
+ "@aws-sdk/protocol-http": "3.170.0",
25
+ "@aws-sdk/types": "3.170.0",
26
+ "@aws-sdk/util-arn-parser": "3.170.0",
26
27
  "tslib": "^2.3.1"
27
28
  },
28
29
  "devDependencies": {
29
30
  "@tsconfig/recommended": "1.0.1",
30
31
  "concurrently": "7.0.0",
31
- "downlevel-dts": "0.7.0",
32
+ "downlevel-dts": "0.10.1",
32
33
  "rimraf": "3.0.2",
33
34
  "typedoc": "0.19.2",
34
35
  "typescript": "~4.6.2"