๐Ÿ€ ATproto library for gleam
atproto library gleam
34

Configure Feed

Select the types of activity you want to include in your feed.

docs: prepend module name before each entry

kacaii.dev (Jul 11, 2026, 12:38 PM -0300) d01ae2b2 f19bbb6d

+13 -15
+12 -14
CHANGELOG.md
··· 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 - ## [Unreleased] 8 + ## [v2.0.0] - Unreleased 9 9 10 10 ### Added 11 11 12 - - `nsid` module for validating atproto namespaced identifiers 13 - - `at_uri` module for validating at-uris 14 - - `handle` module for validating atproto handles 12 + - [possum/nsid] Added a new module for validating atproto namespaced identifiers. 13 + - [possum/at_uri] Added a new module for validating at-uris. 14 + - [possum/handle] Added a new module for validating atproto handles. 15 15 16 16 ### Removed 17 17 18 - - `list_standard_documents` was removed, its functionality can be replace by 19 - calling `list_records` and passing the nsid as "standard.site.document" 18 + - [possum] Removed `list_standard_documents`, its functionality can be 19 + replace by calling `list_records` and passing the NSID as "standard.site.document". 20 20 21 21 ### Changed 22 22 23 - - All functions now use `prepend_header` instead of `set_header`. 24 - - Renamed `did.DidError` to `did.ParseError` 25 - - Rename `did.InvalidFormat` to `did.InvalidSyntax` 26 - - Rename `handle.InvalidFormat` to `handle.InvalidSyntax` 27 - - `resolve_handle` and `resolve_well_known_did` now take a `handle.Handle` as 28 - parameter instead of a regular `String` 29 - - `resolve_handle` now takes a `handle.Handle` as parameter instead of a `String` 30 - - Functions now take a parsed `nsid.Nsid` as the `collection` parameter 23 + - [possum/did] Renamed `did.DidError` to `did.ParseError`. 24 + - [possum/did] Rename `did.InvalidFormat` to `did.InvalidSyntax`. 25 + - [possuum] Functions now use `prepend_header` instead of `set_header`. 26 + - [possum] `resolve_well_known_did` now take a `handle.Handle` as parameter. 27 + - [possum] `resolve_handle` now takes a `handle.Handle` as parameter. 28 + - [possum] Functions now take a parsed `nsid.Nsid` as the "collection" parameter.
+1 -1
gleam.toml
··· 1 1 name = "possum" 2 - version = "1.0.9" 2 + version = "2.0.0" 3 3 4 4 description = "๐Ÿ€ ATproto library for gleam" 5 5 licences = ["Apache-2.0"]