identifier-js 0.0.16 → 0.1.0
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/.github/workflows/test.yml +1 -1
- package/package.json +2 -2
- package/readme.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "identifier-js",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "A RFC3986 / RFC3987 compliant fast parser/validator/resolver/composer for NodeJS and browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"IRI",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"url-templates": "^1.0.7"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
|
-
"node": ">=
|
|
38
|
+
"node": ">=24.0.0"
|
|
39
39
|
},
|
|
40
40
|
"engineStrict": true,
|
|
41
41
|
"devDependencies": {
|
package/readme.md
CHANGED
|
@@ -17,7 +17,7 @@ description: An RFC 3986 and RFC 3987 parser, validator, and reference resolver
|
|
|
17
17
|
- UUID and UUIDv4 lexical validation;
|
|
18
18
|
- lazily compiled and cached regular expressions.
|
|
19
19
|
|
|
20
|
-
The package is synchronous, CommonJS, and supports Node.js
|
|
20
|
+
The package is synchronous, CommonJS, and supports Node.js 24 or newer. Browser use requires bundling; target browsers must support Unicode regular expressions and duplicate named capture groups in mutually exclusive alternatives. This includes Chrome and Edge 125+, Firefox 129+, Safari 17+, and corresponding newer releases.
|
|
21
21
|
|
|
22
22
|
## Install
|
|
23
23
|
|
|
@@ -435,7 +435,7 @@ The current suite contains 418 active tests covering URI/IRI validation and pars
|
|
|
435
435
|
|
|
436
436
|
The reference-conversion changes were additionally checked against 2,646 combinations of paths, absent/empty/non-empty queries, and absent/empty/non-empty fragments.
|
|
437
437
|
|
|
438
|
-
Continuous integration materializes the public test suite and runs it on Node.js
|
|
438
|
+
Continuous integration materializes the public test suite and runs it on Node.js 24 and 26 across Ubuntu, Windows, and macOS.
|
|
439
439
|
|
|
440
440
|
<details>
|
|
441
441
|
<summary><strong>Tests</strong></summary>
|