docs: add internal release changelog tracker#1340
Merged
Conversation
Prepare a private release-tracking table for OpenWork so changelog summaries can be reviewed in-repo before anything is published publicly.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
The following comment was made by an LLM, it may be inaccurate: |
Replace the release tracker table with oldest-to-newest markdown sections so new OpenWork releases can be appended more intuitively.
Replace top-level label bullets with subsections so release fields are easier to target while keeping list bullets only where they add structure.
Set the changelog and docs publication fields to explicit True or False values so the tracker has no ambiguous blanks.
Track text-line diff size and a normalized major/minor release summary so each release entry can describe both scope and user impact in a machine-friendly way.
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
changelog/release-tracker.mdas an internal OpenWork release-tracking file#### Lines of code changed since previous releaseand#### Release importanceto each entryMinor release: ...orMajor release: ...so downstream code can split on the first colonValidation
git diff --checkpython3 -c 'from pathlib import Path; text=Path("changelog/release-tracker.md").read_text(); assert "#### Lines of code changed since previous release" in text; assert "98 lines changed sincev0.11.99(58 insertions, 40 deletions)." in text; assert "1248 lines changed sincev0.11.100(933 insertions, 315 deletions)." in text; assert "Minor release:" in text; assert "Major release:" not in text; print("validated OpenWork line-count and release-importance sections")'Notes