cdk-comprehend-s3olap 2.0.209 → 2.0.211
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 +5 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +36 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +5 -4
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +39 -14
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/http/node.js +2 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/which-typed-array/CHANGELOG.md +8 -0
- package/node_modules/which-typed-array/index.js +4 -3
- package/node_modules/which-typed-array/package.json +4 -4
- package/package.json +3 -3
@@ -32,13 +32,14 @@ AWS.NodeHttpClient = AWS.util.inherit({
|
|
32
32
|
path: pathPrefix + httpRequest.path
|
33
33
|
};
|
34
34
|
|
35
|
+
AWS.util.update(options, httpOptions);
|
36
|
+
|
35
37
|
if (!httpOptions.agent) {
|
36
38
|
options.agent = this.getAgent(useSSL, {
|
37
39
|
keepAlive: process.env[CONNECTION_REUSE_ENV_NAME] === '1' ? true : false
|
38
40
|
});
|
39
41
|
}
|
40
42
|
|
41
|
-
AWS.util.update(options, httpOptions);
|
42
43
|
delete options.proxy; // proxy isn't an HTTP option
|
43
44
|
delete options.timeout; // timeout isn't an HTTP option
|
44
45
|
|
@@ -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.10](https://github.com/inspect-js/which-typed-array/compare/v1.1.9...v1.1.10) - 2023-07-10
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [actions] update rebase action to use reusable workflow [`2c10582`](https://github.com/inspect-js/which-typed-array/commit/2c105820d77274c079cb6d040cb348396e516ef5)
|
13
|
+
- [Robustness] use `call-bind` [`b2335fd`](https://github.com/inspect-js/which-typed-array/commit/b2335fdfca80840995eea5e6fcfffc6d712279a1)
|
14
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`ad5e41b`](https://github.com/inspect-js/which-typed-array/commit/ad5e41ba18e7d23af1f9b211215c43a64bf75d70)
|
15
|
+
|
8
16
|
## [v1.1.9](https://github.com/inspect-js/which-typed-array/compare/v1.1.8...v1.1.9) - 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
|
var gOPD = require('gopd');
|
7
8
|
|
@@ -12,7 +13,7 @@ var g = typeof globalThis === 'undefined' ? global : globalThis;
|
|
12
13
|
var typedArrays = availableTypedArrays();
|
13
14
|
|
14
15
|
var $slice = callBound('String.prototype.slice');
|
15
|
-
var toStrTags = {};
|
16
|
+
var toStrTags = { __proto__: null };
|
16
17
|
var getPrototypeOf = Object.getPrototypeOf; // require('getprototypeof');
|
17
18
|
if (hasToStringTag && gOPD && getPrototypeOf) {
|
18
19
|
forEach(typedArrays, function (typedArray) {
|
@@ -25,7 +26,7 @@ if (hasToStringTag && gOPD && getPrototypeOf) {
|
|
25
26
|
var superProto = getPrototypeOf(proto);
|
26
27
|
descriptor = gOPD(superProto, Symbol.toStringTag);
|
27
28
|
}
|
28
|
-
toStrTags[typedArray] = descriptor.get;
|
29
|
+
toStrTags[typedArray] = callBind(descriptor.get);
|
29
30
|
}
|
30
31
|
}
|
31
32
|
});
|
@@ -36,7 +37,7 @@ var tryTypedArrays = function tryAllTypedArrays(value) {
|
|
36
37
|
forEach(toStrTags, function (getter, typedArray) {
|
37
38
|
if (!foundName) {
|
38
39
|
try {
|
39
|
-
var name = getter
|
40
|
+
var name = getter(value);
|
40
41
|
if (name === typedArray) {
|
41
42
|
foundName = name;
|
42
43
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "which-typed-array",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.10",
|
4
4
|
"author": {
|
5
5
|
"name": "Jordan Harband",
|
6
6
|
"email": "ljharb@gmail.com",
|
@@ -66,8 +66,8 @@
|
|
66
66
|
"is-typed-array": "^1.1.10"
|
67
67
|
},
|
68
68
|
"devDependencies": {
|
69
|
-
"@ljharb/eslint-config": "^21.
|
70
|
-
"aud": "^2.0.
|
69
|
+
"@ljharb/eslint-config": "^21.1.0",
|
70
|
+
"aud": "^2.0.3",
|
71
71
|
"auto-changelog": "^2.4.0",
|
72
72
|
"eslint": "=8.8.0",
|
73
73
|
"in-publish": "^2.0.1",
|
@@ -77,7 +77,7 @@
|
|
77
77
|
"npmignore": "^0.3.0",
|
78
78
|
"nyc": "^10.3.2",
|
79
79
|
"safe-publish-latest": "^2.0.0",
|
80
|
-
"tape": "^5.6.
|
80
|
+
"tape": "^5.6.4"
|
81
81
|
},
|
82
82
|
"testling": {
|
83
83
|
"files": "test/index.js",
|
package/package.json
CHANGED
@@ -58,7 +58,7 @@
|
|
58
58
|
"jsii-pacmak": "^1.84.0",
|
59
59
|
"jsii-rosetta": "1.x",
|
60
60
|
"npm-check-updates": "^16",
|
61
|
-
"projen": "^0.71.
|
61
|
+
"projen": "^0.71.133",
|
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.1414.0",
|
73
73
|
"constructs": "^10.0.5",
|
74
74
|
"esbuild": "^0.18.11"
|
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.211",
|
100
100
|
"jest": {
|
101
101
|
"testMatch": [
|
102
102
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|