confium 0.6.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 922db9bc620ddee90ba36a32d0c01d7a50dc13d685af98651288d7c913333af6
4
- data.tar.gz: a46a79237e9b643fd31ee0e1f9fcfdf0df3a1d3f846f7f66bf22273394029944
3
+ metadata.gz: 604e0df1709827705bdca8fabd5ac2c5bdb70eb1e32b550e7ad7bfca143d7dcc
4
+ data.tar.gz: b1d4eea58189c4e1acf7613c27efc23ea7a76ea6afb9a32b911f27d56dc45a7c
5
5
  SHA512:
6
- metadata.gz: 84d6d5f4c7822d46d7f96fbc0d25800de7fd6d9548542c4deb8f219ec291750d932d079211b9a2e6671aa998cb340b77a26bf1678aa6a7b94e33ecebf4f32fc0
7
- data.tar.gz: 1f95d17bf74f58728e280ca052519a2538afd1ec530538fc1aa7ebb6bdce2e60dcf7bd4b9c170db572634a23622b5b228d810548e4c89bde2c624a02fc6beb6c
6
+ metadata.gz: e07456a3f0a1c4499290372d238fd15e173e578deabb01de7bea5c5b6c014495eab86b962c71f33fb3f21c9d2f9124dd982373c5e7df404c011955180d136b1f
7
+ data.tar.gz: 2ee41a6707200f709086c9ae63d73554f2aa8836abf06c732a1ac904fded30baece97813b50a8229c2a351ea3cf0430d2265d3f93b06aa49daa4f8447c67e037
data/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.7.0] — 2026-09-07
4
+
5
+ ### Added
6
+
7
+ - `Confium::Transport::SignerClient` / `CoordinatorServer` —
8
+ coordinator sessions over any registry transport the extension
9
+ links, addressed by URL: `tcp://host:port` for local/trusted
10
+ networks, `noise://host:port` for Noise_XX
11
+ (`Noise_XX_25519_ChaChaPoly_BLAKE2s`) encrypted sessions.
12
+ `noise://` URLs take `key=<hex>` (local static private key;
13
+ ephemeral and trust-on-first-use when omitted) and `pinned=<hex>`
14
+ (SHA-256 fingerprint of the expected peer static key — the
15
+ handshake aborts on mismatch). The handshake carries a 10-second
16
+ deadline so a non-Noise peer fails fast instead of hanging.
17
+ `SignerClient` exposes `#register`, `#create_session`,
18
+ `#submit_commitment`, `#submit_share` (returns the aggregated
19
+ signature once the threshold is met, else nil);
20
+ `CoordinatorServer.new(url)` serves any linked scheme for tests
21
+ and single-process deployments.
22
+
23
+ ### Changed
24
+
25
+ - **BREAKING**: `Confium::Net` is `Confium::Transport`. Defining
26
+ `Confium::Net` shadowed Ruby stdlib `Net` for every constant
27
+ lookup under the `Confium` namespace — `Confium::Audit::OtlpSink`'s
28
+ `Net::HTTP` resolved to `Confium::Net::HTTP` and raised
29
+ `NameError`. No prior release shipped the `Net` names.
30
+
31
+ ## [0.6.3] — 2026-08-26
32
+
33
+ ### Added
34
+
35
+ - `Confium::TC::Session` — per-party threshold protocol sessions
36
+ over confium-tc-core 0.4: each signer process runs its own
37
+ session (`"FROST-ed25519-dkg"` for distributed key generation,
38
+ `"FROST-ed25519"` for signing with the DKG share and message) and
39
+ exchanges only `round_step` messages — the share never leaves the
40
+ process. `#round_step(incoming)` returns
41
+ `{ "outgoing" => [...], "complete" => bool }`; the completed DKG
42
+ session's `#result` is the party's share blob, the signing
43
+ session's `#result` an RFC 8032 Ed25519 signature verifiable under
44
+ the group public key.
45
+
3
46
  ## [0.6.2] — 2026-08-26
4
47
 
5
48
  ### Added