From b75d7a8d7adbab6dbf0c51d8d4c710dc65b36c3c Mon Sep 17 00:00:00 2001 From: Forgejo Actions Date: Thu, 4 Jun 2026 15:36:38 -0700 Subject: [PATCH] Update changelog for v1.1.1 [skip ci] --- CHANGELOG.md | 7 +++++++ docs/changelog.d/+selfupdate-poll-tls.bugfix.md | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) delete mode 100644 docs/changelog.d/+selfupdate-poll-tls.bugfix.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b70b1..7784dfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [v1.1.1] - 2026-06-04 + +### Bug Fixes + +- Fix `hephd --self-update` never detecting releases: the release poll used the daemon's `reqwest` client, which is built without a TLS backend (`default-features = false`), so every HTTPS request to the forge failed (`release check failed: requesting forge releases/latest`). The poll now uses `ureq` — already a dependency, with a rustls/ring TLS stack that needs no system libraries (and no cmake/`aws-lc-sys`). Hub sync is unaffected (it is plain HTTP). + + ## [v1.1.0] - 2026-06-04 ### Features diff --git a/docs/changelog.d/+selfupdate-poll-tls.bugfix.md b/docs/changelog.d/+selfupdate-poll-tls.bugfix.md deleted file mode 100644 index 7097c0b..0000000 --- a/docs/changelog.d/+selfupdate-poll-tls.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix `hephd --self-update` never detecting releases: the release poll used the daemon's `reqwest` client, which is built without a TLS backend (`default-features = false`), so every HTTPS request to the forge failed (`release check failed: requesting forge releases/latest`). The poll now uses `ureq` — already a dependency, with a rustls/ring TLS stack that needs no system libraries (and no cmake/`aws-lc-sys`). Hub sync is unaffected (it is plain HTTP).