multi-tape 1.11.0 → 1.11.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.11.1] 2025-11-23
11
+
12
+ ### Fixes
13
+
14
+ - Update tap-parser to fix https://github.com/tapjs/tapjs/issues/1056
15
+ - Update glob to resolve security warning.
16
+
10
17
  ## [1.11.0] 2025-11-23
11
18
 
12
19
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-tape",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "Runner for tape-tests",
5
5
  "bin": {
6
6
  "multi-tape": "build/index.js"
@@ -20,10 +20,10 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "glob": "11.0.3",
23
+ "glob": "^13.0.0",
24
24
  "minimist": "^1.2.8",
25
25
  "stream-buffers": "^3.0.3",
26
- "tap-parser": "18.0.2",
26
+ "tap-parser": "^18.0.3",
27
27
  "tee": "^0.2.0"
28
28
  },
29
29
  "devDependencies": {