chore: upgrade Go from 1.25.7 to 1.26.5
CI / Go vulnerabilities (push) Failing after 54s
CI / Frontend build (gate) (push) Successful in 59s
CI / Build & Vet (push) Successful in 1m40s
CI / Frontend audit (push) Successful in 39s
CI / Tests (prod) (push) Has been skipped
CI / Tests (dev) (push) Has been skipped
CI / Race (prod) (push) Has been skipped
CI / Race (dev) (push) Has been skipped
CI / Frontend typecheck (push) Successful in 1m0s
CI / Frontend lint (push) Successful in 1m23s

Go 1.26.5 released Jul 7, 2026. Includes security fix for GO-2026-5856 (crypto/tls ECH leak). Updates: CI runner (4x setup-go), go.mod, README, obsidian docs.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-07-09 17:11:49 +01:00
co-authored by Sisyphus
parent f59b7df97f
commit c344d6c54d
4 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: "1.25" go-version: "1.26.5"
cache: false cache: false
- name: Cache Go modules - name: Cache Go modules
@@ -87,7 +87,7 @@ jobs:
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: "1.25" go-version: "1.26.5"
cache: false cache: false
- name: Cache Go modules - name: Cache Go modules
@@ -154,7 +154,7 @@ jobs:
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: "1.25" go-version: "1.26.5"
cache: false cache: false
- name: Cache Go modules - name: Cache Go modules
@@ -201,7 +201,7 @@ jobs:
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: "1.25" go-version: "1.26.5"
cache: false cache: false
- name: Cache Go modules - name: Cache Go modules
+1 -1
View File
@@ -1,6 +1,6 @@
# Crussell # Crussell
Nail salon booking platform — Go 1.25 backend + SvelteKit 5 SPA + PostgreSQL 17 + Docker. Built for a UK sole-trader nail artist. UK-only (Cloudflare geo-block), UK phone format. All timestamps UTC-normalised — the backend's `clock.Now()` returns UTC, the DB connection uses `timezone = "UTC"`, and the frontend converts between UTC and wall-clock time client-side. Single-employee business. Nail salon booking platform — Go 1.26.5 backend + SvelteKit 5 SPA + PostgreSQL 17 + Docker. Built for a UK sole-trader nail artist. UK-only (Cloudflare geo-block), UK phone format. All timestamps UTC-normalised — the backend's `clock.Now()` returns UTC, the DB connection uses `timezone = "UTC"`, and the frontend converts between UTC and wall-clock time client-side. Single-employee business.
## Features ## Features
+1 -1
View File
@@ -1,6 +1,6 @@
module crussell module crussell
go 1.25.7 go 1.26.5
require ( require (
github.com/aws/aws-sdk-go-v2 v1.42.0 github.com/aws/aws-sdk-go-v2 v1.42.0
+2 -2
View File
@@ -1,6 +1,6 @@
# Crussell — Overview # Crussell — Overview
Full-stack booking platform for a UK sole-trader nail artist. Go 1.25 backend, SvelteKit 5 SPA frontend, PostgreSQL 17, Docker Compose. UK-only (Cloudflare geo-blocks non-UK). All timestamps UTC-normalised — the backend's `clock.Now()` returns `time.Now().UTC()`, the DB connection uses `timezone = "UTC"`, and the frontend converts between UTC and the browser's local wall-clock time via `formatLocalDateTime()` / `parseWallClockDate()`. No timezone conversion ambiguity — times shown are always UK wall-clock times. Full-stack booking platform for a UK sole-trader nail artist. Go 1.26.5 backend, SvelteKit 5 SPA frontend, PostgreSQL 17, Docker Compose. UK-only (Cloudflare geo-blocks non-UK). All timestamps UTC-normalised — the backend's `clock.Now()` returns `time.Now().UTC()`, the DB connection uses `timezone = "UTC"`, and the frontend converts between UTC and the browser's local wall-clock time via `formatLocalDateTime()` / `parseWallClockDate()`. No timezone conversion ambiguity — times shown are always UK wall-clock times.
--- ---
@@ -136,7 +136,7 @@ Campaign lifecycle: `draft → active → completed` (or any → `cancelled`, `a
| Tool | Version | Notes | | Tool | Version | Notes |
|------|---------|-------| |------|---------|-------|
| Docker & Docker Compose | >= 20.10 | Compose V2 (`docker compose`, not `docker-compose`) | | Docker & Docker Compose | >= 20.10 | Compose V2 (`docker compose`, not `docker-compose`) |
| Go | >= 1.22 | Tested with 1.25 | | Go | >= 1.22 | Tested with 1.26.5 |
| Node | >= 18 | For frontend build | | Node | >= 18 | For frontend build |
| tmux | >= 3.0 | For local-dev-2.sh dev helper | | tmux | >= 3.0 | For local-dev-2.sh dev helper |
| psql | Any | Optional — for direct DB inspection during dev | | psql | Any | Optional — for direct DB inspection during dev |