fix: replace schema version symlinks with HTTP middleware#644
Merged
Conversation
Replace filesystem symlinks (v2, v2.5, v1) with dynamic HTTP middleware that resolves version aliases at request time. This improves Docker compatibility where symlinks can cause issues. Changes: - Add version alias middleware that rewrites /v2.5/* → /2.5.1/* - Fix version matching bug: use semver parsing instead of string prefix matching - Add caching for version directory listing (60s TTL) - Add directory redirect middleware to serve /schemas/2.6.0/ → /schemas/2.6.0/index.json - Add schema discovery endpoint at GET /schemas/ with available versions and aliases - Remove createSymlink() function from build script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
bokelley
added a commit
that referenced
this pull request
Jan 6, 2026
Replace filesystem symlinks (v2, v2.5, v1) with dynamic HTTP middleware that resolves version aliases at request time. This improves Docker compatibility where symlinks can cause issues. Changes: - Add version alias middleware that rewrites /v2.5/* → /2.5.1/* - Fix version matching bug: use semver parsing instead of string prefix matching - Add caching for version directory listing (60s TTL) - Add directory redirect middleware to serve /schemas/2.6.0/ → /schemas/2.6.0/index.json - Add schema discovery endpoint at GET /schemas/ with available versions and aliases - Remove createSymlink() function from build script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>
BaiyuScope3
added a commit
that referenced
this pull request
Jan 7, 2026
Merged 32 commits from main including: - Schema: Allow additional properties for forward compatibility (#646) - Schema versioning: Replace symlinks with HTTP middleware (#644) - Workflow: Add schema sync to versioned docs (#639) - Addie: Home button fix, sidebar, thread flow improvements - Admin: PostHog integration, activity feed, engagement scoring - Slack: User mentions, leader names, channel fixes - Members: Search, intro emails, founding badge - Server: Company type validation, HTML entity parsing Conflicts resolved: - .github/workflows/sync-versioned-docs.yml: kept main version with schema sync - package-lock.json: accepted main version
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.
Summary
Test plan
🤖 Generated with Claude Code