Commite116cc3cRecorded26 Apr 2026Repositorysigil-json

Add Woodpecker CI; drop CHANGELOG.md

Message

- .woodpecker.yml: minimal pipeline that fetches the pinned sigil v0.14.0 release binary, runs sigil deps install, then sigil test on push + PR + manual triggers. Bump the pin via search/replace when a new release is cut. - Drop the inherited CHANGELOG.md per the no-CHANGELOG policy: release narrative now lives in annotated git tags. See procedures/library-release-conventions.

Changed
 .woodpecker.yml |  29 +++++++++++++++++++++++++++++
 CHANGELOG.md    | 113 -----------------------------------------------------------------------------------------------------------------
 sigil.lock      |   9 +++++++++
 3 files changed, 38 insertions(+), 113 deletions(-)
Diff
.woodpecker.ymladded
@@ -0,0 +1,29 @@
+1
# Woodpecker CI configuration for Codeberg
+2
# https://docs.codeberg.org/ci/
+3
#
+4
# Library CI: fetch the pinned sigil release binary, install deps via
+5
# from-git pins, run the test suite. Pinned to a specific monorepo
+6
# release (rather than the rolling `dev`) so a flaky monorepo doesn't
+7
# cascade across all extracted-repo CIs. Bump via search/replace when
+8
# a new release is cut.
+9
#
+10
# Single-step on purpose: $HOME-rooted state from `sigil deps install`
+11
# does not survive a Woodpecker step boundary, so fetch + deps + test
+12
# must all run in the same container.
+13
+14
when:
+15
- event: [push, pull_request, manual]
+16
+17
variables:
+18
- &alpine_image "alpine:3.20"
+19
+20
steps:
+21
test:
+22
image: *alpine_image
+23
commands:
+24
- apk add --no-cache curl ca-certificates git
+25
- curl -fLo ./sigil https://codeberg.org/sigil/sigil/releases/download/v0.14.0/sigil-linux-amd64-static
+26
- chmod +x ./sigil
+27
- ./sigil --version
+28
- ./sigil deps install
+29
- ./sigil test
CHANGELOG.mddeleted
@@ -1,113 +0,0 @@
1
# Changelog
2
3
Versions are synced with Sigil releases. A missing entry indicates no changes for that version.
4
5
All notable changes to this project will be documented in this file.
6
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.7.0] - 2026-03-01
11
12
### Added
13
14
- Added procedure specifications with inline (: ...) syntax, optional runtime checking via sigil-checks feature, and predicate combinators (any-of, maybe, list-of, none-of).
15
- Added procedure specs and docstrings to all exported procedures.
16
- Added procedure specs and docstrings to all exported procedures.
17
- Added define-native compiler form for declaring native C bindings in Scheme modules with optional specs and docstrings.
18
- Added VM-level exception handler stack for tail-optimized guard semantics, replacing prompt-based exception handling.
19
- Added multi-VM threading with share-nothing architecture, message passing, and parallel-map for data-parallel workloads.
20
- Added preemptive yield points at loop back-edges to prevent CPU-bound tasks from starving the async scheduler.
21
- Added procedure specifications with inline (: ...) syntax, optional runtime checking via sigil-checks feature, and predicate combinators (any-of, maybe, list-of, none-of).
22
- Added procedure specs and docstrings to all exported procedures.
23
- Added procedure specs and docstrings to all exported procedures.
24
- Added procedure specs and docstrings to all exported procedures.
25
- Added immediate-mode terminal UI toolkit with native C grid, layout system, component rendering, event parsing, text input, and chat demo application.
26
- Added procedure specs and docstrings to all exported procedures.
27
28
### Changed
29
30
- Changed I/O multiplexing to use epoll (Linux) and kqueue (macOS/BSD) instead of select(2) for better scalability.
31
32
### Fixed
33
34
- Fixed false positive capture corruption check in serializer, Windows build issues with mingw macro collision and unix-connect, closure arity errors now catchable by guard, and exception handler double-pop segfault.
35
36
## [0.6.0] - 2026-02-22
37
38
### Added
39
40
- Added package-provided MCP tools with dynamic discovery and nREPL describe/modules operations.
41
- Added package documentation for web stack (SXML, CSS, and Web routing/UI).
42
- 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.
43
- Add Org Mode parser producing SXML output with support for headlines, metadata, source blocks, inline markup, links, lists, and property drawers.
44
- Added table parsing support to Org Mode parser.
45
- Add rich error diagnostics with structured error type hierarchy, VM error kind mapping, and (sigil diagnostic) module with Levenshtein-based suggestions.
46
- 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.
47
- Add XMPP client library with STARTTLS, SASL (SCRAM-SHA-1/PLAIN), roster, presence, and MUC support.
48
- Added package documentation.
49
- 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.
50
- Added package documentation for web stack (SXML, CSS, and Web routing/UI).
51
- 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.
52
- Added live-coding support via nREPL and SSE reload for real-time browser updates.
53
- Add XMPP client library with STARTTLS, SASL (SCRAM-SHA-1/PLAIN), roster, presence, and MUC support.
54
- Add XMPP client library with STARTTLS, SASL (SCRAM-SHA-1/PLAIN), roster, presence, and MUC support.
55
56
### Fixed
57
58
- Fixed SIGIL_NATIVES_MAX limit by increasing to 2048.
59
60
### Other
61
62
- Cache FNV-1a hash for string dict keys, avoiding repeated hash computation on dict lookups.
63
- Collect docstrings for variable definitions and propagate native doc strings through re-exports.
64
- Handle UTF-16 surrogate pairs in JSON unicode escapes. Reject bare low surrogates per RFC 8259.
65
66
## [0.3.0] - 2026-01-12
67
68
### Added
69
70
- Added native test build integration, script/directory bundling, custom runtime builder, and native package detection.
71
- Added sigil publish command with site operators, pipeline:, and watch-patterns: support.
72
- Added json-get-in and comprehensive test suite.
73
74
### Fixed
75
76
- Fixed temp file creation on Windows.
77
78
### Other
79
80
- Extracted TLS and crypto support from sigil-lib into separate packages for modular compilation.
81
- Extracted TLS and crypto support from sigil-lib into separate packages for modular compilation.
82
83
## [0.1.0] - 2026-01-09
84
85
### Other
86
87
- Initial release of the test framework with assertions, test discovery, filtering, and formatted output.
88
- Initial release with TCP and UDP socket support for network programming.
89
- Core runtime providing a bytecode VM with incremental mark-sweep garbage collector, S-expression reader with extensible syntax, and hygienic macro system supporting syntax-rules and syntax-case. Native bindings for I/O, filesystem, networking, process management, SQLite, and cryptographic hashing.
90
- Initial release with SXML utilities for XML/HTML document construction and manipulation.
91
- JWT token encoding and verification with HS256 signing support.
92
- Model Context Protocol server implementation for building AI tool integrations with resources, tools, and prompts.
93
- SQLite database bindings with prepared statements, transactions, and result iteration.
94
- Initial release of the WebAssembly runtime for running Sigil applications in the browser via Emscripten.
95
- Initial release of changeset-based release management with version bumping, changelog generation, and git integration.
96
- Initial release of the interactive web playground for trying Sigil in the browser.
97
- Core standard library with (sigil core) providing pattern matching, records, delimited continuations, and utilities for arrays, dicts, strings, and lists. Includes modules for math operations, process spawning, time/date handling, filesystem access, and path manipulation. Nearly complete R7RS (scheme base) compatibility with additional modules for I/O, exceptions, generators, and coroutines.
98
- Static site generation with composable pipeline for Markdown files and module documentation.
99
- Initial release with Markdown parsing and frontmatter extraction.
100
- Initial release with ANSI escape code utilities for terminal colors, bold, dim, and other text formatting.
101
- Initial release with extensible hook system for REPL and application customization.
102
- CSS generation from Sigil code with selectors, properties, and stylesheet composition.
103
- Initial release of the code formatter with automatic indentation and parenthesis inference.
104
- Initial release with declarative command-line argument parsing, supporting options, flags, subcommands, and automatic help generation.
105
- Initial release of the build system with package management, dependency resolution, task execution, and executable bundling.
106
- Initial release of the network REPL server for editor integration and remote evaluation.
107
- Command-line interface with commands for building packages, creating standalone executables, running tests, code formatting, project initialization, documentation generation, and release management. Interactive REPL for development.
108
- HTTP/1.1 server with routing, request/response handling, and server-sent events for streaming responses. HTTP client with TLS support for making outbound requests.
109
- Web application framework with routing, middleware, and template rendering.
110
- WebSocket client and server implementation with support for text and binary messages.
111
- Git repository operations including status, staging, commits, branches, and diff inspection.
112
- JSON parsing and serialization with bidirectional mapping between JSON and native Scheme types (dicts, arrays, strings, numbers, booleans). Port-based I/O for reading and writing JSON streams.
113
sigil.lockadded
@@ -0,0 +1,9 @@
+1
;; Auto-generated by sigil deps install. Do not edit.
+2
(lock
+3
(package name: "sigil-stdlib"
+4
url: "codeberg:sigil/sigil-lang"
+5
ref: "^0.14"
+6
sha: "dba24e3fe531bc150bcf93444e764f87fb321850"
+7
package-selector: "sigil-stdlib"
+8
version: "0.14.1")
+9
)