francois 0.34.2 → 0.34.3
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/lib/extensions.js +1 -1
- package/manifest.json +5 -5
- package/package.json +1 -1
package/lib/extensions.js
CHANGED
|
@@ -87,8 +87,8 @@ function assertNoForbiddenArgv0(root) {
|
|
|
87
87
|
* `sanitizeForDisplay` in src/features/extensions/extensions.ts — the manifest
|
|
88
88
|
* `label` is untrusted, disk-supplied text and must never carry terminal
|
|
89
89
|
* control sequences to stdout. */
|
|
90
|
-
// eslint-disable-next-line no-control-regex
|
|
91
90
|
const CONTROL_OR_BIDI_RE =
|
|
91
|
+
// eslint-disable-next-line no-control-regex -- the control range IS the subject
|
|
92
92
|
/[\u0000-\u001f\u007f-\u009f\u061c\u200e\u200f\u202a-\u202e\u2066-\u2069]/gu;
|
|
93
93
|
function sanitizeForDisplay(value) {
|
|
94
94
|
return typeof value === 'string' ? value.replace(CONTROL_OR_BIDI_RE, '') : value;
|
package/manifest.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"repo": "antoine-gmnz/francois",
|
|
3
|
-
"tag": "v0.34.
|
|
3
|
+
"tag": "v0.34.3",
|
|
4
4
|
"channel": "stable",
|
|
5
|
-
"appVersion": "0.34.
|
|
5
|
+
"appVersion": "0.34.3",
|
|
6
6
|
"productName": "Francois",
|
|
7
7
|
"assets": {
|
|
8
|
-
"darwin-universal": { "name": "francois-darwin-universal.tar.gz", "sha256": "
|
|
9
|
-
"linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "
|
|
10
|
-
"win32-x64": { "name": "francois-win32-x64.zip", "sha256": "
|
|
8
|
+
"darwin-universal": { "name": "francois-darwin-universal.tar.gz", "sha256": "bae55939ccb9c4f9b0efb163472a2395dfbed2ff51ab1ecf0141b96071058a1a" },
|
|
9
|
+
"linux-x64": { "name": "francois-linux-x64.tar.gz", "sha256": "5b5cd687d362bdd54eda5f1e8ffd08287cd8b52bcc15db1611821be45b12bb41" },
|
|
10
|
+
"win32-x64": { "name": "francois-win32-x64.zip", "sha256": "4d92346f40222abe0e333caed570fbc3576c35e8342d7a4f0a7968ffda57ff5f" }
|
|
11
11
|
}
|
|
12
12
|
}
|
package/package.json
CHANGED