kairos-chain 3.4.0 → 3.4.1

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: 536074c6863ed27ee7c404595e3267fdb266ae0a23d55705ecf3566730b4b07f
4
- data.tar.gz: 4e38e6afae0c352d900d81e607264a0d5d76505e137effdcc04df4c79ef52cd4
3
+ metadata.gz: 6d768f68be9bfcc4c365d337abe42eb6b34cb180da8edfc01d839ad48449484b
4
+ data.tar.gz: 45b150ceea4779e8999db1234d5085f032d10a4ae2c312e23bd43f1f6b5b702a
5
5
  SHA512:
6
- metadata.gz: 1b7d841dd848af30cffecb461345386cb17f9eb3def2068988f01ceca9be3411b06db9d7f6670062cef72e3aa83f920e0faed49919307b2bd7e9fbbed6eec1da
7
- data.tar.gz: 52cd9de9f80f2fcd4cde383f9466040bac2347b0bd44d2bc20ae82ed16aa335140add8acf6414cf908eefd617a0ab35a262a0e2a1cafe4486e7a97d61394dc0c
6
+ metadata.gz: 44a1f1d1d1783ba2ef2c25c4cde5955857e4d2115b6a5c8bdecb8eae1495736df24a63772a7d728edb873600f9d60ebe7eef57abc302a6322a3c171d4a6258b0
7
+ data.tar.gz: ac8f3759a9c2fa72465d4b65198ebccd2a8759b6812581f45271c2436aa36e27958ac7fd922d0d96b349452fedea6a2f4a1cf00aa1c3737520825eabfd7f406c
data/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ All notable changes to the `kairos-chain` gem will be documented in this file.
4
4
 
5
5
  This project follows [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [3.4.1] - 2026-03-24
8
+
9
+ ### Fixed
10
+
11
+ - **meeting_browse missing fields**: `format_entry` did not forward `attestations`, `summary`,
12
+ `sections`, `content_hash`, `version`, or `license` from server response. These were correctly
13
+ returned by the server but dropped by the MCP tool's formatting layer.
14
+ - **Attestation R2 fixes**: Version-aware duplicate check (same attester can re-attest after
15
+ skill update), `content_hash` included in signed payload for cryptographic version binding.
16
+
17
+ ---
18
+
7
19
  ## [3.4.0] - 2026-03-24
8
20
 
9
21
  ### Added
@@ -1,4 +1,4 @@
1
1
  module KairosMcp
2
- VERSION = "3.4.0"
2
+ VERSION = "3.4.1"
3
3
  CHANGELOG_URL = "https://github.com/masaomi/KairosChain_2026/blob/main/CHANGELOG.md"
4
4
  end
@@ -123,6 +123,12 @@ module KairosMcp
123
123
  base[:deposited_at] = entry[:deposited_at] if entry[:deposited_at]
124
124
  base[:trust_notice] = entry[:trust_notice] if entry[:trust_notice]
125
125
  base[:trust_metadata] = entry[:trust_metadata] if entry[:trust_metadata]
126
+ base[:attestations] = entry[:attestations] if entry[:attestations]
127
+ base[:summary] = entry[:summary] if entry[:summary]
128
+ base[:sections] = entry[:sections] if entry[:sections]
129
+ base[:content_hash] = entry[:content_hash] if entry[:content_hash]
130
+ base[:version] = entry[:version] if entry[:version]
131
+ base[:license] = entry[:license] if entry[:license]
126
132
  base.compact
127
133
  end
128
134
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kairos-chain
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masaomi Hatakeyama