@beauraines/node-helpers 5.4.17 → 5.4.20
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/publish.yaml +10 -7
- package/.github/workflows/test.yaml +7 -3
- package/CHANGELOG.md +15 -0
- package/package.json +2 -2
|
@@ -6,12 +6,16 @@ on:
|
|
|
6
6
|
types: [completed]
|
|
7
7
|
branches: [master,main]
|
|
8
8
|
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
id-token: write
|
|
12
|
+
|
|
9
13
|
jobs:
|
|
10
14
|
publish-new-version:
|
|
11
15
|
runs-on: ubuntu-latest
|
|
12
16
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
13
17
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v6
|
|
15
19
|
with:
|
|
16
20
|
fetch-depth: '0'
|
|
17
21
|
- name: git setup
|
|
@@ -19,10 +23,11 @@ jobs:
|
|
|
19
23
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
20
24
|
git config --local user.name "github-actions[bot]"
|
|
21
25
|
- name: setup node
|
|
22
|
-
uses: actions/setup-node@
|
|
26
|
+
uses: actions/setup-node@v6
|
|
23
27
|
with:
|
|
24
|
-
node-version:
|
|
28
|
+
node-version: '24'
|
|
25
29
|
registry-url: 'https://registry.npmjs.org'
|
|
30
|
+
cache: 'npm'
|
|
26
31
|
- name: npm install
|
|
27
32
|
run: npm ci
|
|
28
33
|
|
|
@@ -41,13 +46,11 @@ jobs:
|
|
|
41
46
|
|
|
42
47
|
- name: Publish to NPM
|
|
43
48
|
if: steps.should_release.outcome == 'success'
|
|
44
|
-
run: npm publish
|
|
45
|
-
env:
|
|
46
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
49
|
+
run: npm publish --provenance
|
|
47
50
|
|
|
48
51
|
- name: Push commits to GitHub
|
|
49
52
|
if: steps.should_release.outcome == 'success'
|
|
50
|
-
uses: ad-m/github-push-action@
|
|
53
|
+
uses: ad-m/github-push-action@v1.0.0
|
|
51
54
|
with:
|
|
52
55
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
53
56
|
branch: ${{ github.ref }}
|
|
@@ -6,6 +6,9 @@ on:
|
|
|
6
6
|
pull_request:
|
|
7
7
|
branches: [ main ]
|
|
8
8
|
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
9
12
|
jobs:
|
|
10
13
|
build:
|
|
11
14
|
|
|
@@ -13,14 +16,15 @@ jobs:
|
|
|
13
16
|
|
|
14
17
|
strategy:
|
|
15
18
|
matrix:
|
|
16
|
-
node-version: [
|
|
19
|
+
node-version: [20.x,22.x]
|
|
17
20
|
|
|
18
21
|
steps:
|
|
19
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@v6
|
|
20
23
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
21
|
-
uses: actions/setup-node@
|
|
24
|
+
uses: actions/setup-node@v6
|
|
22
25
|
with:
|
|
23
26
|
node-version: ${{ matrix.node-version }}
|
|
27
|
+
cache: 'npm'
|
|
24
28
|
- run: npm ci
|
|
25
29
|
- run: npm run lint
|
|
26
30
|
- run: npm run build --if-present
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [5.4.20](https://github.com/beauraines/node-helpers/compare/v5.4.18...v5.4.20) (2026-03-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** bump fast-xml-parser from 5.4.1 to 5.5.7 ([#203](https://github.com/beauraines/node-helpers/issues/203)) ([2cab8f6](https://github.com/beauraines/node-helpers/commit/2cab8f679dca0e1b9169fca598441a796cdf2f48))
|
|
11
|
+
* **deps:** bump tar and sqlite3 ([#208](https://github.com/beauraines/node-helpers/issues/208)) ([ed7caa9](https://github.com/beauraines/node-helpers/commit/ed7caa9b005354a0d7ecdb4d4f09ba9b09c3c700))
|
|
12
|
+
|
|
13
|
+
### [5.4.18](https://github.com/beauraines/node-helpers/compare/v5.4.17...v5.4.18) (2026-03-08)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **deps:** bump underscore from 1.13.7 to 1.13.8 ([#201](https://github.com/beauraines/node-helpers/issues/201)) ([e0ba59a](https://github.com/beauraines/node-helpers/commit/e0ba59aed67f3362ec319ff598ff651a93538823))
|
|
19
|
+
|
|
5
20
|
### [5.4.17](https://github.com/beauraines/node-helpers/compare/v5.4.16...v5.4.17) (2026-03-01)
|
|
6
21
|
|
|
7
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beauraines/node-helpers",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.20",
|
|
4
4
|
"description": "Collection of node helpers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"node-fetch": "^2.6.7",
|
|
26
26
|
"sparkly": "^5.0.0",
|
|
27
27
|
"sqlite": "^5.0.1",
|
|
28
|
-
"sqlite3": "^
|
|
28
|
+
"sqlite3": "^6.0.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@eslint/eslintrc": "^3.1.0",
|