chore: release 0.10.1#9
Closed
abnegate wants to merge 1 commit into
Closed
Conversation
GitHub's cached source archive for the 0.10.0 commit (fc6e786) is truncated: it has no end-of-central-directory record, so every consumer resolving the Packagist dist URL gets an unopenable zip and composer install fails with ZipArchive error 35. The corruption is server-side and reproducible across fetches, and archives are keyed by commit sha, so re-tagging fc6e786 would serve the same broken artifact. This commit exists only to produce a new sha to tag, so 0.10.1 gets a freshly generated archive. No code changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
Author
|
Wrong repo — this is a read-only mirror of utopia-php/monorepo. Redoing this in the monorepo as a tagged |
|
Thanks for contributing! This repository is a read-only mirror; development for this library happens in |
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.
What
An empty commit to tag as
0.10.1. No code changes.Why
GitHub's cached source archive for the
0.10.0commit (fc6e786) is corrupt. It is served truncated with no end-of-central-directory record, so it cannot be opened byunziporZipArchive:This is the URL
api.github.com/repos/utopia-php/auth/zipball/<sha>redirects to, which is the dist URL Packagist hands to Composer. Every consumer installingutopia-php/auth:0.10.0with--prefer-disttherefore fails:Error 35 is libzip's truncated-archive code. This is currently blocking Appwrite Cloud production deploys.
Verification
The corruption is server-side, stable, and scoped to this one commit's archive:
legacy.zip/fc6e786(Composer's dist)zip/fc6e786(normal endpoint)zipball/0.9.0zipball/mainWhy an empty commit
Archives are keyed by commit sha, and
mainis currently at exactly the0.10.0tag. Re-tagging that commit would serve the same broken artifact, so a new sha is required to get GitHub to generate a fresh archive.🤖 Generated with Claude Code