@supacloud/lite 0.8.5 → 0.9.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.
- package/CHANGELOG.md +14 -0
- package/LICENSES/{BUN-1.3.14-RUNTIME-NOTICES.txt → BUN-1.4.0-RUNTIME-NOTICES.txt} +22 -10
- package/README.md +82 -0
- package/THIRD_PARTY_NOTICES.md +6 -6
- package/dist/cli.js +1108 -64
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1051 -67
- package/dist/launcher.cjs +1 -1
- package/dist/project-runtime.d.ts +12 -0
- package/dist/project-runtime.d.ts.map +1 -1
- package/dist/runtime/db/emulated.d.ts +1 -1
- package/dist/runtime/db/emulated.d.ts.map +1 -1
- package/dist/runtime/node/native/engine.d.ts +3 -0
- package/dist/runtime/node/native/engine.d.ts.map +1 -1
- package/dist/runtime/node/native/readiness.d.ts +65 -0
- package/dist/runtime/node/native/readiness.d.ts.map +1 -0
- package/dist/runtime/node/native/replication.d.ts +22 -0
- package/dist/runtime/node/native/replication.d.ts.map +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.1](https://github.com/vibeunion/supacloud/compare/supacloud-lite-v0.9.0...supacloud-lite-v0.9.1) (2026-08-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **runtime:** upgrade Bun to 1.4.0 ([a1e4178](https://github.com/vibeunion/supacloud/commit/a1e4178c6a02127e4b71b0976d0f34a5a7940061))
|
|
9
|
+
|
|
10
|
+
## [0.9.0](https://github.com/vibeunion/supacloud/compare/supacloud-lite-v0.8.5...supacloud-lite-v0.9.0) (2026-08-20)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* complete Lite application primitives and PowerSync profile ([#1017](https://github.com/vibeunion/supacloud/issues/1017)) ([134444f](https://github.com/vibeunion/supacloud/commit/134444f98d310f65bf376be1ef7bb92445701b6b))
|
|
16
|
+
|
|
3
17
|
## [0.8.5](https://github.com/vibeunion/supacloud/compare/supacloud-lite-v0.8.4...supacloud-lite-v0.8.5) (2026-08-18)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -7,17 +7,17 @@ Bun itself is MIT-licensed.
|
|
|
7
7
|
|
|
8
8
|
## JavaScriptCore
|
|
9
9
|
|
|
10
|
-
Bun statically links JavaScriptCore (and WebKit) which is LGPL-2 licensed. WebCore files from WebKit are also licensed under
|
|
10
|
+
Bun statically links JavaScriptCore (and WebKit), which is LGPL-2 licensed. WebCore files from WebKit are also licensed under LGPL-2. Per LGPL-2:
|
|
11
11
|
|
|
12
12
|
> (1) If you statically link against an LGPL'd library, you must also provide your application in an object (not necessarily source) format, so that a user has the opportunity to modify the library and relink the application.
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
Bun's patched version of WebKit lives at https://github.com/oven-sh/webkit. To relink Bun with changes:
|
|
15
15
|
|
|
16
|
-
- `git
|
|
17
|
-
- `
|
|
18
|
-
- `
|
|
16
|
+
- `git clone https://github.com/oven-sh/WebKit vendor/WebKit`
|
|
17
|
+
- `bun sync-webkit-source` (checks out the version pinned in `WEBKIT_VERSION` in `scripts/build/deps/webkit.ts`)
|
|
18
|
+
- `bun run build:local`
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
`bun run build:local` compiles JavaScriptCore, compiles Bun's `.cpp` bindings for JavaScriptCore (the object files that use JavaScriptCore), and outputs a new `bun` binary with your changes.
|
|
21
21
|
|
|
22
22
|
## Linked libraries
|
|
23
23
|
|
|
@@ -29,6 +29,9 @@ Bun statically links these libraries:
|
|
|
29
29
|
| [`brotli`](https://github.com/google/brotli) | MIT |
|
|
30
30
|
| [`libarchive`](https://github.com/libarchive/libarchive) | [several licenses](https://github.com/libarchive/libarchive/blob/master/COPYING) |
|
|
31
31
|
| [`lol-html`](https://github.com/cloudflare/lol-html/tree/master/c-api) | BSD 3-Clause |
|
|
32
|
+
| [`ls-hpack`](https://github.com/litespeedtech/ls-hpack) | MIT (bundled xxhash is BSD 2-Clause) |
|
|
33
|
+
| [`ls-qpack`](https://github.com/litespeedtech/ls-qpack) | MIT |
|
|
34
|
+
| [`lsquic`](https://github.com/litespeedtech/lsquic) | MIT (portions derived from Chromium proto-quic, BSD 3-Clause) |
|
|
32
35
|
| [`mimalloc`](https://github.com/microsoft/mimalloc) | MIT |
|
|
33
36
|
| [`picohttp`](https://github.com/h2o/picohttpparser) | dual-licensed under the Perl License or the MIT License |
|
|
34
37
|
| [`zstd`](https://github.com/facebook/zstd) | dual-licensed under the BSD License or GPLv2 license |
|
|
@@ -37,19 +40,27 @@ Bun statically links these libraries:
|
|
|
37
40
|
| [`uSockets`](https://github.com/uNetworking/uSockets) | Apache 2.0 |
|
|
38
41
|
| [`zlib-ng`](https://github.com/zlib-ng/zlib-ng) | zlib |
|
|
39
42
|
| [`c-ares`](https://github.com/c-ares/c-ares) | MIT licensed |
|
|
40
|
-
| [`libicu`](https://github.com/unicode-org/icu)
|
|
43
|
+
| [`libicu`](https://github.com/unicode-org/icu) 78 | [ICU license](https://github.com/unicode-org/icu/blob/main/icu4c/LICENSE) |
|
|
41
44
|
| [`libbase64`](https://github.com/aklomp/base64/blob/master/LICENSE) | BSD 2-Clause |
|
|
42
45
|
| [`libuv`](https://github.com/libuv/libuv) (on Windows) | MIT |
|
|
43
46
|
| [`libdeflate`](https://github.com/ebiggers/libdeflate) | MIT |
|
|
47
|
+
| [`libjpeg-turbo`](https://github.com/libjpeg-turbo/libjpeg-turbo) | BSD 3-Clause / IJG / zlib |
|
|
48
|
+
| [`libspng`](https://github.com/randy408/libspng) | BSD 2-Clause (portions derived from libpng, PNG Reference Library License v2) |
|
|
49
|
+
| [`libwebp`](https://github.com/webmproject/libwebp) | BSD 3-Clause |
|
|
50
|
+
| [`highway`](https://github.com/google/highway) | Apache 2.0 |
|
|
51
|
+
| [`HdrHistogram_c`](https://github.com/HdrHistogram/HdrHistogram_c) | dual-licensed under CC0 1.0 or the BSD 2-Clause License |
|
|
52
|
+
| [`sqlite`](https://sqlite.org) (on Linux and Windows) | [public domain](https://sqlite.org/copyright.html) |
|
|
44
53
|
| A fork of [`uWebsockets`](https://github.com/jarred-sumner/uwebsockets) | Apache 2.0 licensed |
|
|
45
54
|
| Parts of [Tigerbeetle's IO code](https://github.com/tigerbeetle/tigerbeetle/blob/532c8b70b9142c17e07737ab6d3da68d7500cbca/src/io/windows.zig#L1) | Apache 2.0 licensed |
|
|
46
55
|
|
|
47
56
|
## Polyfills
|
|
48
57
|
|
|
49
|
-
For compatibility
|
|
58
|
+
For compatibility, Bun embeds the following packages into its binary and injects them if imported.
|
|
50
59
|
|
|
51
60
|
| Package | License |
|
|
52
61
|
| ------------------------------------------------------------------------ | ------- |
|
|
62
|
+
| [`acorn`](https://github.com/acornjs/acorn) | MIT |
|
|
63
|
+
| [`acorn-walk`](https://github.com/acornjs/acorn) | MIT |
|
|
53
64
|
| [`assert`](https://npmjs.com/package/assert) | MIT |
|
|
54
65
|
| [`browserify-zlib`](https://npmjs.com/package/browserify-zlib) | MIT |
|
|
55
66
|
| [`buffer`](https://npmjs.com/package/buffer) | MIT |
|
|
@@ -74,5 +85,6 @@ For compatibility reasons, the following packages are embedded into Bun's binary
|
|
|
74
85
|
|
|
75
86
|
## Additional credits
|
|
76
87
|
|
|
77
|
-
- Bun's JS transpiler
|
|
78
|
-
-
|
|
88
|
+
- Bun's JS transpiler and Node.js module resolver source code is a port of [@evanw](https://github.com/evanw)’s [esbuild](https://github.com/evanw/esbuild) project.
|
|
89
|
+
- Bun's CSS parser source code is derived from the [Lightning CSS](https://github.com/parcel-bundler/lightningcss) and [Servo](https://github.com/servo/servo) projects.
|
|
90
|
+
- Credit to [@kipply](https://github.com/kipply) for the name "Bun".
|
package/README.md
CHANGED
|
@@ -106,6 +106,7 @@ supacloud-lite snapshot create [-o backup.tar.gz]
|
|
|
106
106
|
supacloud-lite snapshot restore <backup.tar.gz> [--force]
|
|
107
107
|
supacloud-lite upgrade [-o pre-upgrade.tar.gz]
|
|
108
108
|
supacloud-lite inspect
|
|
109
|
+
supacloud-lite doctor [--json]
|
|
109
110
|
supacloud-lite version
|
|
110
111
|
```
|
|
111
112
|
|
|
@@ -136,6 +137,13 @@ supacloud-lite version
|
|
|
136
137
|
- `SUPACLOUD_LITE_STORAGE_BACKEND`:`fs`(默认)、`memory` 或 `s3`
|
|
137
138
|
- `SUPACLOUD_LITE_S3_PREFIX`:S3 对象 key 前缀,可被 `--s3-prefix` 覆盖
|
|
138
139
|
- `SUPACLOUD_LITE_POSTGRES_MIRROR`:native 引擎下载 PostgreSQL 发布包时使用的 HTTPS 镜像前缀,例如 `https://ghproxy.net/`
|
|
140
|
+
- `SUPACLOUD_LITE_ENGINE`:`pglite`(默认)或 `native`
|
|
141
|
+
- `SUPACLOUD_LITE_REPLICATION_PROFILE`:仅支持显式值 `powersync`,且仅用于 native 引擎
|
|
142
|
+
- `SUPACLOUD_LITE_REPLICATION_HOST` / `SUPACLOUD_LITE_REPLICATION_PORT`:PowerSync 数据库监听地址和端口,默认 `127.0.0.1:54322`
|
|
143
|
+
- `SUPACLOUD_LITE_REPLICATION_ALLOW_CIDRS`:逗号分隔的 PowerSync 客户端 CIDR allowlist
|
|
144
|
+
- `SUPACLOUD_LITE_POWERSYNC_TABLES`:逗号分隔、带 schema 的 publication 表 allowlist
|
|
145
|
+
- `SUPACLOUD_LITE_POWERSYNC_PASSWORD`:独立 replication role 密码,至少 32 字符;不支持 CLI 密码参数
|
|
146
|
+
- `SUPACLOUD_LITE_REPLICATION_TLS_CERT_FILE` / `SUPACLOUD_LITE_REPLICATION_TLS_KEY_FILE`:非 loopback 监听必需
|
|
139
147
|
- `SUPACLOUD_LITE_JWT_SECRET`
|
|
140
148
|
- `SUPACLOUD_LITE_VAULT_KEY`
|
|
141
149
|
|
|
@@ -254,6 +262,9 @@ S3 模式的快照只包含数据库中的 Storage 元数据和密钥,不复
|
|
|
254
262
|
| Edge Functions `SupaCloud.pgredis` | 已验证核心 | 提供单项目持久 KV、TTL、原子 `getset`/`getdel`;绑定只在当前函数请求内可用 |
|
|
255
263
|
| Supabase migrations | 支持 | 按文件名排序,记录到 `supabase_migrations` |
|
|
256
264
|
| PostgreSQL RLS | 支持 | 使用 `anon`、`authenticated`、`service_role` 数据库角色执行 |
|
|
265
|
+
| Maker-Checker SQL | 支持 | 参考 migration 在 PGlite/native 自动测试中覆盖角色分离、行版本、幂等、非法跃迁和只增审计 |
|
|
266
|
+
| Commands / Artifacts | 支持 | 与完整 SupaCloud 使用相同 SQL contract;PGlite/native 均通过 `@supacloud/js` 端到端测试 |
|
|
267
|
+
| Logical Replication / PowerSync source | 有条件支持 | PGlite 不支持;native 仅在显式 `powersync` profile 下支持,默认关闭 |
|
|
257
268
|
| PostgREST 完整线协议 | 部分支持 | 目标是常用 `supabase-js` 行为,不承诺所有 PostgREST 边角行为 |
|
|
258
269
|
| PostgreSQL 扩展 | 部分支持 | 仅支持 PGlite 内置或 Lite 模拟的扩展能力 |
|
|
259
270
|
| Supabase Studio | 不支持 | V1 不提供管理 UI |
|
|
@@ -261,6 +272,50 @@ S3 模式的快照只包含数据库中的 Storage 元数据和密钥,不复
|
|
|
261
272
|
|
|
262
273
|
RLS 表的 Realtime DELETE 无法在行删除后安全重放 SELECT policy,因此 V1 只向 `service_role` 订阅者发送这类 DELETE 事件。普通用户仍可收到通过逐行 RLS 校验的 INSERT/UPDATE 事件。
|
|
263
274
|
|
|
275
|
+
### Capability doctor 与 PowerSync profile
|
|
276
|
+
|
|
277
|
+
`doctor` 输出 Lite 自己的稳定能力契约,不复制完整 Management API:
|
|
278
|
+
|
|
279
|
+
```bash
|
|
280
|
+
supacloud-lite doctor --json
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
默认 PGlite 输出会明确包含:
|
|
284
|
+
|
|
285
|
+
```json
|
|
286
|
+
{
|
|
287
|
+
"engine": "pglite",
|
|
288
|
+
"state_machine_sql": "supported",
|
|
289
|
+
"durable_workflows": "supported",
|
|
290
|
+
"commands": "supported",
|
|
291
|
+
"artifacts": "supported",
|
|
292
|
+
"postgrest_schema_config": "static",
|
|
293
|
+
"logical_replication": "unsupported",
|
|
294
|
+
"powersync_source": "unsupported"
|
|
295
|
+
}
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
PGlite 永远不伪造 WAL、publication 或 replication slot。单机现场 ELN 可以直接把 Lite 当作本地服务器;多设备离线同步应使用中央 SupaCloud + PowerSync,或由应用 outbox 把本地 Lite 数据推送到中央 SupaCloud。PowerSync 客户端本地数据库是 SQLite,与 Lite/PGlite 不是同一层能力。
|
|
299
|
+
|
|
300
|
+
Native Lite 默认仍使用 `wal_level=minimal`、关闭 WAL sender 并且不监听数据库 TCP。只有显式启用 profile 才配置有界 Logical Replication:
|
|
301
|
+
|
|
302
|
+
```bash
|
|
303
|
+
export SUPACLOUD_LITE_POWERSYNC_PASSWORD='<secret-store-value-at-least-32-characters>'
|
|
304
|
+
supacloud-lite migrate \
|
|
305
|
+
--engine native \
|
|
306
|
+
--replication-profile powersync \
|
|
307
|
+
--powersync-tables public.eln_entries,public.eln_observations
|
|
308
|
+
|
|
309
|
+
supacloud-lite doctor --json \
|
|
310
|
+
--engine native \
|
|
311
|
+
--replication-profile powersync \
|
|
312
|
+
--powersync-tables public.eln_entries,public.eln_observations
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
该 profile 使用独立 `supacloud_powersync` 登录角色、显式 `powersync` publication、`wal_level=logical`、4 个 sender、4 个 slot 和 `max_slot_wal_keep_size=1024MB`。默认只允许 loopback 上的 SCRAM 连接;非 loopback 监听必须同时提供 TLS 证书、权限受限的私钥和显式 CIDR allowlist。POSIX 平台要求私钥 mode 不向 group/other 开放;Windows 部署应通过文件 ACL 达到同等限制。
|
|
316
|
+
|
|
317
|
+
Lite 会创建或更新 replication role 与 publication allowlist,但**不会创建、删除或猜测 replication slot**。slot 由固定版本的 PowerSync 服务和运维流程持有。`doctor` 只读检查 WAL、sender/slot 容量、角色、publication、replica identity 和现有 slot 的滞留/失效状态。
|
|
318
|
+
|
|
264
319
|
### 从 Supabase 迁移
|
|
265
320
|
|
|
266
321
|
应用代码、SQL migrations、RLS policy、Storage 调用和 Realtime 订阅可以保持原来的 Supabase 形状。迁移时仍需验证以下边界:
|
|
@@ -448,6 +503,7 @@ supacloud-lite snapshot create [-o backup.tar.gz]
|
|
|
448
503
|
supacloud-lite snapshot restore <backup.tar.gz> [--force]
|
|
449
504
|
supacloud-lite upgrade [-o pre-upgrade.tar.gz]
|
|
450
505
|
supacloud-lite inspect
|
|
506
|
+
supacloud-lite doctor [--json]
|
|
451
507
|
supacloud-lite version
|
|
452
508
|
```
|
|
453
509
|
|
|
@@ -478,6 +534,13 @@ Environment variables:
|
|
|
478
534
|
- `SUPACLOUD_LITE_STORAGE_BACKEND`: `fs` (default), `memory`, or `s3`
|
|
479
535
|
- `SUPACLOUD_LITE_S3_PREFIX`: S3 object key prefix, can be overridden by `--s3-prefix`
|
|
480
536
|
- `SUPACLOUD_LITE_POSTGRES_MIRROR`: HTTPS prefix used to proxy native-engine PostgreSQL release downloads, for example `https://ghproxy.net/`
|
|
537
|
+
- `SUPACLOUD_LITE_ENGINE`: `pglite` (default) or `native`
|
|
538
|
+
- `SUPACLOUD_LITE_REPLICATION_PROFILE`: explicit `powersync` opt-in for the native engine only
|
|
539
|
+
- `SUPACLOUD_LITE_REPLICATION_HOST` / `SUPACLOUD_LITE_REPLICATION_PORT`: PowerSync database listener, default `127.0.0.1:54322`
|
|
540
|
+
- `SUPACLOUD_LITE_REPLICATION_ALLOW_CIDRS`: comma-separated PowerSync client CIDR allowlist
|
|
541
|
+
- `SUPACLOUD_LITE_POWERSYNC_TABLES`: comma-separated schema-qualified publication table allowlist
|
|
542
|
+
- `SUPACLOUD_LITE_POWERSYNC_PASSWORD`: dedicated replication-role password of at least 32 characters; no CLI password flag is provided
|
|
543
|
+
- `SUPACLOUD_LITE_REPLICATION_TLS_CERT_FILE` / `SUPACLOUD_LITE_REPLICATION_TLS_KEY_FILE`: required for non-loopback listeners
|
|
481
544
|
- `SUPACLOUD_LITE_JWT_SECRET`
|
|
482
545
|
- `SUPACLOUD_LITE_VAULT_KEY`
|
|
483
546
|
|
|
@@ -596,6 +659,9 @@ In-memory databases have no persistable data, so `snapshot` and `upgrade` reject
|
|
|
596
659
|
| Edge Functions `SupaCloud.pgredis` | Verified core | Provides single-project persistent KV, TTL, and atomic `getset`/`getdel`; the binding is only available within the current function request |
|
|
597
660
|
| Supabase migrations | Supported | Sorted by filename, recorded in `supabase_migrations` |
|
|
598
661
|
| PostgreSQL RLS | Supported | Executed using the `anon`, `authenticated`, and `service_role` database roles |
|
|
662
|
+
| Maker-Checker SQL | Supported | The reference migration is tested on PGlite/native for role separation, row versions, idempotency, illegal transitions, and append-only audit |
|
|
663
|
+
| Commands / Artifacts | Supported | Uses the same SQL contract as full SupaCloud; PGlite/native are both exercised end-to-end through `@supacloud/js` |
|
|
664
|
+
| Logical Replication / PowerSync source | Conditional | PGlite is unsupported; native requires the explicit `powersync` profile and remains disabled by default |
|
|
599
665
|
| Full PostgREST wire protocol | Partial | Targets common `supabase-js` behavior; does not promise all PostgREST edge-case behavior |
|
|
600
666
|
| PostgreSQL extensions | Partial | Only supports extensions built into PGlite or emulated by Lite |
|
|
601
667
|
| Supabase Studio | Not supported | V1 does not provide an admin UI |
|
|
@@ -603,6 +669,22 @@ In-memory databases have no persistable data, so `snapshot` and `upgrade` reject
|
|
|
603
669
|
|
|
604
670
|
Realtime DELETE on RLS tables cannot safely replay SELECT policies after a row is deleted, so V1 only sends such DELETE events to `service_role` subscribers. Regular users can still receive INSERT/UPDATE events that pass row-by-row RLS validation.
|
|
605
671
|
|
|
672
|
+
### Capability doctor and PowerSync profile
|
|
673
|
+
|
|
674
|
+
`supacloud-lite doctor --json` reports a stable Lite capability contract without copying the full Management API. PGlite explicitly reports Logical Replication and PowerSync source support as `unsupported`; it never emulates WAL, publications, or slots. Multi-device offline deployments should use central SupaCloud + PowerSync, while a single field workstation can use Lite as a local project server or upload through an application-owned outbox.
|
|
675
|
+
|
|
676
|
+
Native Lite keeps `wal_level=minimal`, WAL senders, and database TCP disabled by default. The explicit profile enables bounded Logical Replication:
|
|
677
|
+
|
|
678
|
+
```bash
|
|
679
|
+
export SUPACLOUD_LITE_POWERSYNC_PASSWORD='<secret-store-value-at-least-32-characters>'
|
|
680
|
+
supacloud-lite migrate --engine native --replication-profile powersync \
|
|
681
|
+
--powersync-tables public.eln_entries,public.eln_observations
|
|
682
|
+
supacloud-lite doctor --json --engine native --replication-profile powersync \
|
|
683
|
+
--powersync-tables public.eln_entries,public.eln_observations
|
|
684
|
+
```
|
|
685
|
+
|
|
686
|
+
The profile manages the dedicated `supacloud_powersync` login role and explicit `powersync` publication, with four WAL senders, four slots, and `max_slot_wal_keep_size=1024MB`. It uses loopback SCRAM by default; non-loopback listeners require TLS files and explicit CIDRs. POSIX systems reject group/other-readable private keys; Windows deployments must enforce the equivalent file ACL. Lite never creates or deletes a replication slot. PowerSync and the operator remain responsible for the exact slot lifecycle.
|
|
687
|
+
|
|
606
688
|
### Migrating from Supabase
|
|
607
689
|
|
|
608
690
|
Application code, SQL migrations, RLS policies, Storage calls, and Realtime subscriptions can keep their original Supabase shape. When migrating, you still need to validate the following boundaries:
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -56,15 +56,15 @@ SupaCloud Lite 使用 `tar` 作为跨平台流式快照归档依赖,避免把
|
|
|
56
56
|
|
|
57
57
|
## Bun runtime
|
|
58
58
|
|
|
59
|
-
SupaCloud Lite 单二进制由 Bun 1.
|
|
59
|
+
SupaCloud Lite 单二进制由 Bun 1.4.0 编译并内嵌 Bun runtime,最终用户无需另外安装 Bun、Node.js 或 npm。
|
|
60
60
|
|
|
61
|
-
- Version: 1.
|
|
61
|
+
- Version: 1.4.0
|
|
62
62
|
- Bun license: MIT
|
|
63
63
|
- Upstream: `https://github.com/oven-sh/bun`
|
|
64
|
-
- Local runtime notice: `LICENSES/BUN-1.
|
|
65
|
-
- Notice source: Bun 1.
|
|
66
|
-
- Linked-library coverage: JavaScriptCore/WebKit、`boringssl`、`brotli`、`libarchive`、`lol-html`、`mimalloc`、`picohttp`、`zstd`、`simdutf`、`tinycc`、`uSockets`、`zlib-ng`、`c-ares`、`libicu`
|
|
67
|
-
- Polyfill coverage: `assert`、`browserify-zlib`、`buffer`、`constants-browserify`、`crypto-browserify`、`domain-browser`、`events`、`https-browserify`、`os-browserify`、`path-browserify`、`process`、`punycode`、`querystring-es3`、`stream-browserify`、`stream-http`、`string_decoder`、`timers-browserify`、`tty-browserify`、`url`、`util`、`vm-browserify`
|
|
64
|
+
- Local runtime notice: `LICENSES/BUN-1.4.0-RUNTIME-NOTICES.txt`
|
|
65
|
+
- Notice source: Bun 1.4.0 `docs/project/license.mdx` 的逐字副本
|
|
66
|
+
- Linked-library coverage: JavaScriptCore/WebKit、`boringssl`、`brotli`、`libarchive`、`lol-html`、`ls-hpack`、`ls-qpack`、`lsquic`、`mimalloc`、`picohttp`、`zstd`、`simdutf`、`tinycc`、`uSockets`、`zlib-ng`、`c-ares`、`libicu` 78、`libbase64`、Windows 上的 `libuv`、`libdeflate`、`libjpeg-turbo`、`libspng`、`libwebp`、`highway`、`HdrHistogram_c`、Linux/Windows 上的 `sqlite`、uWebSockets fork 和 Tigerbeetle IO 代码
|
|
67
|
+
- Polyfill coverage: `acorn`、`acorn-walk`、`assert`、`browserify-zlib`、`buffer`、`constants-browserify`、`crypto-browserify`、`domain-browser`、`events`、`https-browserify`、`os-browserify`、`path-browserify`、`process`、`punycode`、`querystring-es3`、`stream-browserify`、`stream-http`、`string_decoder`、`timers-browserify`、`tty-browserify`、`url`、`util`、`vm-browserify`
|
|
68
68
|
|
|
69
69
|
Bun runtime notice 包含 JavaScriptCore/WebKit 的 LGPL-2 说明、静态链接库许可证链接及内嵌 polyfill 许可证清单;发布资产按原文分发,不以本摘要替代。
|
|
70
70
|
|