Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
cache: npm
cache-dependency-path: package-lock.json

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
- name: Set up Node.js for npmjs
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
registry-url: https://registry.npmjs.org/
cache: npm
cache-dependency-path: package-lock.json
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
- name: Set up Node.js for GPR
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
registry-url: https://npm.pkg.github.com/
cache: npm
cache-dependency-path: package-lock.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
cache: npm
cache-dependency-path: package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/meta-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
cache: npm
cache-dependency-path: package-lock.json

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
cache: npm
cache-dependency-path: package-lock.json

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Set up Node.js for npmjs
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
registry-url: https://registry.npmjs.org/
cache: npm
cache-dependency-path: package-lock.json
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
- name: Set up Node.js for GPR
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
registry-url: https://npm.pkg.github.com/
cache: npm
cache-dependency-path: package-lock.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/templates/publish.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
cache: npm
cache-dependency-path: package-lock.json

Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Set up Node.js for npmjs
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
registry-url: https://registry.npmjs.org/
cache: npm
cache-dependency-path: package-lock.json
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Set up Node.js for GPR
uses: actions/setup-node@v5
with:
node-version: 24
node-version: 22
registry-url: https://npm.pkg.github.com/
cache: npm
cache-dependency-path: package-lock.json
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*.local
list-devices.js
devices-list.json
vercel.json


# SvelteKit
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.9.0
22.20.0
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.9.0
22.20.0
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,39 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en

---

## [1.18.0] - 2025-09-27

### Changed

- Bumped version to `v1.18.0`
- Updated Node.js version in `.node-version` and `.nvmrc` to `22.20.0` for compatibility with Vercel.
- Updated CI workflows to utilize `node-version: 22`:
- `build-and-publish.yml`
- `lighthouse.yml`
- `meta-check.yml`
- `playwright.yml`
- `publish-test.yml`
- `templates/publish.template.yml`
- Migrated hosting and serverless functions from **Netlify** to **Vercel**.
- Updated deployment configuration to use `@sveltejs/adapter-vercel` in place of
`@sveltejs/adapter-netlify`.
- Cleaned up Netlify-specific files and settings:
- Removed `netlify.toml` and Netlify plugin configuration.
- Removed unused SMTP-related environment variables (`SMTP_*`, `MAIL_ENABLED`,
`NOTIFY_EMAIL`).
- Replaced `_redirects` with Vercel-managed redirects and rewrites in
`vercel.json`.
- Updated environment configuration to define `ENV_MODE` within Vercel project
settings.
- Adjusted `engines.npm` requirement in `package.json` from `>=11.0.0 <12` to `>=10.0.0 <12` for compatibility with Vercel.

### Removed

- Deleted `netlify.toml` and `_redirects`.
- Removed `vercel.json` from `.gitignore`.

---

## [1.17.2] - 2025-09-27

### Changed
Expand Down Expand Up @@ -873,7 +906,8 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en

<!-- Link references -->

[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.17.2...HEAD
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.18.0...HEAD
[1.18.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.18.0
[1.17.2]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.2
[1.17.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.1
[1.17.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.0
Expand Down
17 changes: 0 additions & 17 deletions _redirects

This file was deleted.

19 changes: 0 additions & 19 deletions netlify.toml

This file was deleted.

Loading
Loading