sqlmath 2023.6.26 → 2023.7.21
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 +4 -0
- package/README.md +5 -5
- package/jslint.mjs +1 -1
- package/package.json +1 -1
- package/sqlmath.mjs +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
# Todo
|
|
4
4
|
- none
|
|
5
5
|
|
|
6
|
+
# v2023.7.21
|
|
7
|
+
- sqlmath - Update sql-function win_slr2() to additionally return predicted y-value and rmse.
|
|
8
|
+
- betadog - Migrate market-indicator from spy to spx.
|
|
9
|
+
|
|
6
10
|
# v2023.6.26
|
|
7
11
|
- sqlmath - fix broken interpolation in sql-function quantile().
|
|
8
12
|
- sqlmath - Add sql-function win_quantile1(), win_quantile2().
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
# Status
|
|
5
|
-
| Branch | [master<br>(v2023.
|
|
5
|
+
| Branch | [master<br>(v2023.7.21)](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) |
|
|
@@ -120,9 +120,9 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
|
|
|
120
120
|
```shell
|
|
121
121
|
python -m build
|
|
122
122
|
#
|
|
123
|
-
twine upload --repository testpypi dist/sqlmath-2023.
|
|
124
|
-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.
|
|
123
|
+
twine upload --repository testpypi dist/sqlmath-2023.7.21*
|
|
124
|
+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.7.21
|
|
125
125
|
#
|
|
126
|
-
twine upload dist/sqlmath-2023.
|
|
127
|
-
pip install sqlmath==2023.
|
|
126
|
+
twine upload dist/sqlmath-2023.7.21*
|
|
127
|
+
pip install sqlmath==2023.7.21
|
|
128
128
|
```
|
package/jslint.mjs
CHANGED
|
@@ -165,7 +165,7 @@ let jslint_charset_ascii = (
|
|
|
165
165
|
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
|
166
166
|
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
|
|
167
167
|
);
|
|
168
|
-
let jslint_edition = "v2023.6.
|
|
168
|
+
let jslint_edition = "v2023.6.21";
|
|
169
169
|
let jslint_export; // The jslint object to be exported.
|
|
170
170
|
let jslint_fudge = 1; // Fudge starting line and starting
|
|
171
171
|
// ... column to 1.
|
package/package.json
CHANGED
package/sqlmath.mjs
CHANGED
|
@@ -60,6 +60,7 @@ let SQLITE_OPEN_TEMP_JOURNAL = 0x00001000; /* VFS only */
|
|
|
60
60
|
let SQLITE_OPEN_TRANSIENT_DB = 0x00000400; /* VFS only */
|
|
61
61
|
let SQLITE_OPEN_URI = 0x00000040; /* Ok for sqlite3_open_v2() */
|
|
62
62
|
let SQLITE_OPEN_WAL = 0x00080000; /* VFS only */
|
|
63
|
+
let SQLITE_WIN_SLR_ELEM_SIZE = 10;
|
|
63
64
|
let cModule;
|
|
64
65
|
let cModulePath;
|
|
65
66
|
let consoleError = console.error;
|
|
@@ -97,7 +98,7 @@ let {
|
|
|
97
98
|
let sqlMessageDict = {}; // dict of web-worker-callbacks
|
|
98
99
|
let sqlMessageId = 0;
|
|
99
100
|
let sqlWorker;
|
|
100
|
-
let version = "v2023.
|
|
101
|
+
let version = "v2023.7.21";
|
|
101
102
|
|
|
102
103
|
function assertJsonEqual(aa, bb, message) {
|
|
103
104
|
|
|
@@ -1356,6 +1357,7 @@ export {
|
|
|
1356
1357
|
SQLITE_OPEN_TRANSIENT_DB,
|
|
1357
1358
|
SQLITE_OPEN_URI,
|
|
1358
1359
|
SQLITE_OPEN_WAL,
|
|
1360
|
+
SQLITE_WIN_SLR_ELEM_SIZE,
|
|
1359
1361
|
assertJsonEqual,
|
|
1360
1362
|
assertNumericalEqual,
|
|
1361
1363
|
assertOrThrow,
|