@aws-sdk/client-signer 3.957.0 → 3.958.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/README.md +1 -24
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +334 -420
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +327 -413
- package/dist-es/waiters/waitForSuccessfulSigningJob.js +2 -2
- package/dist-types/Signer.d.ts +1 -0
- package/dist-types/SignerClient.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -6,7 +6,7 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new DescribeSigningJobCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
10
|
return result.status;
|
|
11
11
|
};
|
|
12
12
|
if (returnComparator() === "Succeeded") {
|
|
@@ -15,7 +15,7 @@ const checkState = async (client, input) => {
|
|
|
15
15
|
}
|
|
16
16
|
catch (e) { }
|
|
17
17
|
try {
|
|
18
|
-
|
|
18
|
+
let returnComparator = () => {
|
|
19
19
|
return result.status;
|
|
20
20
|
};
|
|
21
21
|
if (returnComparator() === "Failed") {
|
package/dist-types/Signer.d.ts
CHANGED
|
@@ -151,6 +151,7 @@ export interface Signer {
|
|
|
151
151
|
* IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-party code-signing
|
|
152
152
|
* certificate using ACM, and use that to sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p>
|
|
153
153
|
* <p>With Signer and the Notation CLI from the <a href="https://notaryproject.dev/">Notary
|
|
154
|
+
|
|
154
155
|
* Project</a>, you can sign container images stored in a container registry such
|
|
155
156
|
* as Amazon Elastic Container Registry (ECR). The signatures are stored in the registry
|
|
156
157
|
* alongside the images, where they are available for verifying image authenticity and
|
|
@@ -200,6 +200,7 @@ export interface SignerClientResolvedConfig extends SignerClientResolvedConfigTy
|
|
|
200
200
|
* IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-party code-signing
|
|
201
201
|
* certificate using ACM, and use that to sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p>
|
|
202
202
|
* <p>With Signer and the Notation CLI from the <a href="https://notaryproject.dev/">Notary
|
|
203
|
+
|
|
203
204
|
* Project</a>, you can sign container images stored in a container registry such
|
|
204
205
|
* as Amazon Elastic Container Registry (ECR). The signatures are stored in the registry
|
|
205
206
|
* alongside the images, where they are available for verifying image authenticity and
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
* IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-party code-signing
|
|
12
12
|
* certificate using ACM, and use that to sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p>
|
|
13
13
|
* <p>With Signer and the Notation CLI from the <a href="https://notaryproject.dev/">Notary
|
|
14
|
+
|
|
14
15
|
* Project</a>, you can sign container images stored in a container registry such
|
|
15
16
|
* as Amazon Elastic Container Registry (ECR). The signatures are stored in the registry
|
|
16
17
|
* alongside the images, where they are available for verifying image authenticity and
|
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.
|
|
4
|
+
"version": "3.958.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-signer",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
24
|
"@aws-sdk/core": "3.957.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.958.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|