Skip to content

Commit 7d1a573

Browse files
committed
release: v1.6.4
The installer's DNS-port check warned that xray was blocking xray's own DNS port. Shipped in 1.6.2 and seen on every upgrade of a healthy box since: the check catches something squatting on UDP/5353, and on an upgrade the process holding it is the one that is supposed to. Tagged rather than left on master so the fix is traceable to a version — the installer is fetched from master and was already correct, but a box reporting 1.6.3 gives no way to tell whether it has this.
1 parent ba92185 commit 7d1a573

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable user-facing changes to PiTun. Full per-release detail lives in the
44
[GitHub Releases](https://github.com/DaveBugg/PiTun/releases); this file is the
55
committed summary.
66

7+
## v1.6.4 — 2026-08-15
8+
9+
### Fixed
10+
11+
- **The installer warned that xray was blocking xray's own DNS port.** The
12+
check exists to catch something squatting on UDP/5353, which PiTun's DNS
13+
needs. On an upgrade the process holding it is xray — it *is* that DNS — so
14+
every operator of a healthy box was told their DNS would not start, with
15+
the pid of the process already serving it offered as evidence. It now
16+
ignores xray and still reports anything else, including something listening
17+
alongside it.
18+
719
## v1.6.3 — 2026-08-14
820

921
**Country flags on nodes actually appear now** — and look the same on every

backend/app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# OpenAPI metadata, `/health` response, and `/system/status` so the
66
# frontend can display it next to the xray version. Bump this on each
77
# release — frontend keeps its own version in `frontend/package.json`.
8-
APP_VERSION = "1.6.3"
8+
APP_VERSION = "1.6.4"
99

1010

1111
class Settings(BaseSettings):

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pitun-frontend",
33
"private": true,
4-
"version": "1.6.3",
4+
"version": "1.6.4",
55
"license": "BSD-3-Clause",
66
"type": "module",
77
"scripts": {

0 commit comments

Comments
 (0)