confium 0.3.3-x86_64-linux → 0.3.4-x86_64-linux

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: 29713a2f88eba9dce46e7f09c04c3f51d1af383045636cdc4072840014af304b
4
- data.tar.gz: babf1d3a665e1580dae5663ae606cf682416056504021d880ffa80b9384c277f
3
+ metadata.gz: 3178b2707fbab7a1b8c5148d21f3f2d3e37179a09ef6360ae830c44cdd96475f
4
+ data.tar.gz: 5452bbb23d8e638ec58ef5a792d52f9b096d11a4980a9a5616d78961aff6d701
5
5
  SHA512:
6
- metadata.gz: 3cca24197db15b1cca7c2a97a6dd45e7e8d77beeaeea15b80401ea3c253c9d19e63b251b2a019a37fe3aa57aeb4942081cbca3ae4275336f93dd9b0ea7e62d35
7
- data.tar.gz: 7ec28723dfef78ae83e342b2416a0e8101e810019caa036efc6f6ff53d7fe255153b4527210f0e626c03fb37a33cc30952877539bf31c4a472e456e91e452100
6
+ metadata.gz: af7f40dd9e8f8fc02f314975b35fc15c05dcc02983733b92a7485c7e3a7eb81750c93ac1b0c03e8d827c9b82c1778732623f91e0424e475530c686238c7df525
7
+ data.tar.gz: 846dbbc41b3debd394b73067c8d3740817efad0a82a7dfd3ae0399eab5686ca32844ec29fe6c3ceae63833afb743883ae2a4c32861c1d44b21ac9a6e34c40382
data/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.4] — 2026-08-23
4
+
5
+ ### Fixed
6
+
7
+ - **Typed-error sweep completed.** Crypto operation failures
8
+ (FrostP256 sign, ElGamal encapsulate/decrypt/aggregate, composite
9
+ sign) raise `Confium::CryptoError` with the primitive in `details`;
10
+ `PathValidator` DER extraction failures raise `Confium::ParseError`;
11
+ `Manifest#tier_name_at` and `SignedData#certificate_at` out-of-range
12
+ raise the typed `Confium::IndexError` (unifying with the
13
+ transparency proofs — they previously raised Ruby's core
14
+ `IndexError`).
15
+ - **Zero compiler warnings.** All 80 direct
16
+ `magnus::exception::*` constructor sites are centralized into
17
+ `util::runtime`/`util::arg_error` (the deprecated API survives in
18
+ exactly one module whose job is wrapping it); the remaining magnus
19
+ deprecations (`RString::buf_new`, `RArray::each`) and dead imports
20
+ are fixed.
21
+ - **DoS guard now covers every byte input**: the duplicate local
22
+ `bytes_from_value` copies in tc/transparency — one of which
23
+ skipped the 1 MiB size cap — are consolidated onto the util
24
+ version that enforces it.
25
+
3
26
  ## [0.3.3] — 2026-08-23
4
27
 
5
28
  ### Added
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Confium
4
- VERSION = '0.3.3'
4
+ VERSION = '0.3.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: confium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Ribose Open