@finnair/path-parser 3.0.0 → 4.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -36
  2. package/package.json +3 -3
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
- # [3.0.0](https://github.com/finnair/v-validation/compare/v2.0.0...v3.0.0) (2022-10-03)
6
+ # [4.0.0](https://github.com/finnair/v-validation/compare/v3.2.0...v4.0.0) (2022-11-07)
7
7
 
8
8
  **Note:** Version bump only for package @finnair/path-parser
9
9
 
@@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- # [3.0.0-alpha.2](https://github.com/finnair/v-validation/compare/v2.0.0...v3.0.0-alpha.2) (2022-09-28)
14
+ # [3.1.0](https://github.com/finnair/v-validation/compare/v3.0.0...v3.1.0) (2022-10-24)
15
15
 
16
16
  **Note:** Version bump only for package @finnair/path-parser
17
17
 
@@ -19,66 +19,39 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
19
19
 
20
20
 
21
21
 
22
- # [3.0.0-alpha.1](https://github.com/finnair/v-validation/compare/v2.0.0...v3.0.0-alpha.1) (2022-09-26)
22
+ # [3.0.0](https://github.com/finnair/v-validation/compare/v2.0.0...v3.0.0) (2022-10-03)
23
23
 
24
24
  **Note:** Version bump only for package @finnair/path-parser
25
25
 
26
-
27
-
28
-
29
-
30
26
  # [2.0.0](https://github.com/finnair/v-validation/compare/v1.1.0...v2.0.0) (2022-09-08)
31
27
 
32
-
33
- * Upgrade All Dependencies (#80) ([fb6309c](https://github.com/finnair/v-validation/commit/fb6309cc1d9fd90f3e8c5ba79798fae1450b66a6)), closes [#80](https://github.com/finnair/v-validation/issues/80)
34
-
28
+ - Upgrade All Dependencies (#80) ([fb6309c](https://github.com/finnair/v-validation/commit/fb6309cc1d9fd90f3e8c5ba79798fae1450b66a6)), closes [#80](https://github.com/finnair/v-validation/issues/80)
35
29
 
36
30
  ### BREAKING CHANGES
37
31
 
38
- * Drop Node 12 support
39
- * Add .nvmrc
40
- * Introduce CI build for Node 18
41
- * Upgrade All Dependencies
42
-
43
-
44
-
45
-
32
+ - Drop Node 12 support
33
+ - Add .nvmrc
34
+ - Introduce CI build for Node 18
35
+ - Upgrade All Dependencies
46
36
 
47
37
  # [1.1.0](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0) (2022-08-29)
48
38
 
49
-
50
39
  ### Features
51
40
 
52
- * Support for Luxon ([94b3806](https://github.com/finnair/v-validation/commit/94b38060e07feeb0abb8c81659d8bda537a4d9aa))
53
-
54
-
55
-
56
-
41
+ - Support for Luxon ([94b3806](https://github.com/finnair/v-validation/commit/94b38060e07feeb0abb8c81659d8bda537a4d9aa))
57
42
 
58
43
  # [1.1.0-alpha.6](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.6) (2022-08-17)
59
44
 
60
45
  **Note:** Version bump only for package @finnair/path-parser
61
46
 
62
-
63
-
64
-
65
-
66
47
  # [1.1.0-alpha.5](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.5) (2022-08-16)
67
48
 
68
49
  **Note:** Version bump only for package @finnair/path-parser
69
50
 
70
-
71
-
72
-
73
-
74
51
  # [1.1.0-alpha.0](https://github.com/finnair/v-validation/compare/v1.0.1...v1.1.0-alpha.0) (2022-08-12)
75
52
 
76
53
  **Note:** Version bump only for package @finnair/path-parser
77
54
 
78
-
79
-
80
-
81
-
82
55
  ## [1.0.1](https://github.com/finnair/v-validation/compare/v0.9.1...v1.0.1) (2022-01-20)
83
56
 
84
57
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finnair/path-parser",
3
- "version": "3.0.0",
3
+ "version": "4.0.0",
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": "^3.0.0",
26
+ "@finnair/path": "^4.0.0",
27
27
  "@types/nearley": "2.11.2",
28
28
  "nearley": "2.20.1"
29
29
  },
30
- "gitHead": "597b85f1fcef99722bccf47c6d30260973d6d88c"
30
+ "gitHead": "d6540b51c4f1c57563602f66bd3157637703529b"
31
31
  }