sqlmath 2025.3.31 → 2025.6.28
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 +10 -0
- package/README.md +8 -8
- package/jslint.mjs +1 -1
- package/package.json +2 -2
- package/sqlmath.mjs +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@
|
|
|
5
5
|
- sqlite - Add similar error-handling from builtin-sql-function PERCENTILE() into custom-sql-function QUANTILE().
|
|
6
6
|
- none
|
|
7
7
|
|
|
8
|
+
# v2025.6.28
|
|
9
|
+
- sqlite - Upgrade to sqlite-v3.50.2.
|
|
10
|
+
- sqlmath - Update function dbExecAsync() with extra param modeNoop, used in mock-code-coverage.
|
|
11
|
+
|
|
12
|
+
# v2025.5.31
|
|
13
|
+
- sqlite - Upgrade to sqlite-v3.49.2.
|
|
14
|
+
- betadog - Add table a_lgbm_intra, and prm a_state.zcis_spx.
|
|
15
|
+
- lgbm - Upgrade to lightgbm-v4.6.0.
|
|
16
|
+
- jslint - Upgrade to jslint-v2025.3.31.
|
|
17
|
+
|
|
8
18
|
# v2025.3.31
|
|
9
19
|
- ubuntu-ci - bugfix - Fix out-of-date apt-list when installing graphicsmagick.
|
|
10
20
|
- sqlite - Upgrade to sqlite-v3.49.1.
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
# Status
|
|
5
|
-
| Branch | [master<br>(v2025.
|
|
5
|
+
| Branch | [master<br>(v2025.6.28)](https://github.com/sqlmath/sqlmath/tree/master) | [beta<br>(Web Demo)](https://github.com/sqlmath/sqlmath/tree/beta) | [alpha<br>(Development)](https://github.com/sqlmath/sqlmath/tree/alpha) |
|
|
6
6
|
|--:|:--:|:--:|:--:|
|
|
7
7
|
| CI | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
|
|
8
8
|
| Coverage | [](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/index.html) |
|
|
@@ -121,11 +121,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
|
|
|
121
121
|
```shell
|
|
122
122
|
python -m build
|
|
123
123
|
#
|
|
124
|
-
twine upload --repository testpypi dist/sqlmath-2025.
|
|
125
|
-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2025.
|
|
124
|
+
twine upload --repository testpypi dist/sqlmath-2025.6.28*
|
|
125
|
+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2025.6.28
|
|
126
126
|
#
|
|
127
|
-
twine upload dist/sqlmath-2025.
|
|
128
|
-
pip install sqlmath==2025.
|
|
127
|
+
twine upload dist/sqlmath-2025.6.28*
|
|
128
|
+
pip install sqlmath==2025.6.28
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
|
|
@@ -136,11 +136,11 @@ pip install sqlmath==2025.3.31
|
|
|
136
136
|
(set -e
|
|
137
137
|
#
|
|
138
138
|
# lgbm
|
|
139
|
-
sh jslint_ci.sh shRollupUpgrade "v4.
|
|
139
|
+
sh jslint_ci.sh shRollupUpgrade "v4.5.0" "v4.6.0" ".ci.sh sqlmath_base.h"
|
|
140
140
|
#
|
|
141
141
|
# sqlite
|
|
142
|
-
sh jslint_ci.sh shRollupUpgrade "3.
|
|
143
|
-
sh jslint_ci.sh shRollupUpgrade "
|
|
142
|
+
sh jslint_ci.sh shRollupUpgrade "3.49.2" "3.50.2" ".ci.sh sqlmath_external_sqlite.c"
|
|
143
|
+
sh jslint_ci.sh shRollupUpgrade "3490200" "3500200" ".ci.sh sqlmath_external_sqlite.c"
|
|
144
144
|
#
|
|
145
145
|
# zlib
|
|
146
146
|
# sh jslint_ci.sh shRollupUpgrade "1.3" "1.3.1" ".ci.sh sqlmath_external_zlib.c"
|
package/jslint.mjs
CHANGED
|
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
|
|
|
163
163
|
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
|
164
164
|
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
|
|
165
165
|
);
|
|
166
|
-
let jslint_edition = "v2025.3.
|
|
166
|
+
let jslint_edition = "v2025.3.31";
|
|
167
167
|
let jslint_export; // The jslint object to be exported.
|
|
168
168
|
let jslint_fudge = 1; // Fudge starting line and starting
|
|
169
169
|
// ... column to 1.
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"email": "kaizhu256@gmail.com",
|
|
4
4
|
"name": "kai zhu"
|
|
5
5
|
},
|
|
6
|
-
"counter":
|
|
6
|
+
"counter": 2,
|
|
7
7
|
"description": "sqlite for data-science",
|
|
8
8
|
"fileCount": 46,
|
|
9
9
|
"homepage": "https://github.com/sqlmath/sqlmath",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
},
|
|
33
33
|
"shCiArtifactUpload": 1,
|
|
34
34
|
"shCiPublishNpm": 1,
|
|
35
|
-
"version": "2025.
|
|
35
|
+
"version": "2025.6.28"
|
|
36
36
|
}
|
package/sqlmath.mjs
CHANGED
|
@@ -122,7 +122,7 @@ let {
|
|
|
122
122
|
let sqlMessageDict = {}; // dict of web-worker-callbacks
|
|
123
123
|
let sqlMessageId = 0;
|
|
124
124
|
let sqlWorker;
|
|
125
|
-
let version = "v2025.
|
|
125
|
+
let version = "v2025.6.28";
|
|
126
126
|
|
|
127
127
|
async function assertErrorThrownAsync(asyncFunc, regexp) {
|
|
128
128
|
|
|
@@ -724,6 +724,7 @@ function dbExecAndReturnLastValue({
|
|
|
724
724
|
async function dbExecAsync({
|
|
725
725
|
bindList = [],
|
|
726
726
|
db,
|
|
727
|
+
modeNoop,
|
|
727
728
|
responseType,
|
|
728
729
|
sql
|
|
729
730
|
}) {
|
|
@@ -735,6 +736,9 @@ async function dbExecAsync({
|
|
|
735
736
|
let bufi = [0];
|
|
736
737
|
let referenceList = [];
|
|
737
738
|
let result;
|
|
739
|
+
if (modeNoop) {
|
|
740
|
+
return;
|
|
741
|
+
}
|
|
738
742
|
if (bindByKey) {
|
|
739
743
|
Object.entries(bindList).forEach(function ([key, val]) {
|
|
740
744
|
baton = jsbatonSetValue(baton, undefined, `:${key}\u0000`);
|