File tree Expand file tree Collapse file tree 6 files changed +14
-13
lines changed Expand file tree Collapse file tree 6 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -441,7 +441,7 @@ import moduleFs from "fs";
441
441
"type": "git",
442
442
"url": "https://github.com/jslint-org/jslint.git"
443
443
},
444
- "version": "2025.3.1 "
444
+ "version": "2025.3.31 "
445
445
}, undefined, 4)
446
446
}
447
447
].map(async function ({
Original file line number Diff line number Diff line change 7
7
- jslint - add new warning requiring paren around plus-separated concatenations.
8
8
- jslint - try to improve parser to be able to parse jquery.js without stopping.
9
9
10
- # v2025.3.1-beta
10
+ # v2025.3.31
11
+ - ci - Upgrade nodejs used in ci to v22.
11
12
- ubuntu-ci - bugfix - Fix out-of-date apt-list when installing graphicsmagick.
12
13
- jslint - Cleanup ci-shell-function shRollupFetch().
13
14
- jslint - Update ci-shell-function shDirHttplinkValidate() with pragma <\! !--novalidate--\> .
14
- - ci - Upgrade nodejs used in ci to v22.
15
15
- ci - Upgrade python used in ci to v3.12.
16
16
- ci - Auto-create asset_image_logo_256.png from asset_image_logo_256.html.
17
17
- ci - Fix shell-function shRollupFetch() from making excessive github-api-request.
Original file line number Diff line number Diff line change 3
3
4
4
5
5
# Status
6
- | Branch | [ master<br >(v2024.11.24 )] ( 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 >(v2025.3.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 ) |
7
7
| --:| :--:| :--:| :--:|
8
8
| 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 ) |
9
9
| 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 ) |
@@ -963,7 +963,7 @@ This PR will additionally:
963
963
- ` git push upstream alpha -f `
964
964
- verify ci-success for upstream-branch-alpha
965
965
- https://github.com/jslint-org/jslint/actions
966
- - goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2024.11.24
966
+ - goto https://github.com/jslint-org/jslint/compare/beta...kaizhu256:jslint:branch-v2025.3.31
967
967
- click ` Create pull request `
968
968
- input ` Add a title ` with: ` # v20yy.mm.dd `
969
969
- input ` Add a description ` with:
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163
163
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164
164
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165
165
) ;
166
- let jslint_edition = "v2025.3.1-beta " ;
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.
Original file line number Diff line number Diff line change @@ -705,7 +705,7 @@ import moduleHttps from "https";
705
705
}
706
706
moduleAssert.ok(
707
707
!url.startsWith("http://"),
708
- `shDirHttplinkValidate - ${file} - insecure-link - ${url}`
708
+ `shDirHttplinkValidate - insecure-link - ${file} - ${url}`
709
709
);
710
710
// ignore duplicate-link
711
711
if (dict.hasOwnProperty(url)) {
@@ -718,17 +718,17 @@ import moduleHttps from "https";
718
718
}
719
719
}, function (res) {
720
720
console.error(
721
- `shDirHttplinkValidate ${res.statusCode} ${url }`
722
- + ` - ${Date.now() - timeStart}ms`
721
+ `shDirHttplinkValidate - ${res.statusCode}`
722
+ + ` - ${file} - ${url} - ${ Date.now() - timeStart}ms`
723
723
);
724
724
moduleAssert.ok(res.statusCode < 400);
725
725
req.destroy();
726
726
res.destroy();
727
727
});
728
728
req.on("error", function (err) {
729
729
console.error(
730
- `shDirHttplinkValidate - ${file} - error - ${url} `
731
- + ` - ${Date.now() - timeStart}ms`
730
+ `shDirHttplinkValidate - error`
731
+ + ` - ${file} - ${url} - ${ Date.now() - timeStart}ms`
732
732
);
733
733
throw err;
734
734
});
@@ -757,7 +757,8 @@ import moduleHttps from "https";
757
757
).test(url)) {
758
758
moduleFs.stat(url.split("?")[0], function (ignore, exists) {
759
759
console.error(
760
- `shDirHttplinkValidate ${Boolean(exists)} ${url}`
760
+ `shDirHttplinkValidate - ${Boolean(exists)}`
761
+ + ` - ${file} - ${url}`
761
762
);
762
763
moduleAssert.ok(exists);
763
764
});
Original file line number Diff line number Diff line change 35
35
"shCiArtifactUpload" : 1 ,
36
36
"shCiPublishNpm" : 1 ,
37
37
"type" : " module" ,
38
- "version" : " 2025.3.1-beta "
38
+ "version" : " 2025.3.31 "
39
39
}
You can’t perform that action at this time.
0 commit comments