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.
Files changed (33) hide show
  1. package/CONTRIBUTING.md +7 -6
  2. package/lib/custom-resource-handlers/src/certificate-signing-request.tsbuildinfo +1 -1
  3. package/lib/custom-resource-handlers/src/pgp-secret.tsbuildinfo +1 -1
  4. package/lib/custom-resource-handlers/src/private-key.tsbuildinfo +1 -1
  5. package/lib/publishing/docs/publish.sh +1 -0
  6. package/lib/publishing/docs/update-ssm.sh +24 -0
  7. package/lib/publishing/github/node_modules/.yarn-integrity +2 -2
  8. package/lib/publishing/github/node_modules/@types/aws-lambda/README.md +1 -1
  9. package/lib/publishing/github/node_modules/@types/aws-lambda/index.d.ts +1 -0
  10. package/lib/publishing/github/node_modules/@types/aws-lambda/package.json +4 -3
  11. package/lib/publishing/github/node_modules/@types/aws-lambda/trigger/guard-duty-event-notification.d.ts +36 -0
  12. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md +1 -1
  13. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/http.d.ts +1 -1
  14. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +3 -3
  15. package/lib/publishing/github/publish.sh +2 -0
  16. package/lib/publishing/github/update-ssm.sh +24 -0
  17. package/lib/publishing/golang/publish.sh +3 -1
  18. package/lib/publishing/golang/update-ssm.sh +24 -0
  19. package/lib/publishing/maven/publish.sh +2 -0
  20. package/lib/publishing/maven/update-ssm.sh +24 -0
  21. package/lib/publishing/npm/publish.sh +1 -0
  22. package/lib/publishing/npm/update-ssm.sh +24 -0
  23. package/lib/publishing/nuget/publish.sh +2 -0
  24. package/lib/publishing/nuget/update-ssm.sh +24 -0
  25. package/lib/publishing/pypi/publish.sh +2 -0
  26. package/lib/publishing/pypi/update-ssm.sh +24 -0
  27. package/lib/publishing/s3/publish.sh +6 -4
  28. package/lib/publishing/s3/update-ssm.sh +24 -0
  29. package/lib/publishing.d.ts +56 -0
  30. package/lib/publishing.js +47 -13
  31. package/lib/util.d.ts +2 -2
  32. package/lib/util.js +1 -1
  33. 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). This instance can be used to test and
78
- validate your local changes. To do this,
77
+ the package [aws-delivlib-sample](https://github.com/awslabs/aws-delivlib-sample).
79
78
 
80
- 1. Build the package - `yarn compile`
81
- 2. Setup credentials to our AWS account: 712950704752
82
- 3. Execute `yarn integ:update`. This will update the delivlib instance and the command will halt at a user prompt.
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
- Once complete, continue following the instructions and prompts until the end.q
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