docs(changelog): add Story 36.5 nightly CI entry to [Unreleased]#65
Merged
ALLiDoizCode merged 1 commit intomainfrom May 8, 2026
Merged
docs(changelog): add Story 36.5 nightly CI entry to [Unreleased]#65ALLiDoizCode merged 1 commit intomainfrom
ALLiDoizCode merged 1 commit intomainfrom
Conversation
The prepublishOnly test suite (story-36-5-nightly-ci-validation.test.ts AC 14) asserts that [Unreleased] contains a reference to Story 36.5 and "nightly". That entry was missing — the section only had the multi-arch build note from PR #63. Adding the nightly-ator.yml entry alongside it so both the AC 14 assertion and the build note co-exist correctly. docs: maps to release: false in .releaserc.json — no version bump.
|
🎉 This PR is included in version 3.6.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
5 tasks
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.
Problem
npm publish(triggered by the v3.5.1 release in run #25521561656) failed inprepublishOnly → npm test:Root cause chain:
## [Unreleased]with only the multi-arch build notefix:commit triggered a v3.5.1 release →npm publish→prepublishOnly→npm teststory-36-5-nightly-ci-validation.test.tsAC 14 checks that[Unreleased]matches/36[.-]5/and/nightly/iStory 36.5's AC 14 required a
### Addedentry referencing the nightly-ator workflow. That entry was missing from[Unreleased].Fix
Add the Story 36.5 nightly CI entry under
### Addedin[Unreleased], alongside the existing multi-arch### Buildnote.Why
docs:commit typedocs:maps torelease: falsein.releaserc.json— no version bump, no new release, nonpm publishtriggered. The next organicfeat/fixrelease will runprepublishOnlywith the corrected[Unreleased]section and the AC 14 test will pass.