cdk-comprehend-s3olap 2.0.94 → 2.0.95
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +12 -3
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +45 -45
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +273 -234
- package/node_modules/aws-sdk/apis/evidently-2021-02-01.min.json +41 -15
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +174 -20
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +22 -10
- package/node_modules/aws-sdk/clients/drs.d.ts +3 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +54 -4
- package/node_modules/aws-sdk/clients/evidently.d.ts +42 -5
- package/node_modules/aws-sdk/clients/kendra.d.ts +8 -8
- package/node_modules/aws-sdk/clients/transfer.d.ts +206 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +276 -237
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +67 -67
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/get-intrinsic/CHANGELOG.md +7 -0
- package/node_modules/get-intrinsic/index.js +1 -1
- package/node_modules/get-intrinsic/package.json +7 -4
- package/package.json +4 -4
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [v1.1.3](https://github.com/ljharb/get-intrinsic/compare/v1.1.2...v1.1.3) - 2022-09-12
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [Dev Deps] update `es-abstract`, `es-value-fixtures`, `tape` [`07ff291`](https://github.com/ljharb/get-intrinsic/commit/07ff291816406ebe5a12d7f16965bde0942dd688)
|
13
|
+
- [Fix] properly check for % signs [`50ac176`](https://github.com/ljharb/get-intrinsic/commit/50ac1760fe99c227e64eabde76e9c0e44cd881b5)
|
14
|
+
|
8
15
|
## [v1.1.2](https://github.com/ljharb/get-intrinsic/compare/v1.1.1...v1.1.2) - 2022-06-08
|
9
16
|
|
10
17
|
### Fixed
|
@@ -258,7 +258,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
258
258
|
throw new $TypeError('"allowMissing" argument must be a boolean');
|
259
259
|
}
|
260
260
|
|
261
|
-
if ($exec(/^%?[^%]
|
261
|
+
if ($exec(/^%?[^%]*%?$/, name) === null) {
|
262
262
|
throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
|
263
263
|
}
|
264
264
|
var parts = stringToPath(name);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "get-intrinsic",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.3",
|
4
4
|
"description": "Get and robustly cache all JS language-level intrinsics at first require time",
|
5
5
|
"main": "index.js",
|
6
6
|
"exports": {
|
@@ -52,8 +52,8 @@
|
|
52
52
|
"aud": "^2.0.0",
|
53
53
|
"auto-changelog": "^2.4.0",
|
54
54
|
"call-bind": "^1.0.2",
|
55
|
-
"es-abstract": "^1.20.
|
56
|
-
"es-value-fixtures": "^1.4.
|
55
|
+
"es-abstract": "^1.20.2",
|
56
|
+
"es-value-fixtures": "^1.4.2",
|
57
57
|
"eslint": "=8.8.0",
|
58
58
|
"evalmd": "^0.0.19",
|
59
59
|
"for-each": "^0.3.3",
|
@@ -65,7 +65,7 @@
|
|
65
65
|
"nyc": "^10.3.2",
|
66
66
|
"object-inspect": "^1.12.2",
|
67
67
|
"safe-publish-latest": "^2.0.0",
|
68
|
-
"tape": "^5.
|
68
|
+
"tape": "^5.6.0"
|
69
69
|
},
|
70
70
|
"auto-changelog": {
|
71
71
|
"output": "CHANGELOG.md",
|
@@ -80,6 +80,9 @@
|
|
80
80
|
"has": "^1.0.3",
|
81
81
|
"has-symbols": "^1.0.3"
|
82
82
|
},
|
83
|
+
"testling": {
|
84
|
+
"files": "test/GetIntrinsic.js"
|
85
|
+
},
|
83
86
|
"publishConfig": {
|
84
87
|
"ignore": [
|
85
88
|
".github/workflows"
|
package/package.json
CHANGED
@@ -59,7 +59,7 @@
|
|
59
59
|
"jsii-pacmak": "^1.67.0",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.62.
|
62
|
+
"projen": "^0.62.6",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.8.3"
|
@@ -70,7 +70,7 @@
|
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"aws-cdk-lib": "^2.41.0",
|
73
|
-
"aws-sdk": "^2.
|
73
|
+
"aws-sdk": "^2.1215.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
75
|
"esbuild": "^0.15.7"
|
76
76
|
},
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.95",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
@@ -168,4 +168,4 @@
|
|
168
168
|
"@types/prettier": "2.6.0"
|
169
169
|
},
|
170
170
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
171
|
-
}
|
171
|
+
}
|