@warp-drive/holodeck 0.1.0-beta.3 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @warp-drive/holodeck Changelog
2
2
 
3
+ ## v5.9.0 (2026-09-05)
4
+
5
+ #### :bug: Bug Fix
6
+
7
+ * [#10555](https://github.com/warp-drive-data/warp-drive/pull/10555) fix: holodeck replay should respect query params ([@runspired](https://github.com/runspired))
8
+ * [#10463](https://github.com/warp-drive-data/warp-drive/pull/10463) Add support for HEAD requests to the `Fetch` handler ([@Windvis](https://github.com/Windvis))
9
+ * [#10458](https://github.com/warp-drive-data/warp-drive/pull/10458) fix: bump build dependencies ([@runspired](https://github.com/runspired))
10
+
11
+ #### :house: Internal
12
+
13
+ * [#10948](https://github.com/warp-drive-data/warp-drive/pull/10948) chore(types): move all remaining packages to TypeScript 7 for check:types ([@runspired](https://github.com/runspired))
14
+ * [#10946](https://github.com/warp-drive-data/warp-drive/pull/10946) build(lint): run oxlint on tests/, hand off qunit/mocha rules via jsPlugins ([@runspired](https://github.com/runspired))
15
+ * [#10937](https://github.com/warp-drive-data/warp-drive/pull/10937) build: migrate formatting from prettier to oxfmt ([@runspired](https://github.com/runspired))
16
+ * [#10928](https://github.com/warp-drive-data/warp-drive/pull/10928) chore: bump pnpm to 12.0.0, replace Volta with mise ([@runspired](https://github.com/runspired))
17
+ * [#10776](https://github.com/warp-drive-data/warp-drive/pull/10776) chore(deps): replace chalk with node:util's styleText ([@runspired](https://github.com/runspired))
18
+ * [#10729](https://github.com/warp-drive-data/warp-drive/pull/10729) fix: invoke tsdown directly via node to avoid racy bin-shim resolution ([@runspired](https://github.com/runspired))
19
+ * [#10721](https://github.com/warp-drive-data/warp-drive/pull/10721) fix: close the diagnostic/holodeck port race blocking test parallelization ([@runspired](https://github.com/runspired))
20
+ * [#10696](https://github.com/warp-drive-data/warp-drive/pull/10696) chore(types): drop redundant tsconfig paths, keep references editor-only ([@runspired](https://github.com/runspired))
21
+ * [#10698](https://github.com/warp-drive-data/warp-drive/pull/10698) fix(holodeck): SHOULD_RECORD never respected CI, silently masking missing mock-cache fixtures ([@runspired](https://github.com/runspired))
22
+ * [#10675](https://github.com/warp-drive-data/warp-drive/pull/10675) feat: migrate @warp-drive/holodeck's build to rolldown via tsdown ([@runspired](https://github.com/runspired))
23
+ * [#10459](https://github.com/warp-drive-data/warp-drive/pull/10459) chore: tweak install ([@runspired](https://github.com/runspired))
24
+
25
+ #### Committers: (2)
26
+
27
+ Chris Thoburn ([@runspired](https://github.com/runspired))
28
+ Sam Van Campenhout ([@Windvis](https://github.com/Windvis))
29
+
3
30
  ## v5.8.0 (2025-10-07)
4
31
 
5
32
  #### :rocket: Enhancement
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@warp-drive/holodeck",
3
3
  "description": "⚡️ Simple, Fast HTTP Mocking for Tests",
4
- "version": "0.1.0-beta.3",
4
+ "version": "0.1.0",
5
5
  "license": "MIT",
6
6
  "author": "Chris Thoburn <runspired@users.noreply.github.com>",
7
7
  "repository": {
@@ -34,9 +34,9 @@
34
34
  "ensure-cert": "./server/ensure-cert.js"
35
35
  },
36
36
  "peerDependencies": {
37
- "@warp-drive/utilities": "5.9.0-beta.3",
38
- "@warp-drive/legacy": "5.9.0-beta.3",
39
- "@warp-drive/core": "5.9.0-beta.3"
37
+ "@warp-drive/utilities": "5.9.0",
38
+ "@warp-drive/legacy": "5.9.0",
39
+ "@warp-drive/core": "5.9.0"
40
40
  },
41
41
  "peerDependenciesMeta": {
42
42
  "@warp-drive/utilities": {
@@ -52,10 +52,10 @@
52
52
  "@babel/preset-env": "^7.29.7",
53
53
  "@babel/preset-typescript": "^7.29.7",
54
54
  "@babel/runtime": "^7.29.7",
55
- "@warp-drive/utilities": "5.9.0-beta.3",
56
- "@warp-drive/legacy": "5.9.0-beta.3",
57
- "@warp-drive/core": "5.9.0-beta.3",
58
- "@warp-drive/internal-config": "5.9.0-beta.3",
55
+ "@warp-drive/utilities": "5.9.0",
56
+ "@warp-drive/legacy": "5.9.0",
57
+ "@warp-drive/core": "5.9.0",
58
+ "@warp-drive/internal-config": "5.9.0",
59
59
  "tsdown": "^0.22.14",
60
60
  "typescript-7": "npm:typescript@7.1.0-dev.20260828.1"
61
61
  },