Skip to content

Commit 73705ec

Browse files
committed
# v2025.3.31
- ci - Upgrade nodejs used in ci to v22. - ubuntu-ci - bugfix - Fix out-of-date apt-list when installing graphicsmagick. - jslint - Cleanup ci-shell-function shRollupFetch(). - jslint - Update ci-shell-function shDirHttplinkValidate() with pragma <\!!--novalidate--\>. - ci - Upgrade python used in ci to v3.12. - ci - Auto-create asset_image_logo_256.png from asset_image_logo_256.html. - ci - Fix shell-function shRollupFetch() from making excessive github-api-request. - ci - Fix improperly-cropped jslint-logo, auto-generated by headless-chrome. - ci - Fix failed-ci from missing graphicsmagick library in latest Ubuntu image.
1 parent 43e4ef8 commit 73705ec

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ import moduleFs from "fs";
441441
"type": "git",
442442
"url": "https://github.com/jslint-org/jslint.git"
443443
},
444-
"version": "2025.3.1"
444+
"version": "2025.3.31"
445445
}, undefined, 4)
446446
}
447447
].map(async function ({

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
- jslint - add new warning requiring paren around plus-separated concatenations.
88
- jslint - try to improve parser to be able to parse jquery.js without stopping.
99

10-
# v2025.3.1-beta
10+
# v2025.3.31
11+
- ci - Upgrade nodejs used in ci to v22.
1112
- ubuntu-ci - bugfix - Fix out-of-date apt-list when installing graphicsmagick.
1213
- jslint - Cleanup ci-shell-function shRollupFetch().
1314
- jslint - Update ci-shell-function shDirHttplinkValidate() with pragma <\!!--novalidate--\>.
14-
- ci - Upgrade nodejs used in ci to v22.
1515
- ci - Upgrade python used in ci to v3.12.
1616
- ci - Auto-create asset_image_logo_256.png from asset_image_logo_256.html.
1717
- ci - Fix shell-function shRollupFetch() from making excessive github-api-request.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Douglas Crockford <[email protected]>
33

44

55
# 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) |
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) |
@@ -963,7 +963,7 @@ This PR will additionally:
963963
- `git push upstream alpha -f`
964964
- verify ci-success for upstream-branch-alpha
965965
- 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
967967
- click `Create pull request`
968968
- input `Add a title` with: `# v20yy.mm.dd`
969969
- input `Add a description` with:

jslint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163163
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164164
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165165
);
166-
let jslint_edition = "v2025.3.1-beta";
166+
let jslint_edition = "v2025.3.31";
167167
let jslint_export; // The jslint object to be exported.
168168
let jslint_fudge = 1; // Fudge starting line and starting
169169
// ... column to 1.

jslint_ci.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ import moduleHttps from "https";
705705
}
706706
moduleAssert.ok(
707707
!url.startsWith("http://"),
708-
`shDirHttplinkValidate - ${file} - insecure-link - ${url}`
708+
`shDirHttplinkValidate - insecure-link - ${file} - ${url}`
709709
);
710710
// ignore duplicate-link
711711
if (dict.hasOwnProperty(url)) {
@@ -718,17 +718,17 @@ import moduleHttps from "https";
718718
}
719719
}, function (res) {
720720
console.error(
721-
`shDirHttplinkValidate ${res.statusCode} ${url}`
722-
+ ` - ${Date.now() - timeStart}ms`
721+
`shDirHttplinkValidate - ${res.statusCode}`
722+
+ ` - ${file} - ${url} - ${Date.now() - timeStart}ms`
723723
);
724724
moduleAssert.ok(res.statusCode < 400);
725725
req.destroy();
726726
res.destroy();
727727
});
728728
req.on("error", function (err) {
729729
console.error(
730-
`shDirHttplinkValidate - ${file} - error - ${url}`
731-
+ ` - ${Date.now() - timeStart}ms`
730+
`shDirHttplinkValidate - error`
731+
+ ` - ${file} - ${url} - ${Date.now() - timeStart}ms`
732732
);
733733
throw err;
734734
});
@@ -757,7 +757,8 @@ import moduleHttps from "https";
757757
).test(url)) {
758758
moduleFs.stat(url.split("?")[0], function (ignore, exists) {
759759
console.error(
760-
`shDirHttplinkValidate ${Boolean(exists)} ${url}`
760+
`shDirHttplinkValidate - ${Boolean(exists)}`
761+
+ ` - ${file} - ${url}`
761762
);
762763
moduleAssert.ok(exists);
763764
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"shCiArtifactUpload": 1,
3636
"shCiPublishNpm": 1,
3737
"type": "module",
38-
"version": "2025.3.1-beta"
38+
"version": "2025.3.31"
3939
}

0 commit comments

Comments
 (0)