@networkpro/blog 1.3.11 → 1.4.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/COMMIT_GUIDE.md +8 -0
- package/.github/workflows/build-and-deploy.yml +6 -2
- package/.github/workflows/publish-test.yml +21 -0
- package/.github/workflows/publish.yml +5 -11
- package/CHANGELOG.md +27 -1
- package/package.json +1 -1
- package/src/posts/2025-05-29-heliboard.md +2 -2
- package/src/posts/2025-05-29-msauth.md +2 -2
- package/src/posts/2025-06-08-squircle.md +2 -2
- package/src/posts/2025-06-12-backdoor.md +2 -1
- package/src/posts/2025-06-16-cryptomator.md +2 -1
- package/src/posts/2025-06-23-encryption-eff.md +1 -1
- package/src/posts/2025-07-17-otp-helper.md +2 -1
- package/src/posts/{2025-07-24-uk-apple-li.md → 2025-07-27-uk-apple.md} +2 -1
- package/src/posts/secure-secure-shell.md +4 -3
- package/src/sitemap.xml +9 -9
package/.github/COMMIT_GUIDE.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
<!-- =====================================================================
|
|
2
|
+
.github/COMMIT_GUIDE.md
|
|
3
|
+
|
|
4
|
+
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
+
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
+
This file is part of Network Pro.
|
|
7
|
+
====================================================================== -->
|
|
8
|
+
|
|
1
9
|
# Commit Message Guide
|
|
2
10
|
|
|
3
11
|
To maintain clarity and consistency, use one of the following commit types when
|
|
@@ -40,11 +40,15 @@ jobs:
|
|
|
40
40
|
- name: Set up Node.js
|
|
41
41
|
uses: actions/setup-node@v4
|
|
42
42
|
with:
|
|
43
|
-
node-version:
|
|
44
|
-
check-latest: true
|
|
43
|
+
node-version: 24
|
|
45
44
|
cache: npm
|
|
46
45
|
cache-dependency-path: package-lock.json
|
|
47
46
|
|
|
47
|
+
- name: Upgrade npm
|
|
48
|
+
run: |
|
|
49
|
+
corepack enable
|
|
50
|
+
npm install -g npm@11.4.2
|
|
51
|
+
|
|
48
52
|
- name: Set up Pages
|
|
49
53
|
uses: actions/configure-pages@v5
|
|
50
54
|
|
|
@@ -39,6 +39,11 @@ jobs:
|
|
|
39
39
|
cache: npm
|
|
40
40
|
cache-dependency-path: package-lock.json
|
|
41
41
|
|
|
42
|
+
- name: Upgrade npm
|
|
43
|
+
run: |
|
|
44
|
+
corepack enable
|
|
45
|
+
npm install -g npm@11.4.2
|
|
46
|
+
|
|
42
47
|
- name: Install Node.js dependencies
|
|
43
48
|
run: npm ci
|
|
44
49
|
|
|
@@ -99,6 +104,14 @@ jobs:
|
|
|
99
104
|
echo "Warning: package-lock.json not found";
|
|
100
105
|
fi
|
|
101
106
|
|
|
107
|
+
- name: Upgrade npm
|
|
108
|
+
run: |
|
|
109
|
+
corepack enable
|
|
110
|
+
npm install -g npm@11.4.2
|
|
111
|
+
|
|
112
|
+
- name: Install Node.js dependencies
|
|
113
|
+
run: npm ci
|
|
114
|
+
|
|
102
115
|
- name: Set up Git user
|
|
103
116
|
run: |
|
|
104
117
|
git config --global user.email "github@sl.neteng.cc"
|
|
@@ -139,6 +152,14 @@ jobs:
|
|
|
139
152
|
echo "Warning: package-lock.json not found";
|
|
140
153
|
fi
|
|
141
154
|
|
|
155
|
+
- name: Upgrade npm
|
|
156
|
+
run: |
|
|
157
|
+
corepack enable
|
|
158
|
+
npm install -g npm@11.4.2
|
|
159
|
+
|
|
160
|
+
- name: Install Node.js dependencies
|
|
161
|
+
run: npm ci
|
|
162
|
+
|
|
142
163
|
- name: Set up Git user
|
|
143
164
|
run: |
|
|
144
165
|
git config --global user.email "github@sl.neteng.cc"
|
|
@@ -44,7 +44,7 @@ jobs:
|
|
|
44
44
|
- name: Upgrade npm
|
|
45
45
|
run: |
|
|
46
46
|
corepack enable
|
|
47
|
-
npm install -g npm@11.4.
|
|
47
|
+
npm install -g npm@11.4.2
|
|
48
48
|
|
|
49
49
|
- name: Install Node.js dependencies
|
|
50
50
|
run: npm ci
|
|
@@ -63,8 +63,8 @@ jobs:
|
|
|
63
63
|
run: mkdocs build
|
|
64
64
|
|
|
65
65
|
# Remove build artifacts
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
- name: Clean build directory
|
|
67
|
+
run: rm -rf build/
|
|
68
68
|
|
|
69
69
|
# Create Git archive of version-controlled files
|
|
70
70
|
- name: Create clean source archive
|
|
@@ -104,7 +104,7 @@ jobs:
|
|
|
104
104
|
- name: Upgrade npm
|
|
105
105
|
run: |
|
|
106
106
|
corepack enable
|
|
107
|
-
npm install -g npm@11.4.
|
|
107
|
+
npm install -g npm@11.4.2
|
|
108
108
|
|
|
109
109
|
- name: Install Node.js dependencies
|
|
110
110
|
run: npm ci
|
|
@@ -124,9 +124,6 @@ jobs:
|
|
|
124
124
|
|
|
125
125
|
echo "🔍 .npmrc contents:"
|
|
126
126
|
cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
127
|
-
|
|
128
|
-
echo "🔐 Token prefix:"
|
|
129
|
-
echo "${NODE_AUTH_TOKEN:0:4}********"
|
|
130
127
|
env:
|
|
131
128
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_NETPRO }}
|
|
132
129
|
|
|
@@ -168,7 +165,7 @@ jobs:
|
|
|
168
165
|
- name: Upgrade npm
|
|
169
166
|
run: |
|
|
170
167
|
corepack enable
|
|
171
|
-
npm install -g npm@11.4.
|
|
168
|
+
npm install -g npm@11.4.2
|
|
172
169
|
|
|
173
170
|
- name: Install Node.js dependencies
|
|
174
171
|
run: npm ci
|
|
@@ -192,9 +189,6 @@ jobs:
|
|
|
192
189
|
|
|
193
190
|
echo "🔍 .npmrc contents:"
|
|
194
191
|
cat "$NPM_CONFIG_USERCONFIG" || echo "❌ No .npmrc found"
|
|
195
|
-
|
|
196
|
-
echo "🔐 Token prefix:"
|
|
197
|
-
echo "${NODE_AUTH_TOKEN:0:4}********"
|
|
198
192
|
env:
|
|
199
193
|
NODE_AUTH_TOKEN: ${{ secrets.NWPRO_GPR }}
|
|
200
194
|
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,31 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.4.0] - 2025-07-27
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Bumped version to `v1.4.0`.
|
|
24
|
+
- Cleaned up tags in the following files, located in `src/posts`:
|
|
25
|
+
- `2025-05-29-heliboard.md`
|
|
26
|
+
- `2025-05-29-msauth.md`
|
|
27
|
+
- `2025-06-08-squircle.md`
|
|
28
|
+
- `2025-06-12-backdoor.md`
|
|
29
|
+
- `2025-06-16-cryptomator.md`
|
|
30
|
+
- `2025-06-23-encryption-eff.md`
|
|
31
|
+
- `2025-07-17-otp-helper.md`
|
|
32
|
+
- Updated sitemap.xml to reflect accurate "Last Modified" dates and correct
|
|
33
|
+
URLs.
|
|
34
|
+
- Renamed `src/posts/2025-07-24-uk-apple-li.md` to
|
|
35
|
+
`src/posts/2025-07-27-uk-apple.md`.
|
|
36
|
+
- Updated `.github/workflows/build-and-deploy.yml` to utilize `Node.js` `v24`
|
|
37
|
+
and `npm` `v11.4.2`.
|
|
38
|
+
- Updated `.github/workflows/publish.yml` and
|
|
39
|
+
`.github/workflows/publish-test.yml` to utilize `npm` `v11.4.2`.
|
|
40
|
+
- Added standardized header to `.github/COMMIT_GUIDE.md`.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
19
44
|
## [1.3.11] - 2025-07-27
|
|
20
45
|
|
|
21
46
|
### Fixed
|
|
@@ -262,7 +287,8 @@ formatting may vary.
|
|
|
262
287
|
|
|
263
288
|
<!-- Link references -->
|
|
264
289
|
|
|
265
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.
|
|
290
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.4.0...HEAD
|
|
291
|
+
[1.4.0]: https://github.com/netwk-pro/blog/releases/tag/v1.4.0
|
|
266
292
|
[1.3.11]: https://github.com/netwk-pro/blog/releases/tag/v1.3.11
|
|
267
293
|
[1.3.10]: https://github.com/netwk-pro/blog/releases/tag/v1.3.10
|
|
268
294
|
[1.3.9]: https://github.com/netwk-pro/blog/releases/tag/v1.3.9
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-05-29
|
|
4
|
-
updated: 2025-
|
|
4
|
+
updated: 2025-07-27
|
|
5
5
|
title: Microsoft Authenticator Users - Major Change Incoming
|
|
6
6
|
summary:
|
|
7
7
|
Microsoft Authenticator is phasing out its password autofill sync feature by
|
|
@@ -12,7 +12,7 @@ categories:
|
|
|
12
12
|
- Open-Source
|
|
13
13
|
- Security
|
|
14
14
|
tags:
|
|
15
|
-
-
|
|
15
|
+
- cybersecurity
|
|
16
16
|
- mfa
|
|
17
17
|
- microsoft
|
|
18
18
|
- ente-auth
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-08
|
|
4
|
-
updated: 2025-
|
|
5
|
-
title: FOSS Spotlight
|
|
4
|
+
updated: 2025-07-27
|
|
5
|
+
title: 'FOSS Spotlight: Squircle CE'
|
|
6
6
|
summary:
|
|
7
7
|
Looking for a lightweight, open-source text editor that actually respects your
|
|
8
8
|
privacy and still packs modern power? Meet Squircle CE!
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-12
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: What’s a Backdoor in Encryption?
|
|
5
6
|
summary:
|
|
6
7
|
What's a Backdoor in Encryption? Why It Matters to Everyone Using the Internet
|
|
@@ -10,7 +11,7 @@ categories:
|
|
|
10
11
|
- Security
|
|
11
12
|
- Privacy
|
|
12
13
|
tags:
|
|
13
|
-
-
|
|
14
|
+
- cybersecurity
|
|
14
15
|
- privacy
|
|
15
16
|
- encryption
|
|
16
17
|
- e2ee
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-16
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'FOSS Spotlight: Cryptomator'
|
|
5
6
|
summary: 'FOSS Spotlight: Cryptomator - Vault Up Your Cloud Privacy'
|
|
6
7
|
authors:
|
|
@@ -16,7 +17,7 @@ tags:
|
|
|
16
17
|
- foss-spotlight
|
|
17
18
|
- open-source
|
|
18
19
|
- privacy
|
|
19
|
-
-
|
|
20
|
+
- cybersecurity
|
|
20
21
|
- android
|
|
21
22
|
- windows
|
|
22
23
|
- linux
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-06-23
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'Encryption is not a loophole'
|
|
5
6
|
summary:
|
|
6
7
|
Encryption is not a loophole. It's a lifeline. Act now to protect encryption!
|
|
@@ -12,7 +13,6 @@ categories:
|
|
|
12
13
|
- Policy
|
|
13
14
|
tags:
|
|
14
15
|
- privacy
|
|
15
|
-
- security
|
|
16
16
|
- cybersecurity
|
|
17
17
|
- encryption
|
|
18
18
|
- eff
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-07-17
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'FOSS Spotlight: Copy SMS Code - OTP Helper'
|
|
5
6
|
summary:
|
|
6
7
|
Copy SMS Code – OTP Helper is a minimalist Android app that takes care of
|
|
@@ -16,7 +17,7 @@ tags:
|
|
|
16
17
|
- foss-spotlight
|
|
17
18
|
- open-source
|
|
18
19
|
- privacy
|
|
19
|
-
-
|
|
20
|
+
- cybersecurity
|
|
20
21
|
- android
|
|
21
22
|
- otp-helper
|
|
22
23
|
- sms
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2025-07-27
|
|
4
|
+
updated: 2025-07-27
|
|
4
5
|
title: 'UK Reverses Course on Apple Cloud Encryption Demands'
|
|
5
6
|
summary:
|
|
6
7
|
The UK government has paused its proposal to compel Apple to weaken encryption
|
|
@@ -24,7 +25,7 @@ tags:
|
|
|
24
25
|
|
|
25
26
|
# 🔒 UK Reverses Course on Apple Cloud Encryption Demands
|
|
26
27
|
|
|
27
|
-
## 📢 _Important update for tech, legal, and policy
|
|
28
|
+
## 📢 _Important update for tech, legal, and policy professionals_
|
|
28
29
|
|
|
29
30
|
The UK government has **paused its proposal** to compel Apple to **weaken
|
|
30
31
|
encryption on its cloud storage services** — a move that would have had sweeping
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
---
|
|
2
2
|
date:
|
|
3
3
|
created: 2015-01-04
|
|
4
|
-
updated: 2025-
|
|
4
|
+
updated: 2025-07-27
|
|
5
5
|
title: Secure Secure Shell
|
|
6
6
|
summary: Secure shell (SSHD) hardening guide.
|
|
7
7
|
authors:
|
|
8
8
|
- team
|
|
9
9
|
categories:
|
|
10
10
|
- Security
|
|
11
|
+
- Implementation
|
|
11
12
|
tags:
|
|
12
|
-
-
|
|
13
|
-
-
|
|
13
|
+
- cybersecurity
|
|
14
|
+
- guides
|
|
14
15
|
---
|
|
15
16
|
|
|
16
17
|
# Secure Secure Shell
|
package/src/sitemap.xml
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
<loc>https://blog.netwk.pro/2025/07/17/foss-spotlight-copy-sms-code---otp-helper/</loc>
|
|
35
35
|
|
|
36
|
-
<lastmod>2025-07-
|
|
36
|
+
<lastmod>2025-07-27</lastmod>
|
|
37
37
|
|
|
38
38
|
<changefreq>monthly</changefreq>
|
|
39
39
|
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
|
|
94
94
|
<loc>https://blog.netwk.pro/2025/06/23/encryption-is-not-a-loophole/</loc>
|
|
95
95
|
|
|
96
|
-
<lastmod>2025-
|
|
96
|
+
<lastmod>2025-07-27</lastmod>
|
|
97
97
|
|
|
98
98
|
<changefreq>monthly</changefreq>
|
|
99
99
|
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
|
|
106
106
|
<loc>https://blog.netwk.pro/2025/06/16/foss-spotlight-cryptomator/</loc>
|
|
107
107
|
|
|
108
|
-
<lastmod>2025-
|
|
108
|
+
<lastmod>2025-07-27</lastmod>
|
|
109
109
|
|
|
110
110
|
<changefreq>monthly</changefreq>
|
|
111
111
|
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
|
|
118
118
|
<loc>https://blog.netwk.pro/2025/06/12/whats-a-backdoor-in-encryption/</loc>
|
|
119
119
|
|
|
120
|
-
<lastmod>2025-
|
|
120
|
+
<lastmod>2025-07-27</lastmod>
|
|
121
121
|
|
|
122
122
|
<changefreq>monthly</changefreq>
|
|
123
123
|
|
|
@@ -127,9 +127,9 @@
|
|
|
127
127
|
|
|
128
128
|
<url>
|
|
129
129
|
|
|
130
|
-
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight
|
|
130
|
+
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight-squircle-ce/</loc>
|
|
131
131
|
|
|
132
|
-
<lastmod>2025-
|
|
132
|
+
<lastmod>2025-07-27</lastmod>
|
|
133
133
|
|
|
134
134
|
<changefreq>monthly</changefreq>
|
|
135
135
|
|
|
@@ -163,9 +163,9 @@
|
|
|
163
163
|
|
|
164
164
|
<url>
|
|
165
165
|
|
|
166
|
-
<loc>https://blog.netwk.pro/2025/05/29/foss-spotlight
|
|
166
|
+
<loc>https://blog.netwk.pro/2025/05/29/foss-spotlight-heliboard/</loc>
|
|
167
167
|
|
|
168
|
-
<lastmod>2025-
|
|
168
|
+
<lastmod>2025-07-27</lastmod>
|
|
169
169
|
|
|
170
170
|
<changefreq>monthly</changefreq>
|
|
171
171
|
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
|
|
178
178
|
<loc>https://blog.netwk.pro/2025/05/29/microsoft-authenticator-users---major-change-incoming/</loc>
|
|
179
179
|
|
|
180
|
-
<lastmod>2025-
|
|
180
|
+
<lastmod>2025-07-27</lastmod>
|
|
181
181
|
|
|
182
182
|
<changefreq>monthly</changefreq>
|
|
183
183
|
|