chore: release packages 📦#35
Merged
essential-randomness merged 1 commit intomainfrom Apr 30, 2026
Merged
Conversation
1bdc336 to
07a9477
Compare
07a9477 to
801d0f1
Compare
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.
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
@fujocoded/astro-atproto-loader@0.2.0
Minor Changes
54edfb5: Rework the loaders for better ergonomics and typing. Featuring breaking changes!
atProtoLiveLoader→defineAtProtoLiveCollectionatProtoStaticLoader→defineAtProtoCollectionNew capabilities:
repo+collectionpairs in one collection, withvaluediscriminated oncollectioninsidefilter/transform.parseRecordfor$parse-style lexicon validation; failures drop the single record without failing the source.groupBy+ groupedtransformfor merging records across sources under a shared key (e.g. post + reposts).fetchRecordhydrator passed to every callback, with per-cycle request deduping.onSourceErrorpolicy ('throw' | 'skip' | fn)limit: number | 'all'andmaxPagesfor explicit pagination control.@fujocoded/atproto-badges@0.2.0
Minor Changes
@fujocoded/atproto-badges— ATProto badge attestation utilities for creating, signing, and verifying badges per the badge.blue specification.@fujocoded/remark-capitalize-titles@0.1.0
Minor Changes
9439b7a: Lowercase the second-and-later segments of a hyphenated compound during title
casing, so output follows AP-style ("Three-way Merges", "Pre-commit Hooks",
"Up-to-date") instead of capitalizing every segment ("Three-Way", "Pre-Commit",
"Up-To-Date"). A segment is kept capitalized when either the full compound or
the individual segment is listed in
special.This is a breaking change for callers that expected every segment of a
hyphenated word to be capitalized.
Patch Changes
remark-smartypants). Previously, the upstreamtitlelibrary only recognizedstraight quotes as punctuation, so a word following a curly
“or’wouldstay lowercase. The plugin now converts curly quotes to straight quotes before
title-casing, then restores the original curly characters in the output.
@fujocoded/authproto@0.3.1
Patch Changes
7e3f1e7: Fix custom-redirect / referer parsing in the OAuth callback so encoded
redirectandreferervalues are no longer silently dropped on login.7e3f1e7: Fix custom-redirect / referer state parsing in the OAuth callback. The OAuth client wraps our state under an opaque key in the URL
stateparam and returns the original value asclientCallback.state, so we now read from there instead ofrequestUrl.searchParams.get("state")— which was always the wrapped value and never parsed as JSON.Also improve
astro-authprotoREADME and02-read-bsky-profileexample:sessiondriver setup and full integration config in install steps.applicationDomainshould be the full URL with scheme (e.g.https://example.com, orhttp://127.0.0.1:4321locally).getBlueskyAgentfrom@fujocoded/authproto/helpersinstead of constructingAtpBaseClientdirectly, and fix the avataraltto use a JSX expression.7e3f1e7: Use Astro's actual dev server port for the OAuth callback URL in development
instead of always assuming
4321. If you runastro dev --port 4322(or setserver.portin your Astro config), Authproto now points OAuth at the rightlocal URL.