feat(booking): invitee tz-picker offers full IANA list (e.g. Asia/Jerusalem) - #102
Merged
Conversation
…usalem)
Source #tz-picker ZONES from Intl.supportedValuesOf('timeZone') with the
curated 19-zone array kept as a pre-2022 fallback. No server change.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016v2kDyr9tDL5v6K7QBJwcU
…gate) 3.38.0 pulls fixed netty 4.1.136.Final (CVE-2026-59901/55851/55831/55833/56745) and postgresql 42.7.13 (CVE-2026-54291). 3.38.0 still ships jackson-core 2.22.0, so pin 2.22.1 ahead of the BOM import (GHSA-r7wm-3cxj-wff9). Trivy fs clean, 775 tests green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016v2kDyr9tDL5v6K7QBJwcU
|
1 task
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.



What
Invitee timezone picker on the public booking page (
#tz-picker) now offers any IANA zone (e.g.Asia/Jerusalem), not just the 19 hardcoded ones.How
Layout.TZ_SCRIPTsourcesZONESfrom the browser'sIntl.supportedValuesOf('timeZone')— the full canonical list the browser can actually render viatoLocaleString({timeZone}). The old curated 19-zone array is kept as acatchfallback for pre-2022 browsers that lacksupportedValuesOf. No Java signature / server change; owner-facing dropdowns already usedZoneId.getAvailableZoneIds().Tests
New stable markers
CALIT_TZ_FULL_LIST+supportedValuesOfasserted inLayoutLocaleMarkerTest. tz-marker regression suite green (20 tests: LayoutLocaleMarkerTest, BookPageTest, BookingPostTest, ManageBookingTest). RestAssured can't run JS — behavior in a real browser is a manual check (load a booking page on a non-Jerusalem OS zone, confirmAsia/Jerusalemselectable + reformats).Follow-ups (not blocking)
docs-sitebranch on next release.🤖 Generated with Claude Code