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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/kairos_mcp/version.rb +1 -1
- data/templates/skillsets/mmp/tools/meeting_browse.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d768f68be9bfcc4c365d337abe42eb6b34cb180da8edfc01d839ad48449484b
|
|
4
|
+
data.tar.gz: 45b150ceea4779e8999db1234d5085f032d10a4ae2c312e23bd43f1f6b5b702a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/kairos_mcp/version.rb
CHANGED
|
@@ -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
|