@actcore/act 0.12.0 → 0.13.0

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.
Files changed (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -123,6 +123,32 @@ env, then `GITHUB_TOKEN` for `ghcr.io`, then `~/.docker/config.json`
123
123
 
124
124
  RISC-V (`riscv64`) is a first-class target. Regressions on RISC-V are release-blocking.
125
125
 
126
+ ### Runtime requirement: glibc 2.34
127
+
128
+ A **glibc** build of `act` or `act-build` requires **glibc 2.34 or newer** —
129
+ Debian 12, Ubuntu 22.04, RHEL 9 and later. This is a supported-platform
130
+ commitment, not an incidental build setting: it is asserted in CI, and lowering
131
+ it is a breaking change.
132
+
133
+ Which channels it applies to:
134
+
135
+ | Channel | Affected |
136
+ |---|---|
137
+ | npm (`@actcore/act`, `@actcore/act-build`) | **No** — Linux packages ship musl binaries |
138
+ | PyPI `manylinux` wheels | Yes — 2.34; the riscv64 wheel needs 2.39 |
139
+ | GitHub Releases `*-linux-*-gnu` | Yes — 2.34 |
140
+ | GitHub Releases `*-linux-*-musl`, Docker | No |
141
+
142
+ The floor is one symbol. DNS SVCB/HTTPS lookups call `res_query(3)`, which
143
+ glibc did not export under that name before 2.34 — earlier releases had only
144
+ `__res_query`, and a modern glibc keeps that as a compat symbol new code cannot
145
+ link against, so there is no spelling that satisfies both. Nothing else in the
146
+ binary requires past glibc 2.33.
147
+
148
+ On an older distribution, use a musl build: musl exports the symbol outright and
149
+ carries no floor. Building from source does not lift the requirement — it is the
150
+ same call — so musl is the answer there, not `cargo build`.
151
+
126
152
  ## Building
127
153
 
128
154
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actcore/act",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "CLI host for ACT (Agent Component Tools) WebAssembly components",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "repository": {
@@ -14,13 +14,13 @@
14
14
  },
15
15
  "files": ["bin"],
16
16
  "optionalDependencies": {
17
- "@actcore/act-cli-linux-x64": "0.12.0",
18
- "@actcore/act-cli-linux-arm64": "0.12.0",
19
- "@actcore/act-cli-linux-riscv64": "0.12.0",
20
- "@actcore/act-cli-darwin-x64": "0.12.0",
21
- "@actcore/act-cli-darwin-arm64": "0.12.0",
22
- "@actcore/act-cli-win32-x64": "0.12.0",
23
- "@actcore/act-cli-win32-arm64": "0.12.0"
17
+ "@actcore/act-cli-linux-x64": "0.13.0",
18
+ "@actcore/act-cli-linux-arm64": "0.13.0",
19
+ "@actcore/act-cli-linux-riscv64": "0.13.0",
20
+ "@actcore/act-cli-darwin-x64": "0.13.0",
21
+ "@actcore/act-cli-darwin-arm64": "0.13.0",
22
+ "@actcore/act-cli-win32-x64": "0.13.0",
23
+ "@actcore/act-cli-win32-arm64": "0.13.0"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public",