nightingale-level-names 13.0.0 → 14.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 +19 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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
+ ## [14.0.0](https://github.com/christophehurpeau/nightingale/compare/v13.0.0...v14.0.0) (2023-06-30)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * **deps:** require node 18
12
+ * requires node 18
13
+
14
+ ### Features
15
+
16
+ * requires node 18 ([4452b11](https://github.com/christophehurpeau/nightingale/commit/4452b116188e58c293be85e462e04922f7ad51f0))
17
+
18
+
19
+ ### Miscellaneous Chores
20
+
21
+ * **deps:** update dependency @pob/root to v8 ([#760](https://github.com/christophehurpeau/nightingale/issues/760)) ([22dc3cc](https://github.com/christophehurpeau/nightingale/commit/22dc3cceabdfd465d04ee36fec8fdac31febab69))
22
+
23
+
24
+
6
25
  # [13.0.0](https://github.com/christophehurpeau/nightingale/compare/v12.1.4...v13.0.0) (2022-11-19)
7
26
 
8
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-level-names",
3
- "version": "13.0.0",
3
+ "version": "14.0.0",
4
4
  "description": "Nightingale level values to level names",
5
5
  "keywords": [
6
6
  "logger"
@@ -15,7 +15,7 @@
15
15
  "homepage": "https://github.com/christophehurpeau/nightingale",
16
16
  "type": "module",
17
17
  "engines": {
18
- "node": ">=16.0.0"
18
+ "node": ">=18.12.0"
19
19
  },
20
20
  "main": "./lib/index.cjs",
21
21
  "types": "./lib/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  "prettier": "@pob/root/prettier-config",
38
38
  "pob": {},
39
39
  "devDependencies": {
40
- "typescript": "4.9.3"
40
+ "typescript": "5.1.6"
41
41
  },
42
- "gitHead": "52cf7e3c8762a07891da9dde497ec03298c15654"
42
+ "gitHead": "bc20e0f093a4fecd4d87f9374f6dbc375c09c25e"
43
43
  }