@aws-sdk/client-signer 3.99.0 → 3.109.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,33 @@
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.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-signer
9
+
10
+
11
+
12
+
13
+
14
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
15
+
16
+
17
+ ### Features
18
+
19
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-signer
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-signer
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class SignerClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var SignerClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -371,9 +371,7 @@ export interface DescribeSigningJobResponse {
371
371
  * <p>Map of user-assigned key-value pairs used during signing. These values contain any
372
372
  * information that you specified for use in your signing job. </p>
373
373
  */
374
- signingParameters?: {
375
- [key: string]: string;
376
- };
374
+ signingParameters?: Record<string, string>;
377
375
  /**
378
376
  * <p>Date and time that the signing job was created.</p>
379
377
  */
@@ -696,9 +694,7 @@ export interface GetSigningProfileResponse {
696
694
  * <p>A map of key-value pairs for signing operations that is attached to the target signing
697
695
  * profile.</p>
698
696
  */
699
- signingParameters?: {
700
- [key: string]: string;
701
- };
697
+ signingParameters?: Record<string, string>;
702
698
  /**
703
699
  * <p>The status of the target signing profile.</p>
704
700
  */
@@ -714,9 +710,7 @@ export interface GetSigningProfileResponse {
714
710
  /**
715
711
  * <p>A list of tags associated with the signing profile.</p>
716
712
  */
717
- tags?: {
718
- [key: string]: string;
719
- };
713
+ tags?: Record<string, string>;
720
714
  }
721
715
  export declare namespace GetSigningProfileResponse {
722
716
  /**
@@ -1095,9 +1089,7 @@ export interface SigningProfile {
1095
1089
  /**
1096
1090
  * <p>The parameters that are available for use by a code signing user.</p>
1097
1091
  */
1098
- signingParameters?: {
1099
- [key: string]: string;
1100
- };
1092
+ signingParameters?: Record<string, string>;
1101
1093
  /**
1102
1094
  * <p>The status of a code signing profile.</p>
1103
1095
  */
@@ -1109,9 +1101,7 @@ export interface SigningProfile {
1109
1101
  /**
1110
1102
  * <p>A list of tags associated with the signing profile.</p>
1111
1103
  */
1112
- tags?: {
1113
- [key: string]: string;
1114
- };
1104
+ tags?: Record<string, string>;
1115
1105
  }
1116
1106
  export declare namespace SigningProfile {
1117
1107
  /**
@@ -1153,9 +1143,7 @@ export interface ListTagsForResourceResponse {
1153
1143
  /**
1154
1144
  * <p>A list of tags associated with the signing profile.</p>
1155
1145
  */
1156
- tags?: {
1157
- [key: string]: string;
1158
- };
1146
+ tags?: Record<string, string>;
1159
1147
  }
1160
1148
  export declare namespace ListTagsForResourceResponse {
1161
1149
  /**
@@ -1204,15 +1192,11 @@ export interface PutSigningProfileRequest {
1204
1192
  * <p>Map of key-value pairs for signing. These can include any information that you want to
1205
1193
  * use during signing.</p>
1206
1194
  */
1207
- signingParameters?: {
1208
- [key: string]: string;
1209
- };
1195
+ signingParameters?: Record<string, string>;
1210
1196
  /**
1211
1197
  * <p>Tags to be associated with the signing profile that is being created.</p>
1212
1198
  */
1213
- tags?: {
1214
- [key: string]: string;
1215
- };
1199
+ tags?: Record<string, string>;
1216
1200
  }
1217
1201
  export declare namespace PutSigningProfileRequest {
1218
1202
  /**
@@ -1388,9 +1372,7 @@ export interface TagResourceRequest {
1388
1372
  /**
1389
1373
  * <p>One or more tags to be associated with the signing profile.</p>
1390
1374
  */
1391
- tags: {
1392
- [key: string]: string;
1393
- } | undefined;
1375
+ tags: Record<string, string> | undefined;
1394
1376
  }
1395
1377
  export declare namespace TagResourceRequest {
1396
1378
  /**
@@ -215,9 +215,7 @@ export interface DescribeSigningJobResponse {
215
215
 
216
216
  overrides?: SigningPlatformOverrides;
217
217
 
218
- signingParameters?: {
219
- [key: string]: string;
220
- };
218
+ signingParameters?: Record<string, string>;
221
219
 
222
220
  createdAt?: Date;
223
221
 
@@ -395,9 +393,7 @@ export interface GetSigningProfileResponse {
395
393
 
396
394
  overrides?: SigningPlatformOverrides;
397
395
 
398
- signingParameters?: {
399
- [key: string]: string;
400
- };
396
+ signingParameters?: Record<string, string>;
401
397
 
402
398
  status?: SigningProfileStatus | string;
403
399
 
@@ -405,9 +401,7 @@ export interface GetSigningProfileResponse {
405
401
 
406
402
  arn?: string;
407
403
 
408
- tags?: {
409
- [key: string]: string;
410
- };
404
+ tags?: Record<string, string>;
411
405
  }
412
406
  export declare namespace GetSigningProfileResponse {
413
407
 
@@ -605,17 +599,13 @@ export interface SigningProfile {
605
599
 
606
600
  platformDisplayName?: string;
607
601
 
608
- signingParameters?: {
609
- [key: string]: string;
610
- };
602
+ signingParameters?: Record<string, string>;
611
603
 
612
604
  status?: SigningProfileStatus | string;
613
605
 
614
606
  arn?: string;
615
607
 
616
- tags?: {
617
- [key: string]: string;
618
- };
608
+ tags?: Record<string, string>;
619
609
  }
620
610
  export declare namespace SigningProfile {
621
611
 
@@ -641,9 +631,7 @@ export declare namespace ListTagsForResourceRequest {
641
631
  }
642
632
  export interface ListTagsForResourceResponse {
643
633
 
644
- tags?: {
645
- [key: string]: string;
646
- };
634
+ tags?: Record<string, string>;
647
635
  }
648
636
  export declare namespace ListTagsForResourceResponse {
649
637
 
@@ -669,13 +657,9 @@ export interface PutSigningProfileRequest {
669
657
 
670
658
  overrides?: SigningPlatformOverrides;
671
659
 
672
- signingParameters?: {
673
- [key: string]: string;
674
- };
660
+ signingParameters?: Record<string, string>;
675
661
 
676
- tags?: {
677
- [key: string]: string;
678
- };
662
+ tags?: Record<string, string>;
679
663
  }
680
664
  export declare namespace PutSigningProfileRequest {
681
665
 
@@ -777,9 +761,7 @@ export interface TagResourceRequest {
777
761
 
778
762
  resourceArn: string | undefined;
779
763
 
780
- tags: {
781
- [key: string]: string;
782
- } | undefined;
764
+ tags: Record<string, string> | undefined;
783
765
  }
784
766
  export declare namespace TagResourceRequest {
785
767
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-signer",
3
3
  "description": "AWS SDK for JavaScript Signer Client for Node.js, Browser and React Native",
4
- "version": "3.99.0",
4
+ "version": "3.109.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,37 +18,38 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.99.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.109.0",
22
+ "@aws-sdk/config-resolver": "3.109.0",
23
+ "@aws-sdk/credential-provider-node": "3.109.0",
24
+ "@aws-sdk/fetch-http-handler": "3.109.0",
25
+ "@aws-sdk/hash-node": "3.109.0",
26
+ "@aws-sdk/invalid-dependency": "3.109.0",
27
+ "@aws-sdk/middleware-content-length": "3.109.0",
28
+ "@aws-sdk/middleware-host-header": "3.109.0",
29
+ "@aws-sdk/middleware-logger": "3.109.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.109.0",
31
+ "@aws-sdk/middleware-retry": "3.109.0",
32
+ "@aws-sdk/middleware-serde": "3.109.0",
33
+ "@aws-sdk/middleware-signing": "3.109.0",
34
+ "@aws-sdk/middleware-stack": "3.109.0",
35
+ "@aws-sdk/middleware-user-agent": "3.109.0",
36
+ "@aws-sdk/node-config-provider": "3.109.0",
37
+ "@aws-sdk/node-http-handler": "3.109.0",
38
+ "@aws-sdk/protocol-http": "3.109.0",
39
+ "@aws-sdk/smithy-client": "3.109.0",
40
+ "@aws-sdk/types": "3.109.0",
41
+ "@aws-sdk/url-parser": "3.109.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
51
- "@aws-sdk/util-waiter": "3.78.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.109.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.109.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.109.0",
49
+ "@aws-sdk/util-user-agent-node": "3.109.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
52
+ "@aws-sdk/util-waiter": "3.109.0",
52
53
  "tslib": "^2.3.1",
53
54
  "uuid": "^8.3.2"
54
55
  },