strong-error-handler 4.0.8 → 5.0.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.
@@ -16,7 +16,7 @@ jobs:
16
16
 
17
17
  steps:
18
18
  - name: Checkout repository
19
- uses: actions/checkout@v3
19
+ uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
20
20
 
21
21
  - name: Initialize CodeQL
22
22
  uses: github/codeql-action/init@v2
@@ -19,14 +19,14 @@ jobs:
19
19
  strategy:
20
20
  matrix:
21
21
  os: [ubuntu-latest]
22
- node-version: [10, 12, 14, 16]
22
+ node-version: [16, 18]
23
23
  include:
24
24
  - os: macos-latest
25
- node-version: 14 # LTS
25
+ node-version: 16 # LTS
26
26
  fail-fast: false
27
27
  runs-on: ${{ matrix.os }}
28
28
  steps:
29
- - uses: actions/checkout@v3
29
+ - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
30
30
  with:
31
31
  fetch-depth: 0
32
32
  - name: Use Node.js ${{ matrix.node-version }}
@@ -44,11 +44,11 @@ jobs:
44
44
  name: Code Lint
45
45
  runs-on: ubuntu-latest
46
46
  steps:
47
- - uses: actions/checkout@v3
48
- - name: Use Node.js 14
47
+ - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
48
+ - name: Use Node.js 16
49
49
  uses: actions/setup-node@v3
50
50
  with:
51
- node-version: 14
51
+ node-version: 16
52
52
  - name: Bootstrap project
53
53
  run: |
54
54
  npm ci --ignore-scripts
@@ -60,13 +60,13 @@ jobs:
60
60
  runs-on: ubuntu-latest
61
61
  if: ${{ github.event.pull_request }}
62
62
  steps:
63
- - uses: actions/checkout@v3
63
+ - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
64
64
  with:
65
65
  fetch-depth: 0
66
- - name: Use Node.js 14
66
+ - name: Use Node.js 16
67
67
  uses: actions/setup-node@v3
68
68
  with:
69
- node-version: 14
69
+ node-version: 16
70
70
  - name: Bootstrap project
71
71
  run: |
72
72
  npm ci --ignore-scripts
package/CHANGES.md CHANGED
@@ -1,3 +1,31 @@
1
+ 2023-09-11, Version 5.0.1
2
+ =========================
3
+
4
+ * chore: lock file maintenance (renovate[bot])
5
+
6
+ * chore: update dependency eslint to ^8.49.0 (renovate[bot])
7
+
8
+ * chore: update dependency http-status to ^1.7.0 (renovate[bot])
9
+
10
+ * chore: update actions/checkout action to v4 (renovate[bot])
11
+
12
+ * chore: update dependency eslint to ^8.48.0 (renovate[bot])
13
+
14
+ * chore: update dependency chai to ^4.3.8 (renovate[bot])
15
+
16
+
17
+ 2023-08-21, Version 5.0.0
18
+ =========================
19
+
20
+ * chore: lock file maintenance (renovate[bot])
21
+
22
+ * chore: update dependency strong-globalize to ^6.0.6 (renovate[bot])
23
+
24
+ * chore: update dependency js2xmlparser to v5 (renovate[bot])
25
+
26
+ * chore: drop Node.js 14 and lower (dhmlau)
27
+
28
+
1
29
  2023-08-14, Version 4.0.8
2
30
  =========================
3
31
 
package/package.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "strong-error-handler",
3
3
  "description": "Error handler for use in development and production environments.",
4
4
  "license": "MIT",
5
- "version": "4.0.8",
5
+ "version": "5.0.1",
6
6
  "engines": {
7
- "node": ">=10"
7
+ "node": ">=16"
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
@@ -21,15 +21,15 @@
21
21
  "debug": "^4.3.4",
22
22
  "ejs": "^3.1.9",
23
23
  "fast-safe-stringify": "^2.1.1",
24
- "http-status": "^1.6.2",
25
- "js2xmlparser": "^4.0.2",
26
- "strong-globalize": "^6.0.5"
24
+ "http-status": "^1.7.0",
25
+ "js2xmlparser": "^5.0.0",
26
+ "strong-globalize": "^6.0.6"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@commitlint/config-conventional": "^17.7.0",
30
30
  "@types/express": "^4.17.17",
31
- "chai": "^4.3.7",
32
- "eslint": "^8.47.0",
31
+ "chai": "^4.3.8",
32
+ "eslint": "^8.49.0",
33
33
  "eslint-config-loopback": "^13.1.0",
34
34
  "express": "^4.18.2",
35
35
  "mocha": "^10.2.0",