semlog 0.8.0 → 1.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.
- package/.github/workflows/ci.yml +7 -4
- package/.github/workflows/publish.yml +3 -3
- package/CHANGELOG-0.x.md +15 -0
- package/CHANGELOG.md +13 -7
- package/package.json +2 -2
package/.github/workflows/ci.yml
CHANGED
|
@@ -16,16 +16,19 @@ jobs:
|
|
|
16
16
|
strategy:
|
|
17
17
|
matrix:
|
|
18
18
|
include:
|
|
19
|
-
- node: 20
|
|
20
19
|
- node: 22
|
|
20
|
+
# Node 26 omitted: c8 (via yargs@17) crashes under Node >=25.7 with
|
|
21
|
+
# "require is not defined in ES module scope" (bcoe/c8#582). Add
|
|
22
|
+
# 26 back once that upstream issue is fixed.
|
|
23
|
+
- node: 24
|
|
21
24
|
coverage: true
|
|
22
25
|
|
|
23
26
|
steps:
|
|
24
27
|
- name: Checkout
|
|
25
|
-
uses: actions/checkout@
|
|
28
|
+
uses: actions/checkout@v7
|
|
26
29
|
|
|
27
30
|
- name: Setup Node.js
|
|
28
|
-
uses: actions/setup-node@
|
|
31
|
+
uses: actions/setup-node@v7
|
|
29
32
|
with:
|
|
30
33
|
node-version: ${{ matrix.node }}
|
|
31
34
|
|
|
@@ -47,7 +50,7 @@ jobs:
|
|
|
47
50
|
if: matrix.coverage == true
|
|
48
51
|
|
|
49
52
|
- name: Upload code coverage
|
|
50
|
-
uses: codecov/codecov-action@
|
|
53
|
+
uses: codecov/codecov-action@v7
|
|
51
54
|
with:
|
|
52
55
|
files: coverage/clover.xml
|
|
53
56
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -19,12 +19,12 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout
|
|
22
|
-
uses: actions/checkout@
|
|
22
|
+
uses: actions/checkout@v7
|
|
23
23
|
|
|
24
24
|
- name: Setup Node.js
|
|
25
|
-
uses: actions/setup-node@
|
|
25
|
+
uses: actions/setup-node@v7
|
|
26
26
|
with:
|
|
27
|
-
node-version:
|
|
27
|
+
node-version: 24
|
|
28
28
|
registry-url: 'https://registry.npmjs.org'
|
|
29
29
|
|
|
30
30
|
- name: Upgrade npm (Trusted Publishing requires npm >= 11.5.1)
|
package/CHANGELOG-0.x.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog (0.x)
|
|
2
|
+
|
|
3
|
+
Archived changelog entries for the 0.x release line. This file is never modified after creation.
|
|
4
|
+
|
|
5
|
+
## [0.8.0] - 2026-07-26
|
|
6
|
+
|
|
7
|
+
Adds a coverage report to CI and closes out a set of open dependency vulnerabilities.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Add `format` npm script for auto-formatting with Prettier [`dbffe72`](https://github.com/gesinn-it-pub/semlog/commit/dbffe724b95dae9870e5114ed272c5df34ee7998)
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bump mocha to 11.7.6 and override vulnerable transitive deps (brace-expansion, diff, js-yaml, serialize-javascript) [`39d2837`](https://github.com/gesinn-it-pub/semlog/commit/39d28378b0a21e5a9963392163961aa40b0ba68f)
|
|
14
|
+
|
|
15
|
+
[0.8.0]: https://github.com/gesinn-it-pub/semlog/compare/v0.6.11...0.8.0
|
package/CHANGELOG.md
CHANGED
|
@@ -6,15 +6,21 @@ This project adheres to [Semantic Versioning](https://semver.org/) and
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
## [0.
|
|
9
|
+
## [1.0.0] - 2026-07-26
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Raises the minimum supported Node.js version and moves CI to only test active LTS lines.
|
|
12
12
|
|
|
13
|
-
###
|
|
14
|
-
-
|
|
13
|
+
### Breaking Changes
|
|
14
|
+
- Raise minimum supported Node.js version from 20 to 22 [`98ab58b`](https://github.com/gesinn-it-pub/semlog/commit/98ab58b)
|
|
15
15
|
|
|
16
16
|
### Changed
|
|
17
|
-
-
|
|
17
|
+
- CI now tests only active Node.js LTS lines (22, 24) [`98ab58b`](https://github.com/gesinn-it-pub/semlog/commit/98ab58b)
|
|
18
|
+
- Bump `actions/checkout`, `actions/setup-node`, and `codecov/codecov-action` to v7 [`98ab58b`](https://github.com/gesinn-it-pub/semlog/commit/98ab58b)
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
[
|
|
20
|
+
### Fixed
|
|
21
|
+
- Drop Node 26 from the CI matrix; c8 (via yargs) crashes on Node >=25.7 with an unresolved upstream bug (bcoe/c8#582) [`a8e8c6c`](https://github.com/gesinn-it-pub/semlog/commit/a8e8c6c)
|
|
22
|
+
|
|
23
|
+
[Unreleased]: https://github.com/gesinn-it-pub/semlog/compare/1.0.0...HEAD
|
|
24
|
+
[1.0.0]: https://github.com/gesinn-it-pub/semlog/compare/0.8.0...1.0.0
|
|
25
|
+
|
|
26
|
+
Older releases: [0.x](CHANGELOG-0.x.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semlog",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "A semantic logger module, that colors and formats automatically depending on the content",
|
|
5
5
|
"homepage": "https://github.com/gesinn-it-pub/semlog",
|
|
6
6
|
"author": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"main": "index.js",
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=
|
|
28
|
+
"node": ">=22.0.0"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"semlog",
|