@networkpro/web 1.13.5 → 1.13.6
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/CHANGELOG.md +18 -0
- package/bootstrap.local.sh +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,24 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.13.6] - 2025-06-15
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Introduced `.github/workflows/check-codeql.yml` reusable workflow to validate successful CodeQL analysis during CI
|
|
30
|
+
- Added `.github/workflows/templates/check-codeql.template.yml` for documentation and workflow templating purposes
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Replaced inline `check-codeql` job in `.github/workflows/build-and-publish.yml` with call to reusable workflow
|
|
35
|
+
- Updated `.node-version` and `.nvmrc` from `24.1.0` → `24.2.0` to reflect upgraded Node.js binary
|
|
36
|
+
- Replaced `ℹ️` symbol with `🛈` in `bootstrap.local.sh` to improve clarity in terminals
|
|
37
|
+
- Version bumped to **v1.13.6**
|
|
38
|
+
- Upgraded dependencies:
|
|
39
|
+
- `posthog-js` updated from `1.252.0` → `1.252.1`
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
25
43
|
## [1.13.5] - 2025-06-14
|
|
26
44
|
|
|
27
45
|
### Added
|
package/bootstrap.local.sh
CHANGED
|
@@ -31,7 +31,7 @@ fi
|
|
|
31
31
|
if [[ "$PLATFORM" == "windows" ]]; then
|
|
32
32
|
if [[ -z "${BASH_VERSION:-}" ]]; then
|
|
33
33
|
echo "⚠️ Detected native Windows shell (e.g., CMD or PowerShell)."
|
|
34
|
-
echo "
|
|
34
|
+
echo "🛈 Please use WSL or Git Bash for full compatibility with this script."
|
|
35
35
|
exit 1
|
|
36
36
|
else
|
|
37
37
|
echo "🪟 Detected Git Bash or compatible shell on Windows."
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.13.
|
|
4
|
+
"version": "1.13.6",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"dompurify": "^3.2.6",
|
|
83
|
-
"posthog-js": "^1.252.
|
|
83
|
+
"posthog-js": "^1.252.1",
|
|
84
84
|
"semver": "^7.7.2",
|
|
85
85
|
"svelte": "5.34.3"
|
|
86
86
|
},
|