cdk-comprehend-s3olap 2.0.215 → 2.0.217
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 +4 -4
- 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 +8 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +3 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +294 -278
- package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +39 -18
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +8 -4
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +1 -1
- package/node_modules/aws-sdk/clients/docdb.d.ts +5 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +17 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ivs.d.ts +33 -1
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +14 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +297 -281
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/is-typed-array/CHANGELOG.md +8 -0
- package/node_modules/is-typed-array/index.js +33 -7
- package/node_modules/is-typed-array/package.json +5 -5
- package/package.json +5 -5
@@ -5,6 +5,14 @@ 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.11](https://github.com/inspect-js/is-typed-array/compare/v1.1.10...v1.1.11) - 2023-07-17
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [Fix] `node < v0.6` lacks proper Object toString behavior [`c94b90d`](https://github.com/inspect-js/is-typed-array/commit/c94b90dc6bc457783d6f8cc208415a49da0933b7)
|
13
|
+
- [Robustness] use `call-bind` [`573b00b`](https://github.com/inspect-js/is-typed-array/commit/573b00b8deec42ac1ac262415e442ea0b7e1c96b)
|
14
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `object-inspect`, `tape` [`c88c2d4`](https://github.com/inspect-js/is-typed-array/commit/c88c2d479976110478fa4038fe8921251c06a163)
|
15
|
+
|
8
16
|
## [v1.1.10](https://github.com/inspect-js/is-typed-array/compare/v1.1.9...v1.1.10) - 2022-11-02
|
9
17
|
|
10
18
|
### Commits
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
var forEach = require('for-each');
|
4
4
|
var availableTypedArrays = require('available-typed-arrays');
|
5
|
+
var callBind = require('call-bind');
|
5
6
|
var callBound = require('call-bind/callBound');
|
6
7
|
|
7
8
|
var $toString = callBound('Object.prototype.toString');
|
@@ -20,7 +21,7 @@ var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(ar
|
|
20
21
|
return -1;
|
21
22
|
};
|
22
23
|
var $slice = callBound('String.prototype.slice');
|
23
|
-
var
|
24
|
+
var cache = { __proto__: null };
|
24
25
|
var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
|
25
26
|
if (hasToStringTag && gOPD && getPrototypeOf) {
|
26
27
|
forEach(typedArrays, function (typedArray) {
|
@@ -32,17 +33,35 @@ if (hasToStringTag && gOPD && getPrototypeOf) {
|
|
32
33
|
var superProto = getPrototypeOf(proto);
|
33
34
|
descriptor = gOPD(superProto, Symbol.toStringTag);
|
34
35
|
}
|
35
|
-
|
36
|
+
cache['$' + typedArray] = callBind(descriptor.get);
|
36
37
|
}
|
37
38
|
});
|
39
|
+
} else {
|
40
|
+
forEach(typedArrays, function (typedArray) {
|
41
|
+
var arr = new g[typedArray]();
|
42
|
+
cache['$' + typedArray] = callBind(arr.slice);
|
43
|
+
});
|
38
44
|
}
|
39
45
|
|
40
46
|
var tryTypedArrays = function tryAllTypedArrays(value) {
|
41
47
|
var anyTrue = false;
|
42
|
-
forEach(
|
48
|
+
forEach(cache, function (getter, typedArray) {
|
49
|
+
if (!anyTrue) {
|
50
|
+
try {
|
51
|
+
anyTrue = ('$' + getter(value)) === typedArray;
|
52
|
+
} catch (e) { /**/ }
|
53
|
+
}
|
54
|
+
});
|
55
|
+
return anyTrue;
|
56
|
+
};
|
57
|
+
|
58
|
+
var trySlices = function tryAllSlices(value) {
|
59
|
+
var anyTrue = false;
|
60
|
+
forEach(cache, function (getter) {
|
43
61
|
if (!anyTrue) {
|
44
62
|
try {
|
45
|
-
|
63
|
+
getter(value);
|
64
|
+
anyTrue = true;
|
46
65
|
} catch (e) { /**/ }
|
47
66
|
}
|
48
67
|
});
|
@@ -51,10 +70,17 @@ var tryTypedArrays = function tryAllTypedArrays(value) {
|
|
51
70
|
|
52
71
|
module.exports = function isTypedArray(value) {
|
53
72
|
if (!value || typeof value !== 'object') { return false; }
|
54
|
-
if (!hasToStringTag
|
73
|
+
if (!hasToStringTag) {
|
55
74
|
var tag = $slice($toString(value), 8, -1);
|
56
|
-
|
75
|
+
if ($indexOf(typedArrays, tag) > -1) {
|
76
|
+
return true;
|
77
|
+
}
|
78
|
+
if (tag !== 'Object') {
|
79
|
+
return false;
|
80
|
+
}
|
81
|
+
// node < 0.6 hits here on real Typed Arrays
|
82
|
+
return trySlices(value);
|
57
83
|
}
|
58
|
-
if (!gOPD) { return
|
84
|
+
if (!gOPD) { return null; } // unknown engine
|
59
85
|
return tryTypedArrays(value);
|
60
86
|
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "is-typed-array",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.11",
|
4
4
|
"author": {
|
5
5
|
"name": "Jordan Harband",
|
6
6
|
"email": "ljharb@gmail.com",
|
@@ -65,8 +65,8 @@
|
|
65
65
|
"has-tostringtag": "^1.0.0"
|
66
66
|
},
|
67
67
|
"devDependencies": {
|
68
|
-
"@ljharb/eslint-config": "^21.
|
69
|
-
"aud": "^2.0.
|
68
|
+
"@ljharb/eslint-config": "^21.1.0",
|
69
|
+
"aud": "^2.0.3",
|
70
70
|
"auto-changelog": "^2.4.0",
|
71
71
|
"eslint": "=8.8.0",
|
72
72
|
"evalmd": "^0.0.19",
|
@@ -76,9 +76,9 @@
|
|
76
76
|
"make-generator-function": "^2.0.0",
|
77
77
|
"npmignore": "^0.3.0",
|
78
78
|
"nyc": "^10.3.2",
|
79
|
-
"object-inspect": "^1.12.
|
79
|
+
"object-inspect": "^1.12.3",
|
80
80
|
"safe-publish-latest": "^2.0.0",
|
81
|
-
"tape": "^5.6.
|
81
|
+
"tape": "^5.6.5"
|
82
82
|
},
|
83
83
|
"testling": {
|
84
84
|
"files": "test/index.js",
|
package/package.json
CHANGED
@@ -53,12 +53,12 @@
|
|
53
53
|
"jest": "^27",
|
54
54
|
"jest-junit": "^15",
|
55
55
|
"jsii": "1.x",
|
56
|
-
"jsii-diff": "^1.
|
56
|
+
"jsii-diff": "^1.85.0",
|
57
57
|
"jsii-docgen": "^1.8.110",
|
58
|
-
"jsii-pacmak": "^1.
|
58
|
+
"jsii-pacmak": "^1.85.0",
|
59
59
|
"jsii-rosetta": "1.x",
|
60
60
|
"npm-check-updates": "^16",
|
61
|
-
"projen": "^0.71.
|
61
|
+
"projen": "^0.71.141",
|
62
62
|
"standard-version": "^9",
|
63
63
|
"ts-jest": "^27",
|
64
64
|
"typescript": "^4.9.5"
|
@@ -69,7 +69,7 @@
|
|
69
69
|
},
|
70
70
|
"dependencies": {
|
71
71
|
"aws-cdk-lib": "^2.87.0",
|
72
|
-
"aws-sdk": "^2.
|
72
|
+
"aws-sdk": "^2.1416.0",
|
73
73
|
"constructs": "^10.0.5",
|
74
74
|
"esbuild": "^0.18.13"
|
75
75
|
},
|
@@ -96,7 +96,7 @@
|
|
96
96
|
],
|
97
97
|
"main": "lib/index.js",
|
98
98
|
"license": "Apache-2.0",
|
99
|
-
"version": "2.0.
|
99
|
+
"version": "2.0.217",
|
100
100
|
"jest": {
|
101
101
|
"testMatch": [
|
102
102
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|