Uh oh!
There was an error while loading. Please reload this page.
π¦ New version release - #86
Merged
Merged
Conversation
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@smooai/file@2.2.20
Patch Changes
d4cb3a3: Three release and test traps that each report success while doing nothing.
go test ./...served a cached pass against a corrupted fixture. Go's build cache doesn't invalidate on a file loaded from outside the package directory, which is exactly the shape of the shared contract fixtures underspec/. Verified: zeroing everysha256and settingheadBytesto 999 still printedok (cached).go:testnow passes-count=1, and the same corruption fails immediately. Until this, the Go quarter of the five-port lazy contract proved nothing.release.ymlranpnpm formatin write mode. Whatever it rewrote was either swept into the release commit unreviewed, or β in publish mode, where the changesets action commits nothing β left the tree dirty forcargo publish --locked, which would fail every release now that--allow-dirtyis gone. The workflow now runsformat:check, and the formatting the release genuinely needs runs insidepnpm run version, before the action commits. Changesets' generatedCHANGELOG.mdis confirmed not oxfmt-clean, so without that orderingformat:checkwould redden every future release PR.Publishing to PyPI, crates.io, NuGet and the Go tag was gated on npm having published in the same run. If npm succeeded and a later step failed, the retry found nothing new for npm, so all four skipped β a green run that published nothing, stranding four ports on the previous release indefinitely. Each step is now gated on whether its own registry carries
package.json's version, so a retry ships exactly what is missing, and a final step fails the run if npm published a version the others didn't.