Commit34dd621fRecorded22 Feb 2026Repositorysigil-json

Release v0.6.0

Message

Packages with changes: - sigil-build - sigil-css - sigil-org - sigil-lib - sigil-publish - sigil-web - sigil-crypto - sigil-tls - sigil-json - sigil-socket - sigil-websocket - sigil-mcp - sigil-xmpp - sigil-nrepl - sigil-docs - sigil-web-demo - sigil-sxml - sigil-peg - sigil-stdlib - sigil-cli - sigil-markdown - sigil-sqlite - sigil-args - sigil-git - sigil-test

Changed
 CHANGELOG.md | 30 ++++++++++++++++++++++++++++++
 package.sgl  |  2 +-
 2 files changed, 31 insertions(+), 1 deletion(-)
Diff
CHANGELOG.mdmodified
@@ -7,6 +7,36 @@ All notable changes to this project will be documented in this file.
7
The format is based on [Keep a Changelog](https://keepachangelog.com/),
8
and this project adheres to [Semantic Versioning](https://semver.org/).
9
+10
## [0.6.0] - 2026-02-22
+11
+12
### Added
+13
+14
- Added package-provided MCP tools with dynamic discovery and nREPL describe/modules operations.
+15
- Added package documentation for web stack (SXML, CSS, and Web routing/UI).
+16
- Added higher-level UI components, css-sel compound selectors, Vinyl Vault demo application, and improved web API ergonomics including table actions, form loading, GET request handling, and error overlay fixes.
+17
- Add Org Mode parser producing SXML output with support for headlines, metadata, source blocks, inline markup, links, lists, and property drawers.
+18
- Added table parsing support to Org Mode parser.
+19
- Add rich error diagnostics with structured error type hierarchy, VM error kind mapping, and (sigil diagnostic) module with Levenshtein-based suggestions.
+20
- Added R7RS compliance features: dynamic-wind, do syntax, datum labels, let-syntax, letrec-syntax, include/include-ci, import set modifiers (only, except, prefix, rename), cond-expand, features, syntax-error, bytevector ports, write-shared with datum labels, char-ready?, u8-ready?, interaction-environment, and (scheme time/process-context/repl) libraries.
+21
- Add XMPP client library with STARTTLS, SASL (SCRAM-SHA-1/PLAIN), roster, presence, and MUC support.
+22
- Added package documentation.
+23
- Add 7 new MCP tools for live browser control (web-morph, web-error, web-status, web-navigate, web-css-class, web-css-reload, web-exec) with supporting SSE events and dev helpers.
+24
- Added package documentation for web stack (SXML, CSS, and Web routing/UI).
+25
- Added higher-level UI components, css-sel compound selectors, Vinyl Vault demo application, and improved web API ergonomics including table actions, form loading, GET request handling, and error overlay fixes.
+26
- Added live-coding support via nREPL and SSE reload for real-time browser updates.
+27
- Add XMPP client library with STARTTLS, SASL (SCRAM-SHA-1/PLAIN), roster, presence, and MUC support.
+28
- Add XMPP client library with STARTTLS, SASL (SCRAM-SHA-1/PLAIN), roster, presence, and MUC support.
+29
+30
### Fixed
+31
+32
- Fixed SIGIL_NATIVES_MAX limit by increasing to 2048.
+33
+34
### Other
+35
+36
- Cache FNV-1a hash for string dict keys, avoiding repeated hash computation on dict lookups.
+37
- Collect docstrings for variable definitions and propagate native doc strings through re-exports.
+38
- Handle UTF-16 surrogate pairs in JSON unicode escapes. Reject bare low surrogates per RFC 8259.
+39
40
## [0.3.0] - 2026-01-12
41
42
### Added
package.sglmodified
@@ -4,7 +4,7 @@
4
5
(package
6
name: "sigil-json"
7
version: "0.5.0"
+7
version: "0.6.0"
8
description: "JSON parsing and generation for Sigil"
9
url: "https://codeberg.org/sigil/sigil"
10
license: "BSD-3-Clause"