@networkpro/blog 1.5.2 → 1.5.3
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/backup-branch.yml +1 -1
- package/.github/workflows/build-and-deploy.yml +4 -4
- package/.github/workflows/dependency-review.yml +1 -1
- package/.github/workflows/publish-test.yml +16 -15
- package/.github/workflows/publish.yml +12 -11
- package/CHANGELOG.md +27 -3
- package/package.json +3 -3
- package/requirements.txt +2 -2
|
@@ -38,16 +38,16 @@ jobs:
|
|
|
38
38
|
fetch-depth: 0
|
|
39
39
|
|
|
40
40
|
- name: Set up Node.js
|
|
41
|
-
uses: actions/setup-node@
|
|
41
|
+
uses: actions/setup-node@v6
|
|
42
42
|
with:
|
|
43
|
-
node-version:
|
|
43
|
+
node-version: 22
|
|
44
44
|
cache: npm
|
|
45
45
|
cache-dependency-path: package-lock.json
|
|
46
46
|
|
|
47
47
|
- name: Upgrade npm
|
|
48
48
|
run: |
|
|
49
49
|
corepack enable
|
|
50
|
-
npm install -g npm@11.6.
|
|
50
|
+
npm install -g npm@11.6.2
|
|
51
51
|
|
|
52
52
|
- name: Set up Pages
|
|
53
53
|
uses: actions/configure-pages@v5
|
|
@@ -72,7 +72,7 @@ jobs:
|
|
|
72
72
|
run: cp package.json build/
|
|
73
73
|
|
|
74
74
|
- name: Upload artifact
|
|
75
|
-
uses: actions/upload-pages-artifact@
|
|
75
|
+
uses: actions/upload-pages-artifact@v4
|
|
76
76
|
with:
|
|
77
77
|
path: ./build
|
|
78
78
|
|
|
@@ -12,6 +12,7 @@ on:
|
|
|
12
12
|
permissions:
|
|
13
13
|
actions: read
|
|
14
14
|
contents: read
|
|
15
|
+
packages: write
|
|
15
16
|
|
|
16
17
|
# Allow one concurrent deployment
|
|
17
18
|
concurrency:
|
|
@@ -28,28 +29,28 @@ jobs:
|
|
|
28
29
|
|
|
29
30
|
steps:
|
|
30
31
|
- name: Checkout repository
|
|
31
|
-
uses: actions/checkout@
|
|
32
|
+
uses: actions/checkout@v5
|
|
32
33
|
with:
|
|
33
34
|
fetch-depth: 0
|
|
34
35
|
|
|
35
36
|
- name: Set up Node.js
|
|
36
|
-
uses: actions/setup-node@
|
|
37
|
+
uses: actions/setup-node@v6
|
|
37
38
|
with:
|
|
38
|
-
node-version:
|
|
39
|
+
node-version: 22
|
|
39
40
|
cache: npm
|
|
40
41
|
cache-dependency-path: package-lock.json
|
|
41
42
|
|
|
42
43
|
- name: Upgrade npm
|
|
43
44
|
run: |
|
|
44
45
|
corepack enable
|
|
45
|
-
npm install -g npm@11.6.
|
|
46
|
+
npm install -g npm@11.6.2
|
|
46
47
|
|
|
47
48
|
- name: Install Node.js dependencies
|
|
48
49
|
run: npm ci
|
|
49
50
|
|
|
50
51
|
# Ensure MkDocs builds successfully
|
|
51
52
|
- name: Set up Python
|
|
52
|
-
uses: actions/setup-python@
|
|
53
|
+
uses: actions/setup-python@v6
|
|
53
54
|
with:
|
|
54
55
|
python-version: '3.13'
|
|
55
56
|
|
|
@@ -69,7 +70,7 @@ jobs:
|
|
|
69
70
|
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
|
|
70
71
|
|
|
71
72
|
- name: Upload source archive
|
|
72
|
-
uses: actions/upload-artifact@
|
|
73
|
+
uses: actions/upload-artifact@v5
|
|
73
74
|
with:
|
|
74
75
|
name: clean-source
|
|
75
76
|
path: clean-source.tar.gz
|
|
@@ -80,7 +81,7 @@ jobs:
|
|
|
80
81
|
|
|
81
82
|
steps:
|
|
82
83
|
- name: Download clean source archive
|
|
83
|
-
uses: actions/download-artifact@
|
|
84
|
+
uses: actions/download-artifact@v5
|
|
84
85
|
with:
|
|
85
86
|
name: clean-source
|
|
86
87
|
path: ./
|
|
@@ -92,9 +93,9 @@ jobs:
|
|
|
92
93
|
run: rm clean-source.tar.gz
|
|
93
94
|
|
|
94
95
|
- name: Set up Node.js for npmjs
|
|
95
|
-
uses: actions/setup-node@
|
|
96
|
+
uses: actions/setup-node@v6
|
|
96
97
|
with:
|
|
97
|
-
node-version:
|
|
98
|
+
node-version: 22
|
|
98
99
|
registry-url: https://registry.npmjs.org/
|
|
99
100
|
cache: npm
|
|
100
101
|
|
|
@@ -107,7 +108,7 @@ jobs:
|
|
|
107
108
|
- name: Upgrade npm
|
|
108
109
|
run: |
|
|
109
110
|
corepack enable
|
|
110
|
-
npm install -g npm@11.6.
|
|
111
|
+
npm install -g npm@11.6.2
|
|
111
112
|
|
|
112
113
|
- name: Install Node.js dependencies
|
|
113
114
|
run: npm ci
|
|
@@ -128,7 +129,7 @@ jobs:
|
|
|
128
129
|
|
|
129
130
|
steps:
|
|
130
131
|
- name: Download clean source archive
|
|
131
|
-
uses: actions/download-artifact@
|
|
132
|
+
uses: actions/download-artifact@v5
|
|
132
133
|
with:
|
|
133
134
|
name: clean-source
|
|
134
135
|
path: ./
|
|
@@ -140,9 +141,9 @@ jobs:
|
|
|
140
141
|
run: rm clean-source.tar.gz
|
|
141
142
|
|
|
142
143
|
- name: Set up Node.js for GPR
|
|
143
|
-
uses: actions/setup-node@
|
|
144
|
+
uses: actions/setup-node@v6
|
|
144
145
|
with:
|
|
145
|
-
node-version:
|
|
146
|
+
node-version: 22
|
|
146
147
|
registry-url: https://npm.pkg.github.com/
|
|
147
148
|
cache: npm
|
|
148
149
|
|
|
@@ -155,7 +156,7 @@ jobs:
|
|
|
155
156
|
- name: Upgrade npm
|
|
156
157
|
run: |
|
|
157
158
|
corepack enable
|
|
158
|
-
npm install -g npm@11.6.
|
|
159
|
+
npm install -g npm@11.6.2
|
|
159
160
|
|
|
160
161
|
- name: Install Node.js dependencies
|
|
161
162
|
run: npm ci
|
|
@@ -172,4 +173,4 @@ jobs:
|
|
|
172
173
|
- name: Publish package to GPR
|
|
173
174
|
run: npm publish --dry-run
|
|
174
175
|
env:
|
|
175
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
176
|
+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -15,6 +15,7 @@ on:
|
|
|
15
15
|
permissions:
|
|
16
16
|
actions: read
|
|
17
17
|
contents: read
|
|
18
|
+
packages: write
|
|
18
19
|
|
|
19
20
|
# Allow one concurrent deployment
|
|
20
21
|
concurrency:
|
|
@@ -35,16 +36,16 @@ jobs:
|
|
|
35
36
|
fetch-depth: 0
|
|
36
37
|
|
|
37
38
|
- name: Set up Node.js
|
|
38
|
-
uses: actions/setup-node@
|
|
39
|
+
uses: actions/setup-node@v6
|
|
39
40
|
with:
|
|
40
|
-
node-version:
|
|
41
|
+
node-version: 22
|
|
41
42
|
cache: npm
|
|
42
43
|
cache-dependency-path: package-lock.json
|
|
43
44
|
|
|
44
45
|
- name: Upgrade npm
|
|
45
46
|
run: |
|
|
46
47
|
corepack enable
|
|
47
|
-
npm install -g npm@11.6.
|
|
48
|
+
npm install -g npm@11.6.2
|
|
48
49
|
|
|
49
50
|
- name: Install Node.js dependencies
|
|
50
51
|
run: npm ci
|
|
@@ -71,7 +72,7 @@ jobs:
|
|
|
71
72
|
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
|
|
72
73
|
|
|
73
74
|
- name: Upload source archive
|
|
74
|
-
uses: actions/upload-artifact@
|
|
75
|
+
uses: actions/upload-artifact@v5
|
|
75
76
|
with:
|
|
76
77
|
name: clean-source
|
|
77
78
|
path: clean-source.tar.gz
|
|
@@ -94,9 +95,9 @@ jobs:
|
|
|
94
95
|
run: rm clean-source.tar.gz
|
|
95
96
|
|
|
96
97
|
- name: Set up Node.js for npmjs
|
|
97
|
-
uses: actions/setup-node@
|
|
98
|
+
uses: actions/setup-node@v6
|
|
98
99
|
with:
|
|
99
|
-
node-version:
|
|
100
|
+
node-version: 22
|
|
100
101
|
registry-url: https://registry.npmjs.org/
|
|
101
102
|
cache: npm
|
|
102
103
|
cache-dependency-path: package-lock.json
|
|
@@ -104,7 +105,7 @@ jobs:
|
|
|
104
105
|
- name: Upgrade npm
|
|
105
106
|
run: |
|
|
106
107
|
corepack enable
|
|
107
|
-
npm install -g npm@11.6.
|
|
108
|
+
npm install -g npm@11.6.2
|
|
108
109
|
|
|
109
110
|
- name: Install Node.js dependencies
|
|
110
111
|
run: npm ci
|
|
@@ -155,9 +156,9 @@ jobs:
|
|
|
155
156
|
run: rm clean-source.tar.gz
|
|
156
157
|
|
|
157
158
|
- name: Set up Node.js for GPR
|
|
158
|
-
uses: actions/setup-node@
|
|
159
|
+
uses: actions/setup-node@v6
|
|
159
160
|
with:
|
|
160
|
-
node-version:
|
|
161
|
+
node-version: 22
|
|
161
162
|
registry-url: https://npm.pkg.github.com/
|
|
162
163
|
cache: npm
|
|
163
164
|
cache-dependency-path: package-lock.json
|
|
@@ -165,7 +166,7 @@ jobs:
|
|
|
165
166
|
- name: Upgrade npm
|
|
166
167
|
run: |
|
|
167
168
|
corepack enable
|
|
168
|
-
npm install -g npm@11.6.
|
|
169
|
+
npm install -g npm@11.6.2
|
|
169
170
|
|
|
170
171
|
- name: Install Node.js dependencies
|
|
171
172
|
run: npm ci
|
|
@@ -200,4 +201,4 @@ jobs:
|
|
|
200
201
|
- name: Publish package to GPR
|
|
201
202
|
run: npm publish --registry=https://npm.pkg.github.com/
|
|
202
203
|
env:
|
|
203
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
204
|
+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -16,7 +16,30 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
## [1.5.
|
|
19
|
+
## [1.5.3] - 2025-10-26
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Bumped project version to `v1.5.3`.
|
|
24
|
+
- Corrected publish dates in CHANGELOG.md, as they were incorrectly showing the
|
|
25
|
+
year as 2022.
|
|
26
|
+
- Updated **Node.js** dependencies:
|
|
27
|
+
- `browserslist` `^4.26.3` → `^4.27.0`
|
|
28
|
+
- Updated **Python** dependencies:
|
|
29
|
+
- `mkdocs-material` `9.6.20` → `9.6.22`
|
|
30
|
+
- `mkdocs-rss-plugin` `1.17.3` → `1.17.4`
|
|
31
|
+
- Updated GitHub workflows to utilize **Node.js** `v22`, **npm** `11.6.2`, and
|
|
32
|
+
the latest action versions. Modified `publish-test.yml` and `publish.yml` to
|
|
33
|
+
utilize `GITHUB_TOKEN` authentication for publishing.
|
|
34
|
+
- `backup-branch.yml`
|
|
35
|
+
- `build-and-deploy.yml`
|
|
36
|
+
- `dependency-review.yml`
|
|
37
|
+
- `publish-test.yml`
|
|
38
|
+
- `publish.yml`
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## [1.5.2] - 2025-10-21
|
|
20
43
|
|
|
21
44
|
### Changed
|
|
22
45
|
|
|
@@ -28,7 +51,7 @@ formatting may vary.
|
|
|
28
51
|
|
|
29
52
|
---
|
|
30
53
|
|
|
31
|
-
## [1.5.1] -
|
|
54
|
+
## [1.5.1] - 2025-10-21
|
|
32
55
|
|
|
33
56
|
### Changed
|
|
34
57
|
|
|
@@ -359,7 +382,8 @@ formatting may vary.
|
|
|
359
382
|
|
|
360
383
|
<!-- Link references -->
|
|
361
384
|
|
|
362
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.
|
|
385
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.3...HEAD
|
|
386
|
+
[1.5.3]: https://github.com/netwk-pro/blog/releases/tag/v1.5.3
|
|
363
387
|
[1.5.2]: https://github.com/netwk-pro/blog/releases/tag/v1.5.2
|
|
364
388
|
[1.5.1]: https://github.com/netwk-pro/blog/releases/tag/v1.5.1
|
|
365
389
|
[1.5.0]: https://github.com/netwk-pro/blog/releases/tag/v1.5.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"lint:all": "npm run lint && npm run lint:md && npm run lint:css && npm run format",
|
|
47
47
|
"checkout": "npm run lint:all",
|
|
48
48
|
"verify": "npm run checkout",
|
|
49
|
-
"upgrade": "npm-check-updates -u"
|
|
49
|
+
"upgrade": "npx npm-check-updates -u"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@eslint/js": "^9.38.0",
|
|
53
53
|
"@eslint/json": "^0.13.2",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
|
-
"browserslist": "^4.
|
|
55
|
+
"browserslist": "^4.27.0",
|
|
56
56
|
"eslint": "^9.38.0",
|
|
57
57
|
"eslint-config-prettier": "^10.1.8",
|
|
58
58
|
"globals": "^16.4.0",
|
package/requirements.txt
CHANGED