Skip to content

Commit 36ca697

Browse files
committed
# v2026.8.31
- jslint-editor - Update codemirror-editor to v5.65.21. - jslint-ci - Update ci-shell-function shGitLsTree() to include sha256 hash of files.
1 parent 94d5057 commit 36ca697

9 files changed

Lines changed: 178 additions & 144 deletions

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ import moduleFs from "fs";
636636
"type": "git",
637637
"url": "https://github.com/jslint-org/jslint.git"
638638
},
639-
"version": "2026.7.30"
639+
"version": "2026.8.31"
640640
}, undefined, 4)
641641
}
642642
].map(async function ({

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
- jslint - Add new warning requiring paren around plus-separated concatenations.
1212
- jslint - Try to improve parser to be able to parse jquery.js without stopping.
1313

14+
# v2026.8.31
15+
- jslint-editor - Update codemirror-editor to v5.65.21.
16+
- jslint-ci - Update ci-shell-function shGitLsTree() to include sha256 hash of files.
17+
1418
# v2026.7.30
1519
- jslint-ecma - Add ES2015-feature for..of.
1620
- jslint - Disable directive-option /*jslint for*/, replacing it with for-loop specific warnings.

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Douglas Crockford <douglas@crockford.com>
33

44

55
# Status
6-
| Branch | [master<br>(v2026.7.30)](https://github.com/jslint-org/jslint/tree/master) | [beta<br>(Web Demo)](https://github.com/jslint-org/jslint/tree/beta) | [alpha<br>(Development)](https://github.com/jslint-org/jslint/tree/alpha) |
6+
| Branch | [master<br>(v2026.8.31)](https://github.com/jslint-org/jslint/tree/master) | [beta<br>(Web Demo)](https://github.com/jslint-org/jslint/tree/beta) | [alpha<br>(Development)](https://github.com/jslint-org/jslint/tree/alpha) |
77
|--:|:--:|:--:|:--:|
88
| CI | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jslint-org/jslint/actions?query=branch%3Amaster) | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=beta)](https://github.com/jslint-org/jslint/actions?query=branch%3Abeta) | [![ci](https://github.com/jslint-org/jslint/actions/workflows/ci.yml/badge.svg?branch=alpha)](https://github.com/jslint-org/jslint/actions?query=branch%3Aalpha) |
99
| Coverage | [![coverage](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-master/.artifact/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-beta/.artifact/coverage/index.html) | [![coverage](https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/coverage_badge.svg)](https://jslint-org.github.io/jslint/branch-alpha/.artifact/coverage/index.html) |
@@ -279,7 +279,7 @@ import fs from "fs";
279279
#!/bin/sh
280280

281281
git clone https://github.com/tryghost/node-sqlite3 node-sqlite3-sh \
282-
--branch=v5.0.11 \
282+
--branch=v6.0.1 \
283283
--depth=1 \
284284
--single-branch
285285

@@ -328,7 +328,7 @@ node ../jslint.mjs \
328328
#!/bin/sh
329329

330330
git clone https://github.com/tryghost/node-sqlite3 node-sqlite3-js \
331-
--branch=v5.0.11 \
331+
--branch=v6.0.1 \
332332
--depth=1 \
333333
--single-branch
334334

@@ -397,11 +397,11 @@ import jslint from "../jslint.mjs";
397397

398398
<!-- Assets from codemirror. -->
399399

400-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.10/codemirror.css">
401-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.10/addon/lint/lint.css">
402-
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.10/codemirror.js"></script>
403-
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.10/mode/javascript/javascript.js"></script>
404-
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.10/addon/lint/lint.js"></script>
400+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.21/codemirror.css">
401+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.21/addon/lint/lint.css">
402+
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.21/codemirror.js"></script>
403+
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.21/mode/javascript/javascript.js"></script>
404+
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.21/addon/lint/lint.js"></script>
405405

406406
<!-- Assets from jslint. -->
407407

@@ -980,7 +980,7 @@ if (false) {
980980
<br><br>
981981
# License
982982
- JSLint is under [Unlicense License](LICENSE).
983-
- CodeMirror editor is under [MIT License](https://github.com/codemirror/codemirror5/blob/d0e3b2e727c41aa4fd89fbad0adfb3815339174c/LICENSE).
983+
- CodeMirror editor is under [MIT License](https://github.com/codemirror/codemirror5/blob/34b84359c4ce289086c82c203f66ef74614d8a0d/LICENSE).
984984
- Function `v8CoverageListMerge` is derived from [MIT Licensed v8-coverage](https://github.com/demurgos/v8-coverage/blob/73446087dc38f61b09832c9867122a23f8577099/ts/LICENSE.md).
985985

986986

@@ -1068,7 +1068,7 @@ if (false) {
10681068
- verify ci-success @ https://github.com/kaizhu256/jslint/actions
10691069
- verify ci-success @ https://github.com/jslint-org/jslint/actions
10701070

1071-
1. goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2026.7.30
1071+
1. goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2026.8.31
10721072
- click `Create pull request`
10731073
- input `Add a title *` with: `# v20yy.mm.dd`
10741074
- input `Add a description` with:

0 commit comments

Comments
 (0)