wikipeg 6.1.1 → 6.1.2
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/HISTORY.md +6 -0
- package/VERSION +1 -1
- package/lib/peg.js +1 -1
- package/package.json +2 -2
- package/src/DefaultTracer.php +1 -0
- package/src/Expectation.php +1 -0
- package/src/InternalError.php +1 -0
- package/src/Location.php +1 -0
- package/src/LocationRange.php +1 -0
- package/src/PEGParserBase.php +1 -0
- package/src/SyntaxError.php +1 -0
- package/src/Tracer.php +1 -0
package/HISTORY.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
## 6.1.2 (2026-05-07)
|
|
4
|
+
* Update jasmine to 7.0.0-pre.1. This removes the reported security
|
|
5
|
+
vulnerability in the glob package even though this is only used
|
|
6
|
+
when running tests.
|
|
7
|
+
* Dependency updates.
|
|
8
|
+
|
|
3
9
|
## 6.1.1 (2026-02-14)
|
|
4
10
|
* Update tests from (unsupported) jasmine-node to jasmine 6.0.0.
|
|
5
11
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.1.
|
|
1
|
+
6.1.2
|
package/lib/peg.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wikipeg",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.2",
|
|
4
4
|
"description": "Parser generator for JavaScript and PHP",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://gerrit.wikimedia.org/r/plugins/gitiles/wikipeg/",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"eslint": "8.57.0",
|
|
46
|
-
"jasmine": "
|
|
46
|
+
"jasmine": "7.0.0-pre.1"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">= 6.0.0"
|
package/src/DefaultTracer.php
CHANGED
package/src/Expectation.php
CHANGED
package/src/InternalError.php
CHANGED
package/src/Location.php
CHANGED
package/src/LocationRange.php
CHANGED
package/src/PEGParserBase.php
CHANGED
package/src/SyntaxError.php
CHANGED