@finnair/path-parser 1.1.0 → 3.0.0-alpha.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,31 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.0.0-alpha.1](https://github.com/finnair/v-validation/compare/v2.0.0...v3.0.0-alpha.1) (2022-09-26)
7
+
8
+ **Note:** Version bump only for package @finnair/path-parser
9
+
10
+
11
+
12
+
13
+
14
+ # [2.0.0](https://github.com/finnair/v-validation/compare/v1.1.0...v2.0.0) (2022-09-08)
15
+
16
+
17
+ * Upgrade All Dependencies (#80) ([fb6309c](https://github.com/finnair/v-validation/commit/fb6309cc1d9fd90f3e8c5ba79798fae1450b66a6)), closes [#80](https://github.com/finnair/v-validation/issues/80)
18
+
19
+
20
+ ### BREAKING CHANGES
21
+
22
+ * Drop Node 12 support
23
+ * Add .nvmrc
24
+ * Introduce CI build for Node 18
25
+ * Upgrade All Dependencies
26
+
27
+
28
+
29
+
30
+
6
31
  # [1.1.0](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0) (2022-08-29)
7
32
 
8
33
 
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
3
  if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
5
9
  }) : (function(o, m, k, k2) {
6
10
  if (k2 === undefined) k2 = k;
7
11
  o[k2] = m[k];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finnair/path-parser",
3
- "version": "1.1.0",
3
+ "version": "3.0.0-alpha.1",
4
4
  "private": false,
5
5
  "description": "Simple object path as array of strings and numbers",
6
6
  "main": "dist/index.js",
@@ -23,9 +23,9 @@
23
23
  "build": "tsc -b ."
24
24
  },
25
25
  "dependencies": {
26
- "@finnair/path": "^1.1.0",
27
- "@types/nearley": "2.11.1",
28
- "nearley": "2.19.5"
26
+ "@finnair/path": "^3.0.0-alpha.1",
27
+ "@types/nearley": "2.11.2",
28
+ "nearley": "2.20.1"
29
29
  },
30
- "gitHead": "860263e814c178790766b48e22d8a8995e33ae40"
30
+ "gitHead": "34e2b0697aaee247e03b7a65d677c7b766a7fbca"
31
31
  }