arkaos 3.70.9 → 3.70.10
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.
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.70.
|
|
1
|
+
3.70.10
|
|
Binary file
|
|
@@ -155,6 +155,7 @@ class ObsidianPersonaStore:
|
|
|
155
155
|
communication=PersonaCommunication(
|
|
156
156
|
**_filter_known(PersonaCommunication, comm_fm),
|
|
157
157
|
),
|
|
158
|
+
bio_md=str(fm.get("bio_md") or ""),
|
|
158
159
|
created_at=str(fm.get("created_at") or ""),
|
|
159
160
|
updated_at=str(fm.get("updated_at") or ""),
|
|
160
161
|
)
|
|
@@ -236,6 +237,12 @@ class ObsidianPersonaStore:
|
|
|
236
237
|
"created_at": persona.created_at or now,
|
|
237
238
|
"updated_at": now,
|
|
238
239
|
}
|
|
240
|
+
# v3.70.10 — long-form Markdown bio. Stored as a frontmatter
|
|
241
|
+
# block scalar so it survives round-trips; only emitted when set
|
|
242
|
+
# to keep bio-less persona files clean. YAML handles the multi-line
|
|
243
|
+
# value; the no-yaml fallback below can't, so skip it there.
|
|
244
|
+
if persona.bio_md and yaml is not None:
|
|
245
|
+
frontmatter["bio_md"] = persona.bio_md
|
|
239
246
|
if yaml is not None:
|
|
240
247
|
fm_block = yaml.safe_dump(
|
|
241
248
|
frontmatter,
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
Binary file
|