ac-custom-error 1.0.5 → 2.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.
@@ -12,11 +12,14 @@ on:
12
12
  jobs:
13
13
  build:
14
14
 
15
+ permissions:
16
+ contents: read
17
+
15
18
  runs-on: ubuntu-latest
16
19
 
17
20
  strategy:
18
21
  matrix:
19
- node-version: [16.x, 18.x]
22
+ node-version: [20.x, 22.x]
20
23
 
21
24
  steps:
22
25
  - uses: actions/checkout@v3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+
2
+ # [2.0.0](https://github.com/admiralcloud/ac-custom-error/compare/v1.0.6..v2.0.0) (2026-02-03 09:23:24)
3
+
4
+
5
+ ### Bug Fix
6
+
7
+ * **Misc:** Minimum version Node20 | MP | [f9975b7f3f99a0d0f4743387c8f4e477dfe3c339](https://github.com/admiralcloud/ac-custom-error/commit/f9975b7f3f99a0d0f4743387c8f4e477dfe3c339)
8
+ Minimum version Node20
9
+ Related issues:
10
+ ### Chores
11
+
12
+ * **Misc:** Add permission to workflow | MP | [eaadc0bce650011a656be931a84cc7849d48fd5f](https://github.com/admiralcloud/ac-custom-error/commit/eaadc0bce650011a656be931a84cc7849d48fd5f)
13
+ Add permission to workflow
14
+ Related issues:
15
+ ## BREAKING CHANGES
16
+ * **Misc:** Minimum version Node20
17
+
18
+ ## [1.0.6](https://github.com/admiralcloud/ac-custom-error/compare/v1.0.5..v1.0.6) (2026-02-03 08:05:17)
19
+
20
+
21
+ ### Bug Fix
22
+
23
+ * **App:** Package updates | MP | [de1f51ee1d96f28c7a6aa2b735c5a40fc318ea92](https://github.com/admiralcloud/ac-custom-error/commit/de1f51ee1d96f28c7a6aa2b735c5a40fc318ea92)
24
+ Package updates
25
+ Related issues:
1
26
 
2
27
  ## [1.0.5](https://github.com/admiralcloud/ac-custom-error/compare/v1.0.4..v1.0.5) (2025-09-19 05:23:24)
3
28
 
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "ac-custom-error",
3
- "version": "1.0.5",
3
+ "version": "2.0.0",
4
4
  "description": "Custom NodeJS error with error code and additional info",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/AdmiralCloud/ac-custom-error",
7
7
  "author": "Mark Poepping (www.admiralcloud.com)",
8
8
  "license": "MIT",
9
9
  "devDependencies": {
10
- "ac-semantic-release": "^0.4.8",
10
+ "ac-semantic-release": "^0.4.10",
11
11
  "chai": "^4.5.0",
12
- "eslint": "^9.35.0",
13
- "mocha": "^11.7.2",
12
+ "eslint": "^9.39.2",
13
+ "mocha": "^11.7.5",
14
14
  "nyc": "^17.1.0"
15
15
  },
16
16
  "scripts": {
@@ -18,7 +18,10 @@
18
18
  "coverage": "nyc yarn run test"
19
19
  },
20
20
  "engines": {
21
- "node": ">=16.0.0"
21
+ "node": ">=20.0.0"
22
+ },
23
+ "resolutions": {
24
+ "mocha/diff": "^8.0.3"
22
25
  },
23
26
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
24
27
  }