@dolthub/doltlite-wasm 0.50.2 → 0.50.3

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/LICENSE.md CHANGED
@@ -56,8 +56,8 @@ public domain.
56
56
  > * May you find forgiveness for yourself and forgive others.
57
57
  > * May you share freely, never taking more than you give.
58
58
 
59
- Almost every file you find in this source repository will be
60
- public domain. But there are a small number of exceptions:
59
+ SQLite's own sources in this repository are public domain. DoltLite
60
+ code and the vendored libraries below are not. Other exceptions:
61
61
 
62
62
  Non-Public-Domain Code Included With This Source Repository AS A Convenience
63
63
  ----------------------------------------------------------------------------
@@ -68,18 +68,12 @@ words, there are some non-public-domain files used to implement:
68
68
 
69
69
  > ./configure && make
70
70
 
71
- In all cases, the non-public-domain files included with this
72
- repository have generous BSD-style licenses. So anyone is free to
73
- use any of the code in this source repository for any purpose, though
74
- attribution may be required to reuse or republish the configure and
75
- build scripts. None of the non-public-domain code ever actually reaches
76
- the build products, such as "sqlite3.c", however, so no attribution is
77
- required to use SQLite itself. The non-public-domain code consists of
78
- scripts used to help compile SQLite. The non-public-domain code is
79
- technically not part of SQLite. The non-public-domain code is
80
- included in this repository as a convenience to developers, so that those
81
- who want to build SQLite do not need to go download a bunch of
82
- third-party build scripts in order to compile SQLite.
71
+ SQLite's configure/build scripts (autosetup, legacy autoconf) have
72
+ BSD-style licenses and do not reach the DoltLite build products. They
73
+ are included as a convenience so a source checkout can `./configure &&
74
+ make` without fetching third-party build tools. Other non-public-domain
75
+ code in this tree — DoltLite itself (Apache-2.0) and the vendored
76
+ libraries below **does** reach `libdoltlite` and the CLI.
83
77
 
84
78
  Non-public-domain code included in this respository includes:
85
79
 
@@ -103,11 +97,26 @@ Non-public-domain code included in this respository includes:
103
97
  and `ext/blake3/README.md` for the full license texts and a
104
98
  description of DoltLite-specific modifications.
105
99
 
106
- The following unix shell command can be run from the top-level
107
- of this source repository in order to remove all non-public-domain
108
- code:
100
+ * Vendored [Mbed TLS](https://www.trustedfirmware.org/projects/mbed-tls/)
101
+ under `ext/mbedtls/`, used for HTTPS remotes and `doltlite-remotesrv`
102
+ TLS. Dual-licensed Apache-2.0 OR GPL-2.0-or-later; see
103
+ `ext/mbedtls/LICENSE`. This code is linked into builds that include
104
+ remotes.
105
+
106
+ * Vendored Ed25519 (Orson Peters) under `ext/ed25519/`, used for JWT
107
+ signing and verification. zlib-style license; see
108
+ `ext/ed25519/LICENSE`. This code is linked into credential and
109
+ remotesrv builds.
110
+
111
+ Autosetup and the legacy autoconf scripts do not reach `libdoltlite` or
112
+ the CLI. BLAKE3, Mbed TLS, and Ed25519 do: they are in the DoltLite
113
+ build products, not "build scripts only."
114
+
115
+ The following unix shell command removes the configure/build-script
116
+ exceptions:
109
117
 
110
118
  > rm -rf configure autosetup autoconf
111
119
 
112
- If you unpack this source repository and then run the command above, what
113
- is left will be 100% public domain.
120
+ That does **not** leave a 100% public-domain tree. What remains is
121
+ public-domain SQLite, Apache-2.0 DoltLite code, and the vendored
122
+ libraries listed above.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolthub/doltlite-wasm",
3
- "version": "0.50.2",
3
+ "version": "0.50.3",
4
4
  "description": "DoltLite compiled to WebAssembly: SQLite with Dolt-style version control (branches, commits, merge, diff) for the browser and any JS runtime.",
5
5
  "type": "module",
6
6
  "main": "index.mjs",