@velarscript-labs/sqlite 0.3.2 → 0.3.4
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 +11 -0
- package/README.md +6 -0
- package/THIRD_PARTY_NOTICES.md +35 -0
- package/dist/index.js +2 -1936
- package/dist/index.js.map +1 -1
- package/dist/index.veli.json +213 -129
- package/dist/velar-library.json +10 -6
- package/package.json +24 -6
- package/src/generated/worker-source.vel +3 -0
- package/src/index.vel +44 -242
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.4 — 2026-09-07
|
|
4
|
+
|
|
5
|
+
- Generate an explicit module Worker resource containing the SQLite grammar
|
|
6
|
+
parser, and build the frozen artifact for VelarScript 0.30.
|
|
7
|
+
- Harden Worker readiness, failure, exit, and close lifecycle handling.
|
|
8
|
+
|
|
9
|
+
## 0.3.3 — 2026-08-27
|
|
10
|
+
|
|
11
|
+
- Rebuild the frozen Node library artifact with VelarScript 0.18 and depend on
|
|
12
|
+
Database 0.3.3.
|
|
13
|
+
|
|
3
14
|
## 0.3.2 — 2026-08-25
|
|
4
15
|
|
|
5
16
|
- Rebuild the frozen Node library artifact with VelarScript 0.15, require the
|
package/README.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
An injection-resistant, bounded asynchronous SQLite capability for VelarScript
|
|
4
4
|
Node applications, backed by Node's built-in SQLite driver on one owned Worker.
|
|
5
5
|
|
|
6
|
+
During maintenance, `npm run generate:worker` bundles the readable
|
|
7
|
+
`worker/sqlite-worker.mjs` entry and its grammar parser into the committed
|
|
8
|
+
`src/generated/worker-source.vel` module. Published packages retain that
|
|
9
|
+
generated module and its notices, while application deployments use only the
|
|
10
|
+
explicit Worker resource and Node built-ins.
|
|
11
|
+
|
|
6
12
|
The API accepts only structured `DatabaseStatement` values from
|
|
7
13
|
`@velarscript-labs/database`. Runtime values remain separate from SQL grammar,
|
|
8
14
|
then Node's `SQLTagStore` binds them into cached prepared statements. Every SQL
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
The generated SQLite Worker contains `sqlite3-parser` 0.7.1.
|
|
4
|
+
|
|
5
|
+
## sqlite3-parser
|
|
6
|
+
|
|
7
|
+
MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2026 Jake Teton-Landis
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Additional notice regarding vendored SQLite sources:
|
|
30
|
+
|
|
31
|
+
Some files under `vendor/` originate from the SQLite project. SQLite is in the
|
|
32
|
+
public domain, and those upstream SQLite source files remain available under
|
|
33
|
+
public-domain terms. Repository-specific modifications and original code in
|
|
34
|
+
this repository are provided under the MIT license above unless otherwise
|
|
35
|
+
noted.
|