@networkpro/blog 1.5.1 → 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.
@@ -25,7 +25,7 @@ jobs:
25
25
 
26
26
  steps:
27
27
  - name: Checkout master branch
28
- uses: actions/checkout@v4
28
+ uses: actions/checkout@v5
29
29
  with:
30
30
  ref: master
31
31
  fetch-depth: 0 # Required to push to another branch
@@ -38,16 +38,16 @@ jobs:
38
38
  fetch-depth: 0
39
39
 
40
40
  - name: Set up Node.js
41
- uses: actions/setup-node@v5
41
+ uses: actions/setup-node@v6
42
42
  with:
43
- node-version: 24
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.0
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@v3
75
+ uses: actions/upload-pages-artifact@v4
76
76
  with:
77
77
  path: ./build
78
78
 
@@ -15,7 +15,7 @@ jobs:
15
15
  runs-on: ubuntu-24.04
16
16
  steps:
17
17
  - name: 'Checkout Repository'
18
- uses: actions/checkout@v4
18
+ uses: actions/checkout@v5
19
19
 
20
20
  - name: 'Dependency Review'
21
21
  uses: actions/dependency-review-action@v4
@@ -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@v4
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@v4
37
+ uses: actions/setup-node@v6
37
38
  with:
38
- node-version: 24
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.0
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@v5
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@v4
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@v4
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@v4
96
+ uses: actions/setup-node@v6
96
97
  with:
97
- node-version: 24
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.0
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@v4
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@v4
144
+ uses: actions/setup-node@v6
144
145
  with:
145
- node-version: 24
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.0
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.NWPRO_GPR }}
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@v5
39
+ uses: actions/setup-node@v6
39
40
  with:
40
- node-version: 24
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.0
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@v4
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@v5
98
+ uses: actions/setup-node@v6
98
99
  with:
99
- node-version: 24
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.0
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@v5
159
+ uses: actions/setup-node@v6
159
160
  with:
160
- node-version: 24
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.0
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.NWPRO_GPR }}
204
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -16,7 +16,42 @@ formatting may vary.
16
16
 
17
17
  ---
18
18
 
19
- ## [1.5.1] - 2022-10-21
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
43
+
44
+ ### Changed
45
+
46
+ - Bumped project version to `v1.5.2`.
47
+
48
+ ### Fixed
49
+
50
+ - Corrected email address in `README.md`.
51
+
52
+ ---
53
+
54
+ ## [1.5.1] - 2025-10-21
20
55
 
21
56
  ### Changed
22
57
 
@@ -347,7 +382,9 @@ formatting may vary.
347
382
 
348
383
  <!-- Link references -->
349
384
 
350
- [Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.1...HEAD
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
387
+ [1.5.2]: https://github.com/netwk-pro/blog/releases/tag/v1.5.2
351
388
  [1.5.1]: https://github.com/netwk-pro/blog/releases/tag/v1.5.1
352
389
  [1.5.0]: https://github.com/netwk-pro/blog/releases/tag/v1.5.0
353
390
  [1.4.0]: https://github.com/netwk-pro/blog/releases/tag/v1.4.0
package/README.md CHANGED
@@ -69,10 +69,10 @@ and strengthen your business today.
69
69
  You can find our PGP keys and a vCard containing our contact information for
70
70
  your convenience below.
71
71
 
72
- | <img decoding="async" loading="lazy" src="https://raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/src/lib/img/qr/pgp-support.png" width="150px" height="150px" alt="PGP Key - support@netwk.pro"> | **[support@neteng.pro](https://keys.openpgp.org/search?q=support%40netwk.pro)**<br />**PGP Key (ed25519)**<br />&nbsp;<br /><a href="https://netwk.pro/pgp/support@netwk.pro.asc" type="application/pgp-keys" download>**asc**</a><br />&nbsp;<br />6590B992E2E3EFF12738<br />7BCE2AF093E9DEC61BA0 |
73
- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
74
- | **[contact@s.neteng.pro](https://keys.openpgp.org/search?q=contact%40s.neteng.pro)**<br />**PGP Key (ed25519)**<br />&nbsp;<br /><a href="https://netwk.pro/pgp/contact@s.neteng.pro.asc" type="application/pgp-keys">**asc**</a><br />&nbsp;<br />**DF118BAA6C2D9DCDEBDC**<br />**2DDCF99373499495F957** | <img decoding="async" loading="lazy" src="https://raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/src/lib/img/qr/pgp-contact.png" width="150px" height="150px" alt="PGP Key - contact@s.neteng.pro"> |
75
- | <img decoding="async" loading="lazy" src="https://raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/src/lib/img/qr/vcard.png" width="150px" height="150px" alt="vCard"> | **vCard**<br />&nbsp;<br /><a href="https://netwk.pro/bin/contact.vcf" type="text/vcard" download>**vcf**</a> |
72
+ | <img decoding="async" loading="lazy" src="https://raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/src/lib/img/qr/pgp-support.png" width="150px" height="150px" alt="PGP Key - support@netwk.pro"> | **[support@netwk.pro](https://keys.openpgp.org/search?q=support%40netwk.pro)**<br />**PGP Key (ed25519)**<br />&nbsp;<br /><a href="https://netwk.pro/pgp/support@netwk.pro.asc" type="application/pgp-keys" download>**asc**</a><br />&nbsp;<br />6590B992E2E3EFF12738<br />7BCE2AF093E9DEC61BA0 |
73
+ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
74
+ | **[contact@s.neteng.pro](https://keys.openpgp.org/search?q=contact%40s.neteng.pro)**<br />**PGP Key (ed25519)**<br />&nbsp;<br /><a href="https://netwk.pro/pgp/contact@s.neteng.pro.asc" type="application/pgp-keys">**asc**</a><br />&nbsp;<br />**DF118BAA6C2D9DCDEBDC**<br />**2DDCF99373499495F957** | <img decoding="async" loading="lazy" src="https://raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/src/lib/img/qr/pgp-contact.png" width="150px" height="150px" alt="PGP Key - contact@s.neteng.pro"> |
75
+ | <img decoding="async" loading="lazy" src="https://raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/src/lib/img/qr/vcard.png" width="150px" height="150px" alt="vCard"> | **vCard**<br />&nbsp;<br /><a href="https://netwk.pro/bin/contact.vcf" type="text/vcard" download>**vcf**</a> |
76
76
 
77
77
  <sub>[Back to top](#top)</sub>
78
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@networkpro/blog",
3
- "version": "1.5.1",
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.26.3",
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
@@ -1,5 +1,5 @@
1
1
  mkdocs==1.6.1
2
- mkdocs-material==9.6.20
2
+ mkdocs-material==9.6.22
3
3
  mkdocs-material-extensions==1.3.1
4
4
  mkdocs-get-deps==0.2.0
5
- mkdocs-rss-plugin==1.17.3
5
+ mkdocs-rss-plugin==1.17.4