sqlmath 2022.11.20 → 2023.1.29
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 +13 -0
- package/README.md +1 -1
- package/_binary_sqlmath_napi8_darwin_x64.node +0 -0
- package/_binary_sqlmath_napi8_win32_x64.node +0 -0
- package/_binary_sqlmath_shell_darwin_x64 +0 -0
- package/_binary_sqlmath_shell_linux_x64 +0 -0
- package/_binary_sqlmath_shell_win32_x64.exe +0 -0
- package/jslint.mjs +15 -7
- package/package.json +5 -4
- package/sqlmath.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
# Todo
|
|
4
4
|
- none
|
|
5
5
|
|
|
6
|
+
# v2023.1.29
|
|
7
|
+
- ci - add auto-logo-creation in private repo
|
|
8
|
+
- ci - auto-create asset_image_logo_512.png from asset_image_logo_512.html
|
|
9
|
+
- jslint-ci - revamp auto-updating and add shell-function shGithubCheckoutRemote
|
|
10
|
+
- chart - remove unused external libraries chart.js, moment.js
|
|
11
|
+
- demo - bugfix - fix 1-week-chart ignoring friday before monday-holiday
|
|
12
|
+
|
|
13
|
+
# v2022.12.31
|
|
14
|
+
- chart - bugfix - fix intraday-weekly-chart truncating first datapoint
|
|
15
|
+
- demo - use intraday data for weekly chart
|
|
16
|
+
- demo - allow stock ivv to be used as reference if spy is unavailable
|
|
17
|
+
- demo - rename main-account from 01_mybot to 1a_mybot
|
|
18
|
+
|
|
6
19
|
# v2022.11.20
|
|
7
20
|
- ci - auto-update version-number in main mjs-module
|
|
8
21
|
- editor - update codemirror-editor to v5.65.10
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
# Status
|
|
5
|
-
| Branch | [master<br>(
|
|
5
|
+
| Branch | [master<br>(v2023.1.29)](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) |
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/jslint.mjs
CHANGED
|
@@ -131,11 +131,11 @@
|
|
|
131
131
|
stack, stack_trace, start, startOffset, startsWith, statement,
|
|
132
132
|
statement_prv, stdio, stop, stop_at, stringify, subscript, switch,
|
|
133
133
|
syntax_dict, tenure, test, test_cause, test_internal_error, this, thru,
|
|
134
|
-
toString, token, token_global, token_list, token_nxt,
|
|
135
|
-
trace, tree, trim, trimEnd, trimRight, try, type,
|
|
136
|
-
unshift, url, used, v8CoverageListMerge,
|
|
137
|
-
variable, version, versions, warn, warn_at,
|
|
138
|
-
white, wrapped, writeFile
|
|
134
|
+
toLocaleString, toString, token, token_global, token_list, token_nxt,
|
|
135
|
+
token_tree, tokens, trace, tree, trim, trimEnd, trimRight, try, type,
|
|
136
|
+
unlink, unordered, unshift, url, used, v8CoverageListMerge,
|
|
137
|
+
v8CoverageReportCreate, value, variable, version, versions, warn, warn_at,
|
|
138
|
+
warning, warning_list, warnings, white, wrapped, writeFile
|
|
139
139
|
*/
|
|
140
140
|
|
|
141
141
|
// init debugInline
|
|
@@ -165,7 +165,7 @@ let jslint_charset_ascii = (
|
|
|
165
165
|
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
|
166
166
|
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
|
|
167
167
|
);
|
|
168
|
-
let jslint_edition = "
|
|
168
|
+
let jslint_edition = "v2023.1.1-beta";
|
|
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.
|
|
@@ -4185,7 +4185,11 @@ function jslint_phase3_parse(state) {
|
|
|
4185
4185
|
}
|
|
4186
4186
|
}).reduce(function (aa, bb) {
|
|
4187
4187
|
if (
|
|
4188
|
-
|
|
4188
|
+
|
|
4189
|
+
// PR-419 - Hide warning about unordered case-statements behind beta-flag.
|
|
4190
|
+
|
|
4191
|
+
option_dict.beta
|
|
4192
|
+
&& !option_dict.unordered
|
|
4189
4193
|
&& aa && bb
|
|
4190
4194
|
&& (
|
|
4191
4195
|
aa.order > bb.order
|
|
@@ -9977,6 +9981,10 @@ function jstestOnExit(exitCode, mode) {
|
|
|
9977
9981
|
)
|
|
9978
9982
|
+ " tests total - " + jstestCountTotal + "\n"
|
|
9979
9983
|
+ " tests failed - " + jstestCountFailed + "\n"
|
|
9984
|
+
+ "\n"
|
|
9985
|
+
+ " time finished - "
|
|
9986
|
+
+ Number(Date.now() - jstestTimeStart).toLocaleString()
|
|
9987
|
+
+ " ms\n"
|
|
9980
9988
|
+ "\u001b[39m"
|
|
9981
9989
|
);
|
|
9982
9990
|
if (mode !== "testsFailed") {
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": ">=14"
|
|
13
13
|
},
|
|
14
|
-
"fileCount":
|
|
14
|
+
"fileCount": 33,
|
|
15
15
|
"homepage": "https://github.com/sqlmath/sqlmath",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"data-science",
|
|
@@ -34,8 +34,9 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "sh jslint_ci.sh shCiBuildNodejs",
|
|
36
36
|
"test": "sh jslint_ci.sh shCiTestNodejs",
|
|
37
|
-
"test2": "sh jslint_ci.sh shCiBase"
|
|
38
|
-
"test_win32": "node -e \"require('child_process').spawn('C:\\\\Program Files\\\\Git\\\\bin\\\\bash.exe',['-c','npm run test' + ' ' + process.argv.slice(1).join(' ')],{stdio:['ignore',1,2]});\""
|
|
37
|
+
"test2": "sh jslint_ci.sh shCiBase"
|
|
39
38
|
},
|
|
40
|
-
"
|
|
39
|
+
"shCiArtifactUpload": 1,
|
|
40
|
+
"shCiNpmPublish": 1,
|
|
41
|
+
"version": "2023.1.29"
|
|
41
42
|
}
|
package/sqlmath.mjs
CHANGED