@aws-sdk/middleware-logger 3.47.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,38 @@
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-logger
9
+
10
+
11
+
12
+
13
+
14
+ # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-logger
17
+
18
+
19
+
20
+
21
+
22
+ ## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/middleware-logger
25
+
26
+
27
+
28
+
29
+
30
+ ## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
31
+
32
+ **Note:** Version bump only for package @aws-sdk/middleware-logger
33
+
34
+
35
+
36
+
37
+
6
38
  # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
7
39
 
8
40
  **Note:** Version bump only for package @aws-sdk/middleware-logger
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-logger",
3
- "version": "3.47.0",
3
+ "version": "3.50.0",
4
4
  "scripts": {
5
- "build": "yarn build:cjs && yarn build:es && yarn build:types",
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
8
  "build:types": "tsc -p tsconfig.types.json",
@@ -20,12 +20,18 @@
20
20
  "module": "./dist-es/index.js",
21
21
  "types": "./dist-types/index.d.ts",
22
22
  "dependencies": {
23
- "@aws-sdk/types": "3.47.0",
23
+ "@aws-sdk/types": "3.50.0",
24
24
  "tslib": "^2.3.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@aws-sdk/protocol-http": "3.47.0",
28
- "@types/node": "^10.0.0"
27
+ "@aws-sdk/protocol-http": "3.50.0",
28
+ "@tsconfig/recommended": "1.0.1",
29
+ "@types/node": "^10.0.0",
30
+ "concurrently": "7.0.0",
31
+ "downlevel-dts": "0.7.0",
32
+ "rimraf": "3.0.2",
33
+ "typedoc": "0.19.2",
34
+ "typescript": "~4.3.5"
29
35
  },
30
36
  "engines": {
31
37
  "node": ">= 12.0.0"
@@ -1 +0,0 @@
1
- export * from "./loggerMiddleware";
@@ -1,4 +0,0 @@
1
- import { AbsoluteLocation, HandlerExecutionContext, InitializeHandler, InitializeHandlerOptions, MetadataBearer, Pluggable } from "@aws-sdk/types";
2
- export declare const loggerMiddleware: () => <Output extends MetadataBearer = MetadataBearer>(next: InitializeHandler<any, Output>, context: HandlerExecutionContext) => InitializeHandler<any, Output>;
3
- export declare const loggerMiddlewareOptions: InitializeHandlerOptions & AbsoluteLocation;
4
- export declare const getLoggerPlugin: (options: any) => Pluggable<any, any>;