Prepare next release - #60
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 23, 2026 23:44
105fa1c to
1ee578d
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
@germ-network/atprotoclient@0.11.0
Minor Changes
#58
18c070dThanks @germ-mark! - Add three Bluesky read helpers onAtproto.XRPC.BskyAppCallable:relationshipLookup(actor:others:), which reports whichapp.bsky.graph.getRelationshipssubjects the AppView returned a relationship for and which it didn't (unlikegetRelationships(actor:subjects:), which drops every not-found subject and loses which ones they were) - note that this isn't an account-existence check, since the AppView returns a relationship entry for any well-formed DID whether or not the account exists; andbskyProfileIfExists(actor:), which mapsapp.bsky.actor.getProfile's undeclared not-found shape (a 400InvalidRequestwhose message is "Profile not found") tonilrather than throwing. Also addAtproto.BskyCDN.imageURL(_:did:blob:host:)to build Bluesky CDN image URLs from a blob reference.Also fix
Lexicon.App.Bsky.Graph.GetRelationships.Parameters.initto accept exactly 30others, matching the lexicon'sothers.maxLength: 30- it previously rejected exactly 30, and makeLexicon.App.Bsky.Graph.GetRelationships.Errors(tooManyOthersInput,actorMismatch) public - it's already thrown by public API.#57
f19d608Thanks @germ-mark! - Add DNS-over-HTTPS TXT and well-known atproto-did handle-resolution components:Atproto.WellKnownHandleResolverandAtproto.DnsHandleResolver, plus the underlyingAtproto.DNSWireFormatcodec,Atproto.DNSTXTFetcherprotocol, andAtproto.DoHTXTFetcherconformer they're built on. Together these implement the two handle-resolution methods from the atproto handle spec (https://atproto.com/specs/handle) - the DNS TXT method and the HTTPS well-known method - as standalone, portable,Sendablecomponents matchingDidWebResolver/DidPlcResolver's conventions: redirect refusal, response-size bounds, and the resolved value parsed as anAtproto.DID(method form checked viaAtproto.DID.init(string:)).Patch Changes
0706814Thanks @germ-mark! - Require GermConvenience 0.11.0, whoseURLSession.manualRedirect()also refuses redirects on Linux and Android. The DID resolvers screen the host once, before the request, so they depend on redirects not being followed.