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.
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1214.0',
23
+ VERSION: '2.1215.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1214.0",
4
+ "version": "2.1215.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -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(/^%?[^%]*%?$/g, name) === null) {
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.2",
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.1",
56
- "es-value-fixtures": "^1.4.1",
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.5.3"
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.4",
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.1214.0",
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.94",
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
+ }