fix(platform): sync dashboard footer version (v1.4.3)#97
Merged
Conversation
The footer renders platform/package.json's version via NEXT_PUBLIC_BUILD_VERSION, but that file was never part of the release checklist, so it sat at 1.0.7 while the product shipped v1.4.x. Bump it to the product version and add platform/package.json to the release checklist so the footer tracks releases going forward. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.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.
The dashboard footer showed v1.0.7 while the product shipped v1.4.x.
Root cause
The footer renders
platform/package.json's version (viaNEXT_PUBLIC_BUILD_VERSIONinnext.config.ts), butplatform/package.jsonwas never part of the release checklist — onlypyproject.tomlandiris/cli.pyget bumped. So it sat at1.0.7from the original scaffold.Fix
platform/package.json→1.4.3(footer now readsv1.4.3 (<sha>)).platform/package.jsonto the Release Checklist inCLAUDE.mdso the footer tracks releases going forward.pyproject.toml+iris/cli.pyto1.4.3and added a CHANGELOG entry (patch release).Release checklist:
pyproject.toml→1.4.3iris/cli.py→VERSION = "v1.4.3"platform/package.json→1.4.3CHANGELOG.mdentryv1.4.3after merge🤖 Generated with Claude Code