aws-delivlib 14.13.37 → 14.14.1
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/CONTRIBUTING.md +7 -6
- package/lib/custom-resource-handlers/src/certificate-signing-request.tsbuildinfo +1 -1
- package/lib/custom-resource-handlers/src/pgp-secret.tsbuildinfo +1 -1
- package/lib/custom-resource-handlers/src/private-key.tsbuildinfo +1 -1
- package/lib/publishing/docs/publish.sh +1 -0
- package/lib/publishing/docs/update-ssm.sh +24 -0
- package/lib/publishing/github/node_modules/.yarn-integrity +2 -2
- package/lib/publishing/github/node_modules/@types/aws-lambda/README.md +1 -1
- package/lib/publishing/github/node_modules/@types/aws-lambda/index.d.ts +1 -0
- package/lib/publishing/github/node_modules/@types/aws-lambda/package.json +4 -3
- package/lib/publishing/github/node_modules/@types/aws-lambda/trigger/guard-duty-event-notification.d.ts +36 -0
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/http.d.ts +1 -1
- package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +3 -3
- package/lib/publishing/github/publish.sh +2 -0
- package/lib/publishing/github/update-ssm.sh +24 -0
- package/lib/publishing/golang/publish.sh +3 -1
- package/lib/publishing/golang/update-ssm.sh +24 -0
- package/lib/publishing/maven/publish.sh +2 -0
- package/lib/publishing/maven/update-ssm.sh +24 -0
- package/lib/publishing/npm/publish.sh +1 -0
- package/lib/publishing/npm/update-ssm.sh +24 -0
- package/lib/publishing/nuget/publish.sh +2 -0
- package/lib/publishing/nuget/update-ssm.sh +24 -0
- package/lib/publishing/pypi/publish.sh +2 -0
- package/lib/publishing/pypi/update-ssm.sh +24 -0
- package/lib/publishing/s3/publish.sh +6 -4
- package/lib/publishing/s3/update-ssm.sh +24 -0
- package/lib/publishing.d.ts +56 -0
- package/lib/publishing.js +47 -13
- package/lib/util.d.ts +2 -2
- package/lib/util.js +1 -1
- package/package.json +4 -4
package/CONTRIBUTING.md
CHANGED
@@ -74,17 +74,18 @@ yarn test
|
|
74
74
|
```
|
75
75
|
|
76
76
|
Besides this, there is a delivlib instance deployed to an AWS account (712950704752) that configures a delivlib pipeline for
|
77
|
-
the package [aws-delivlib-sample](https://github.com/awslabs/aws-delivlib-sample).
|
78
|
-
validate your local changes. To do this,
|
77
|
+
the package [aws-delivlib-sample](https://github.com/awslabs/aws-delivlib-sample).
|
79
78
|
|
80
|
-
|
81
|
-
|
82
|
-
|
79
|
+
You should use this code to validate more elaborate changes to the Delivlib code base. To do this,
|
80
|
+
|
81
|
+
1. Setup credentials to our AWS account: 712950704752
|
82
|
+
2. Execute `yarn integ:update`. This will update the delivlib instance.
|
83
83
|
|
84
84
|
At this point, you will find the resources created by delivlib in the stack whose ARN is printed to the console. Wait for the
|
85
85
|
deployment to complete, and are then free to test and verify that your changes had the intended effect.
|
86
86
|
|
87
|
-
|
87
|
+
> NOTE: you might need to manually replicate the CDKlabs credentials to the publishing account. We don't do
|
88
|
+
> this often enough to make it worthwhile investing into automation for it.
|
88
89
|
|
89
90
|
## Releasing a New Version
|
90
91
|
|