Commit graph

3 commits

Author SHA1 Message Date
senke
b33227a579 fix(ci): bump go.work to 1.25 to match veza-backend-api/go.mod
Backend Go CI was still failing on 3d1f127ad with:

  go: module . listed in go.work file requires go >= 1.25.0,
  but go.work lists go 1.24.0; to update it: go work use

The go.mod of veza-backend-api was bumped to 1.25.0 in bec75f143
("ci: bump Go to 1.25 and fix goimports drift"), but go.work at the
repo root was never updated to match. The previous CI runs tolerated
the mismatch through toolchain auto-download at the cost of ~3 min
per job; today's dependency bumps (3d1f127ad) apparently pulled a
directive that flips Go into strict mode and makes the mismatch fatal.

Local go.work had been updated to 1.25.0 automatically by `go get`
during the dep bumps but was never staged, so the previous commit
shipped go.work still at 1.24.0. This commit stages the one-line
version bump that go had already applied locally.
2026-04-15 15:06:50 +02:00
senke
b103a09a25 chore: consolidate CI, E2E, backend and frontend updates
- CI: workflows updates (cd, ci), remove playwright.yml
- E2E: global-setup, auth/playlists/profile specs
- Remove playwright-report and test-results artifacts from tracking
- Backend: auth, handlers, services, workers, migrations
- Frontend: components, features, vite config
- Add e2e-results.json to gitignore
- Docs: REMEDIATION_PROGRESS, audit archive
- Rust: chat-server, stream-server updates
2026-02-17 16:43:21 +01:00
senke
afea976f57 chore: add go.work and optional monorepo orchestrator 2026-02-14 18:21:39 +01:00