Skip to content

Commit bf1240e

Browse files
authored
chore: release prep for v1.26.8 (#197)
* chore: release prep for v1.26.8 * docs: updated changelog
1 parent c43ad6b commit bf1240e

File tree

11 files changed

+433
-654
lines changed

11 files changed

+433
-654
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Upgrade npm
4646
run: |
4747
corepack enable
48-
npm install -g npm@11.8.0
48+
npm install -g npm@11.9.0
4949
5050
- name: Install Node.js dependencies
5151
run: npm ci
@@ -130,7 +130,7 @@ jobs:
130130
- name: Upgrade npm
131131
run: |
132132
corepack enable
133-
npm install -g npm@11.8.0
133+
npm install -g npm@11.9.0
134134
135135
- name: Install Node.js dependencies
136136
run: npm ci
@@ -186,7 +186,7 @@ jobs:
186186
- name: Upgrade npm
187187
run: |
188188
corepack enable
189-
npm install -g npm@11.8.0
189+
npm install -g npm@11.9.0
190190
191191
- name: Install Node.js dependencies
192192
run: npm ci

.github/workflows/lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Upgrade npm
5050
run: |
5151
corepack enable
52-
npm install -g npm@11.8.0
52+
npm install -g npm@11.9.0
5353
5454
- name: Clean previous Lighthouse reports
5555
run: |

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Upgrade npm
4242
run: |
4343
corepack enable
44-
npm install -g npm@11.8.0
44+
npm install -g npm@11.9.0
4545
4646
- name: Install Node.js dependencies
4747
run: npm ci

.github/workflows/publish-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Upgrade npm
4949
run: |
5050
corepack enable
51-
npm install -g npm@11.8.0
51+
npm install -g npm@11.9.0
5252
5353
- name: Install Node.js dependencies
5454
run: npm ci
@@ -134,7 +134,7 @@ jobs:
134134
- name: Upgrade npm
135135
run: |
136136
corepack enable
137-
npm install -g npm@11.8.0
137+
npm install -g npm@11.9.0
138138
139139
- name: Install Node.js dependencies
140140
run: npm ci
@@ -195,7 +195,7 @@ jobs:
195195
- name: Upgrade npm
196196
run: |
197197
corepack enable
198-
npm install -g npm@11.8.0
198+
npm install -g npm@11.9.0
199199
200200
- name: Install Node.js dependencies
201201
run: npm ci

.github/workflows/templates/publish.template.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Upgrade npm
5454
run: |
5555
corepack enable
56-
npm install -g npm@11.8.0
56+
npm install -g npm@11.9.0
5757
5858
- name: Install Node.js dependencies
5959
run: npm ci
@@ -134,7 +134,7 @@ jobs:
134134
- name: Upgrade npm
135135
run: |
136136
corepack enable
137-
npm install -g npm@11.8.0
137+
npm install -g npm@11.9.0
138138
139139
- name: Install Node.js dependencies
140140
run: npm ci
@@ -190,7 +190,7 @@ jobs:
190190
- name: Upgrade npm
191191
run: |
192192
corepack enable
193-
npm install -g npm@11.8.0
193+
npm install -g npm@11.9.0
194194
195195
- name: Install Node.js dependencies
196196
run: npm ci

.ncurc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This file is part of Network Pro.
3131
/** @type {import('npm-check-updates').RunOptions} */
3232
module.exports = {
3333
// Ignore specific dependencies (prevent upgrades)
34-
reject: ['prettier'],
34+
reject: ['eslint', '@eslint/js'],
3535

3636
// Always upgrade devDependencies as well
3737
dep: 'prod,dev',

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,28 @@ version increments reflecting both user-visible and operational impact.
2424

2525
---
2626

27+
## [1.26.8] - 2026-02-07
28+
29+
### Changed
30+
31+
- Refreshed timestamp for main route in `static/sitemap.xml`.
32+
- Updated all GitHub Actions workflows to utilize **npm 11.9.0**.
33+
- Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.50.2**.
34+
- Added `eslint` and `@eslint/js` to `.ncurc.js` **reject** list, pinned `v9.39.2` in `package.json`.
35+
- Bumped project version to `v1.26.8`.
36+
- Updated dependencies:
37+
- `posthog-js` `^1.336.4``^1.342.1`
38+
- `semver` `^7.7.3``^7.7.4`
39+
- `svelte` `5.49.1``5.50.0`
40+
- `@playwright/test` `^1.58.1``^1.58.2`
41+
- `@sveltejs/kit` `2.50.1``2.50.2`
42+
- `eslint-plugin-doc` `^62.5.0``^62.5.3`
43+
- `jsdom` `27.4.0``28.0.0`
44+
- `playwright` `^1.58.1``^1.58.2`
45+
- `stylelint` `^17.1.0``^17.1.1`
46+
47+
---
48+
2749
## [1.26.7] - 2026-02-01
2850

2951
### Changed
@@ -2369,7 +2391,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
23692391

23702392
<!-- Link references -->
23712393

2372-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.7...HEAD
2394+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.8...HEAD
2395+
[1.26.8]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.8
23732396
[1.26.7]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.7
23742397
[1.26.6]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.6
23752398
[1.26.5]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.5

0 commit comments

Comments
 (0)