A library for handling DID identifiers used in Bluesky AT Protocol
1
fork

Configure Feed

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

release 0.3.1

+9 -1
+8
CHANGELOG.md
··· 1 + ## [0.3.1] - 2025-12-19 2 + 3 + - allow passing a DID string or object to `#resolve_handle` and just return that DID – so you can have a script that accepts either a handle or a DID, and passes the input to `DID.resolve_handle` without checking which one it is 4 + - allow passing another DID object to `DID.new` and return a copy of that DID 5 + - parse `seq` field in `PLCOperation` if included and expose it as a property 6 + - fixed some errors on Rubies older than 3.2 due to missing `filter_map` and `URI#origin` 7 + - `PLCOperation` verifies if the argument is a `Hash` 8 + 1 9 ## [0.3.0] - 2025-12-15 2 10 3 11 Breaking changes:
+1 -1
lib/didkit/version.rb
··· 1 1 # frozen_string_literal: true 2 2 3 3 module DIDKit 4 - VERSION = "0.3.0" 4 + VERSION = "0.3.1" 5 5 end