release: v1.4.2 — resurrect v1.4.1 work + bug-fix triple#152
Merged
Conversation
This reverts commit e444a90.
…k IPv4 Three production bugs surfaced after the v1.4.0 deploy stabilized: 1. `TypeError: undefined is not an object (evaluating 'E?.summaries.WEIGHT')` on /dashboard and /insights for users without weight readings — the optional chain stopped at `data` when it needed to also cover `data.summaries`. Fixed: `data?.summaries?.WEIGHT` (one level deeper). 2. `TypeError: y?.filter is not a function` on /medications — the medications query value was non-array (likely a stale service-worker response from an older API shape). Replaced with `Array.isArray(medications) ? medications : []` so the page is immune to any future shape drift. 3. Healthcheck-induced 503 outage (already in 1.4.1 — included here so 1.4.2 is the single coherent release). The docker-compose healthcheck used `localhost` which busybox-wget resolves to IPv6 ::1; Next.js standalone listens on IPv4 0.0.0.0 only. Pinned to 127.0.0.1. This release also includes everything from v1.4.1 (which never published a clean GHCR tag): the per-section admin extraction, the testcontainers integration suite, the Playwright + axe-core E2E foundation, the moodLog SSRF fix, the central error-redaction in WideEventBuilder + Glitchtip, the medical-citation drift fixes (ESH 2023, Saint-Maurice attribution, steps source), and the docs sync. Co-Authored-By: Marc-André Bombeck <mbombeck@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Single coherent release: v1.4.1 marathon work resurrected + production bug triple fixed. docker-compose stays pinned to :1.4.0 until the :1.4.2 GHCR image is verified, then a follow-up commit will repin.