@finnair/path 0.9.0 → 1.1.0-alpha.0

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,7 +3,7 @@
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
- # [0.9.0](https://github.com/finnair/v-validation/compare/v0.8.0...v0.9.0) (2020-09-23)
6
+ # [1.1.0-alpha.0](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.0) (2022-08-12)
7
7
 
8
8
  **Note:** Version bump only for package @finnair/path
9
9
 
@@ -11,43 +11,41 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- # [0.8.0](https://github.com/finnair/v-validation/compare/v0.7.0...v0.8.0) (2020-09-09)
14
+ ## [1.0.1](https://github.com/finnair/v-validation/compare/v0.9.1...v1.0.1) (2022-01-20)
15
15
 
16
- **Note:** Version bump only for package @finnair/path
16
+ ### Features
17
17
 
18
+ - Add support for Node v14 and v16
19
+ - Update Jest and Lerna
20
+ - Update other vulnerable packages
18
21
 
22
+ ### BREAKING CHANGES
19
23
 
24
+ - Drop support for Node v10
20
25
 
21
-
22
- # [0.7.0](https://github.com/finnair/v-validation/compare/v0.6.2...v0.7.0) (2020-08-26)
26
+ # [0.9.0](https://github.com/finnair/v-validation/compare/v0.8.0...v0.9.0) (2020-09-23)
23
27
 
24
28
  **Note:** Version bump only for package @finnair/path
25
29
 
30
+ # [0.8.0](https://github.com/finnair/v-validation/compare/v0.7.0...v0.8.0) (2020-09-09)
26
31
 
32
+ **Note:** Version bump only for package @finnair/path
27
33
 
34
+ # [0.7.0](https://github.com/finnair/v-validation/compare/v0.6.2...v0.7.0) (2020-08-26)
28
35
 
36
+ **Note:** Version bump only for package @finnair/path
29
37
 
30
38
  ## [0.6.2](https://github.com/finnair/v-validation/compare/v0.6.1...v0.6.2) (2020-05-22)
31
39
 
32
-
33
40
  ### Bug Fixes
34
41
 
35
- * Update Moment.js and fix dependencies ([2e9a16d](https://github.com/finnair/v-validation/commit/2e9a16d297994a557133a853ed6556d16552c21a))
36
-
37
-
38
-
39
-
42
+ - Update Moment.js and fix dependencies ([2e9a16d](https://github.com/finnair/v-validation/commit/2e9a16d297994a557133a853ed6556d16552c21a))
40
43
 
41
44
  ## [0.6.1](https://github.com/finnair/v-validation/compare/v0.6.0...v0.6.1) (2020-05-22)
42
45
 
43
-
44
46
  ### Bug Fixes
45
47
 
46
- * NPM ignore node_modules ([9f1264f](https://github.com/finnair/v-validation/commit/9f1264f5086e406d30f94f5a47aa3fb6956d725a))
47
-
48
-
49
-
50
-
48
+ - NPM ignore node_modules ([9f1264f](https://github.com/finnair/v-validation/commit/9f1264f5086e406d30f94f5a47aa3fb6956d725a))
51
49
 
52
50
  # [0.6.0](https://github.com/finnair/v-validation/compare/v0.5.0...v0.6.0) (2020-05-19)
53
51
 
@@ -123,7 +123,7 @@ class PathMatcher {
123
123
  if (type === 'string') {
124
124
  return new matchers_1.PropertyMatcher(component);
125
125
  }
126
- if (matchers_1.isPathExpression(component)) {
126
+ if ((0, matchers_1.isPathExpression)(component)) {
127
127
  return component;
128
128
  }
129
129
  throw new Error(`Unrecognized PathComponent: ${component} of type ${type}`);
package/dist/index.js CHANGED
@@ -7,9 +7,10 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
7
7
  o[k2] = m[k];
8
8
  }));
9
9
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ exports.Path = void 0;
13
14
  var Path_1 = require("./Path");
14
15
  Object.defineProperty(exports, "Path", { enumerable: true, get: function () { return Path_1.Path; } });
15
16
  __exportStar(require("./PathMatcher"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finnair/path",
3
- "version": "0.9.0",
3
+ "version": "1.1.0-alpha.0",
4
4
  "private": false,
5
5
  "description": "Simple object path as array of strings and numbers",
6
6
  "main": "dist/index.js",
@@ -22,5 +22,5 @@
22
22
  "scripts": {
23
23
  "build": "tsc -b ."
24
24
  },
25
- "gitHead": "a60423b411b0cab587265e388a5b531f0f905588"
25
+ "gitHead": "980da25d0eb031a0ed89691c97459b23efcdc8a5"
26
26
  }