cdk-ecr-deployment 3.0.99 → 3.0.101

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 (23) hide show
  1. package/.jsii +28 -2
  2. package/lib/index.js +3 -3
  3. package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
  4. package/node_modules/@types/cacheable-request/node_modules/@types/node/http.d.ts +5 -5
  5. package/node_modules/@types/cacheable-request/node_modules/@types/node/http2.d.ts +77 -254
  6. package/node_modules/@types/cacheable-request/node_modules/@types/node/https.d.ts +14 -18
  7. package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +2 -2
  8. package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
  9. package/node_modules/@types/keyv/node_modules/@types/node/http.d.ts +5 -5
  10. package/node_modules/@types/keyv/node_modules/@types/node/http2.d.ts +77 -254
  11. package/node_modules/@types/keyv/node_modules/@types/node/https.d.ts +14 -18
  12. package/node_modules/@types/keyv/node_modules/@types/node/package.json +2 -2
  13. package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
  14. package/node_modules/@types/responselike/node_modules/@types/node/http.d.ts +5 -5
  15. package/node_modules/@types/responselike/node_modules/@types/node/http2.d.ts +77 -254
  16. package/node_modules/@types/responselike/node_modules/@types/node/https.d.ts +14 -18
  17. package/node_modules/@types/responselike/node_modules/@types/node/package.json +2 -2
  18. package/node_modules/pump/.github/FUNDING.yml +2 -0
  19. package/node_modules/pump/README.md +9 -0
  20. package/node_modules/pump/SECURITY.md +5 -0
  21. package/node_modules/pump/index.js +5 -1
  22. package/node_modules/pump/package.json +1 -1
  23. package/package.json +3 -3
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "22.5.3",
3
+ "version": "22.5.4",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -212,6 +212,6 @@
212
212
  "dependencies": {
213
213
  "undici-types": "~6.19.2"
214
214
  },
215
- "typesPublisherContentHash": "b838738b923117466b69f5c6125cb6df5c4b74969e34cc7a05ba64931ea00574",
215
+ "typesPublisherContentHash": "6ee9a11eba834031423800320320aa873d6bf2b6f33603c13a2aa9d90b3803ee",
216
216
  "typeScriptVersion": "4.8"
217
217
  }
@@ -0,0 +1,2 @@
1
+ github: mafintosh
2
+ tidelift: "npm/pump"
@@ -53,6 +53,9 @@ Similarly to `stream.pipe()`, `pump()` returns the last stream passed in, so you
53
53
  return pump(s1, s2) // returns s2
54
54
  ```
55
55
 
56
+ Note that `pump` attaches error handlers to the streams to do internal error handling, so if `s2` emits an
57
+ error in the above scenario, it will not trigger a `proccess.on('uncaughtException')` if you do not listen for it.
58
+
56
59
  If you want to return a stream that combines *both* s1 and s2 to a single stream use
57
60
  [pumpify](https://github.com/mafintosh/pumpify) instead.
58
61
 
@@ -63,3 +66,9 @@ MIT
63
66
  ## Related
64
67
 
65
68
  `pump` is part of the [mississippi stream utility collection](https://github.com/maxogden/mississippi) which includes more useful stream modules similar to this one.
69
+
70
+ ## For enterprise
71
+
72
+ Available as part of the Tidelift Subscription.
73
+
74
+ The maintainers of pump and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-pump?utm_source=npm-pump&utm_medium=referral&utm_campaign=enterprise)
@@ -0,0 +1,5 @@
1
+ ## Security contact information
2
+
3
+ To report a security vulnerability, please use the
4
+ [Tidelift security contact](https://tidelift.com/security).
5
+ Tidelift will coordinate the fix and disclosure.
@@ -1,6 +1,10 @@
1
1
  var once = require('once')
2
2
  var eos = require('end-of-stream')
3
- var fs = require('fs') // we only need fs to get the ReadStream and WriteStream prototypes
3
+ var fs
4
+
5
+ try {
6
+ fs = require('fs') // we only need fs to get the ReadStream and WriteStream prototypes
7
+ } catch {}
4
8
 
5
9
  var noop = function () {}
6
10
  var ancient = /^v?\.0/.test(process.version)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pump",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "repository": "git://github.com/mafintosh/pump.git",
5
5
  "license": "MIT",
6
6
  "description": "pipe streams together and close all of them if one of them closes",
package/package.json CHANGED
@@ -50,7 +50,7 @@
50
50
  "@types/node": "^18",
51
51
  "@typescript-eslint/eslint-plugin": "^7",
52
52
  "@typescript-eslint/parser": "^7",
53
- "cdklabs-projen-project-types": "^0.1.200",
53
+ "cdklabs-projen-project-types": "^0.1.202",
54
54
  "commit-and-tag-version": "^12",
55
55
  "eslint": "^8",
56
56
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -62,7 +62,7 @@
62
62
  "jsii-docgen": "^10.5.0",
63
63
  "jsii-pacmak": "^1.103.1",
64
64
  "jsii-rosetta": "^5.5.4",
65
- "projen": "^0.86.7",
65
+ "projen": "^0.87.2",
66
66
  "ts-jest": "^27",
67
67
  "ts-node": "^10.9.2",
68
68
  "typescript": "^4.9.5"
@@ -93,7 +93,7 @@
93
93
  "publishConfig": {
94
94
  "access": "public"
95
95
  },
96
- "version": "3.0.99",
96
+ "version": "3.0.101",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [