@warp-drive/holodeck 0.1.0-alpha.76 → 0.1.0-alpha.78
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/dist/index.d.ts +7 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/mock.d.ts +9 -10
- package/dist/mock.d.ts.map +1 -1
- package/package.json +12 -12
- package/CHANGELOG.md +0 -166
package/dist/index.d.ts
CHANGED
|
@@ -6,21 +6,21 @@ import { Store } from "@warp-drive/legacy/store";
|
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
9
|
-
declare function setConfig({ host }: {
|
|
9
|
+
export declare function setConfig({ host }: {
|
|
10
10
|
host: string;
|
|
11
11
|
}): void;
|
|
12
12
|
/**
|
|
13
13
|
* @public
|
|
14
14
|
*/
|
|
15
|
-
declare function setTestId(context: object, str: string | null): void;
|
|
15
|
+
export declare function setTestId(context: object, str: string | null): void;
|
|
16
16
|
/**
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
|
-
declare function setIsRecording(value: boolean): void;
|
|
19
|
+
export declare function setIsRecording(value: boolean): void;
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
22
|
*/
|
|
23
|
-
declare function getIsRecording(): boolean;
|
|
23
|
+
export declare function getIsRecording(): boolean;
|
|
24
24
|
/**
|
|
25
25
|
* A request handler that intercepts requests and routes them through
|
|
26
26
|
* the Holodeck mock server.
|
|
@@ -32,7 +32,7 @@ declare function getIsRecording(): boolean;
|
|
|
32
32
|
*
|
|
33
33
|
* @param owner - the test context object used to retrieve the test ID.
|
|
34
34
|
*/
|
|
35
|
-
declare class MockServerHandler implements Handler {
|
|
35
|
+
export declare class MockServerHandler implements Handler {
|
|
36
36
|
owner: object;
|
|
37
37
|
constructor(owner: object);
|
|
38
38
|
request<T>(context: RequestContext, next: NextFn<T>): Promise<StructuredDataDocument<T>>;
|
|
@@ -44,13 +44,12 @@ declare class MockServerHandler implements Handler {
|
|
|
44
44
|
*
|
|
45
45
|
* @param owner - The test context object used to retrieve the test ID.
|
|
46
46
|
*/
|
|
47
|
-
declare function installAdapterFor(owner: object, store: Store): void;
|
|
47
|
+
export declare function installAdapterFor(owner: object, store: Store): void;
|
|
48
48
|
/**
|
|
49
49
|
* Mock a request by sending the scaffold to the mock server.
|
|
50
50
|
*
|
|
51
51
|
* @public
|
|
52
52
|
*/
|
|
53
|
-
declare function mock(owner: object, generate: ScaffoldGenerator, isRecording?: boolean): Promise<void>;
|
|
53
|
+
export declare function mock(owner: object, generate: ScaffoldGenerator, isRecording?: boolean): Promise<void>;
|
|
54
54
|
//#endregion
|
|
55
|
-
export { MockServerHandler, getIsRecording, installAdapterFor, mock, setConfig, setIsRecording, setTestId };
|
|
56
55
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;wBAuIgB,YAAY;EAAU;;;;;wBAQtB,UAAU,iBAAiB;;;;wBA2C3B,eAAe;;;;wBAOf;;;;;;;;;;;;qBAeH,6BAA6B;EACxC;EACA,YAAY;EAGZ,QAAc,GAAG,SAAS,gBAAgB,MAAM,OAAO,KAAK,QAAQ,uBAAuB;;;;;;;;;wBAkG7E,kBAAkB,eAAe,OAAO;;;;;;wBAuClC,KAAK,eAAe,UAAU,mBAAmB,wBAAwB"}
|
package/dist/mock.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
|
-
interface Scaffold {
|
|
5
|
+
export interface Scaffold {
|
|
6
6
|
status: number;
|
|
7
7
|
statusText?: string;
|
|
8
8
|
headers: Record<string, string>;
|
|
@@ -14,11 +14,11 @@ interface Scaffold {
|
|
|
14
14
|
/**
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
|
-
type ScaffoldGenerator = () => Scaffold;
|
|
17
|
+
export type ScaffoldGenerator = () => Scaffold;
|
|
18
18
|
/**
|
|
19
19
|
* @public
|
|
20
20
|
*/
|
|
21
|
-
type ResponseGenerator = () => Record<string, unknown>;
|
|
21
|
+
export type ResponseGenerator = () => Record<string, unknown>;
|
|
22
22
|
/**
|
|
23
23
|
* Sets up Mocking for a GET request on the mock server
|
|
24
24
|
* for the supplied url.
|
|
@@ -36,32 +36,32 @@ type ResponseGenerator = () => Record<string, unknown>;
|
|
|
36
36
|
* @param options status, headers for the response, body to match against for the request, and whether to record the request
|
|
37
37
|
* @return
|
|
38
38
|
*/
|
|
39
|
-
declare function GET(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
39
|
+
export declare function GET(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
40
40
|
RECORD?: boolean;
|
|
41
41
|
}): Promise<void>;
|
|
42
42
|
/**
|
|
43
43
|
* Mock a POST request
|
|
44
44
|
*/
|
|
45
|
-
declare function POST(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
45
|
+
export declare function POST(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
46
46
|
RECORD?: boolean;
|
|
47
47
|
}): Promise<void>;
|
|
48
48
|
/**
|
|
49
49
|
* mock a PUT request
|
|
50
50
|
*/
|
|
51
|
-
declare function PUT(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
51
|
+
export declare function PUT(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
52
52
|
RECORD?: boolean;
|
|
53
53
|
}): Promise<void>;
|
|
54
54
|
/**
|
|
55
55
|
* mock a PATCH request
|
|
56
56
|
*
|
|
57
57
|
*/
|
|
58
|
-
declare function PATCH(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
58
|
+
export declare function PATCH(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
59
59
|
RECORD?: boolean;
|
|
60
60
|
}): Promise<void>;
|
|
61
61
|
/**
|
|
62
62
|
* mock a DELETE request
|
|
63
63
|
*/
|
|
64
|
-
declare function DELETE(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
64
|
+
export declare function DELETE(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
65
65
|
RECORD?: boolean;
|
|
66
66
|
}): Promise<void>;
|
|
67
67
|
/**
|
|
@@ -81,9 +81,8 @@ declare function DELETE(owner: object, url: string, response: ResponseGenerator,
|
|
|
81
81
|
* @param options status, headers for the response, body to match against for the request, and whether to record the request
|
|
82
82
|
* @return
|
|
83
83
|
*/
|
|
84
|
-
declare function HEAD(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
84
|
+
export declare function HEAD(owner: object, url: string, response: ResponseGenerator, options?: Partial<Omit<Scaffold, "response" | "url" | "method">> & {
|
|
85
85
|
RECORD?: boolean;
|
|
86
86
|
}): Promise<void>;
|
|
87
87
|
//#endregion
|
|
88
|
-
export { DELETE, GET, HEAD, PATCH, POST, PUT, ResponseGenerator, Scaffold, ScaffoldGenerator };
|
|
89
88
|
//# sourceMappingURL=mock.d.ts.map
|
package/dist/mock.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mock.d.ts","names":[],"sources":["../src/mock.ts"],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"mock.d.ts","names":[],"sources":["../src/mock.ts"],"mappings":";;;;iBAKiB;EACf;EACA;EACA,SAAS;EACT,MAAM;EACN;EACA;EACA,UAAU;;;;;YAMA,0BAA0B;;;;YAK1B,0BAA0B;;;;;;;;;;;;;;;;;;wBAmBtB,IACd,eACA,aACA,UAAU,mBACV,UAAU,QAAQ,KAAK;EAA8C;IACpE;;;;wBAmFa,KACd,eACA,aACA,UAAU,mBACV,UAAU,QAAQ,KAAK;EAA8C;IACpE;;;;wBAwBa,IACd,eACA,aACA,UAAU,mBACV,UAAU,QAAQ,KAAK;EAA8C;IACpE;;;;;wBAwBa,MACd,eACA,aACA,UAAU,mBACV,UAAU,QAAQ,KAAK;EAA8C;IACpE;;;;wBAuBa,OACd,eACA,aACA,UAAU,mBACV,UAAU,QAAQ,KAAK;EAA8C;IACpE;;;;;;;;;;;;;;;;;;wBAsCa,KACd,eACA,aACA,UAAU,mBAIV,UAAU,QAAQ,KAAK;EAA8C;IACpE"}
|
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-alpha.
|
|
4
|
+
"version": "0.1.0-alpha.78",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
7
7
|
"repository": {
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
"homepage": "https://github.com/warp-drive-data/warp-drive",
|
|
13
13
|
"bugs": "https://github.com/warp-drive-data/warp-drive/issues",
|
|
14
14
|
"engines": {
|
|
15
|
-
"node": ">= 24.
|
|
15
|
+
"node": ">= 24.21.0"
|
|
16
16
|
},
|
|
17
17
|
"keywords": [
|
|
18
18
|
"http-mock"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"hono": "^4.13.
|
|
21
|
+
"hono": "^4.13.7",
|
|
22
22
|
"@hono/node-server": "^1.19.0"
|
|
23
23
|
},
|
|
24
24
|
"type": "module",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"ensure-cert": "./server/ensure-cert.js"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@warp-drive/utilities": "5.10.0-alpha.
|
|
38
|
-
"@warp-drive/legacy": "5.10.0-alpha.
|
|
39
|
-
"@warp-drive/core": "5.10.0-alpha.
|
|
37
|
+
"@warp-drive/utilities": "5.10.0-alpha.2",
|
|
38
|
+
"@warp-drive/legacy": "5.10.0-alpha.2",
|
|
39
|
+
"@warp-drive/core": "5.10.0-alpha.2"
|
|
40
40
|
},
|
|
41
41
|
"peerDependenciesMeta": {
|
|
42
42
|
"@warp-drive/utilities": {
|
|
@@ -52,12 +52,12 @@
|
|
|
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.10.0-alpha.
|
|
56
|
-
"@warp-drive/legacy": "5.10.0-alpha.
|
|
57
|
-
"@warp-drive/core": "5.10.0-alpha.
|
|
58
|
-
"@warp-drive/internal-config": "5.10.0-alpha.
|
|
59
|
-
"tsdown": "^0.
|
|
60
|
-
"typescript-7": "npm:typescript@7.1.0-dev.
|
|
55
|
+
"@warp-drive/utilities": "5.10.0-alpha.2",
|
|
56
|
+
"@warp-drive/legacy": "5.10.0-alpha.2",
|
|
57
|
+
"@warp-drive/core": "5.10.0-alpha.2",
|
|
58
|
+
"@warp-drive/internal-config": "5.10.0-alpha.2",
|
|
59
|
+
"tsdown": "^0.23.0",
|
|
60
|
+
"typescript-7": "npm:typescript@7.1.0-dev.20260906.1"
|
|
61
61
|
},
|
|
62
62
|
"exports": {
|
|
63
63
|
".": {
|
package/CHANGELOG.md
DELETED
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
# @warp-drive/holodeck Changelog
|
|
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
|
-
|
|
30
|
-
## v5.8.0 (2025-10-07)
|
|
31
|
-
|
|
32
|
-
#### :rocket: Enhancement
|
|
33
|
-
|
|
34
|
-
* [#10121](https://github.com/warp-drive-data/warp-drive/pull/10121) feat: legacy ModelFragments support ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
|
|
35
|
-
|
|
36
|
-
#### :house: Internal
|
|
37
|
-
|
|
38
|
-
* [#10377](https://github.com/warp-drive-data/warp-drive/pull/10377) chore: refactor holodeck to use node ([@runspired](https://github.com/runspired))
|
|
39
|
-
* [#10376](https://github.com/warp-drive-data/warp-drive/pull/10376) chore: prepare holodeck for publishing ([@runspired](https://github.com/runspired))
|
|
40
|
-
* [#10375](https://github.com/warp-drive-data/warp-drive/pull/10375) chore: make non-GET holodeck replay work ([@runspired](https://github.com/runspired))
|
|
41
|
-
* [#10373](https://github.com/warp-drive-data/warp-drive/pull/10373) chore: add holodeck client support for PUT/PATCH/POST/DELETE ([@runspired](https://github.com/runspired))
|
|
42
|
-
* [#10372](https://github.com/warp-drive-data/warp-drive/pull/10372) Missing Context Param in Code Example for setTestId ([@lucasxzh](https://github.com/lucasxzh))
|
|
43
|
-
* [#10349](https://github.com/warp-drive-data/warp-drive/pull/10349) chore: update all emberjs/data links to warp-drive-data/warp-drive ([@runspired](https://github.com/runspired))
|
|
44
|
-
|
|
45
|
-
#### Committers: (3)
|
|
46
|
-
|
|
47
|
-
Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
|
|
48
|
-
Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
49
|
-
[@lucasxzh](https://github.com/lucasxzh)
|
|
50
|
-
|
|
51
|
-
## v5.7.0 (2025-08-26)
|
|
52
|
-
|
|
53
|
-
#### :house: Internal
|
|
54
|
-
|
|
55
|
-
* [#10279](https://github.com/warp-drive-data/warp-drive/pull/10279) chore: add support for LegacyNetworkHandler to holodeck ([@runspired](https://github.com/runspired))
|
|
56
|
-
* [#10226](https://github.com/warp-drive-data/warp-drive/pull/10226) chore: use https for diagnostic by default, print url last ([@runspired](https://github.com/runspired))
|
|
57
|
-
* [#10124](https://github.com/warp-drive-data/warp-drive/pull/10124) chore: mark a few types as private ([@runspired](https://github.com/runspired))
|
|
58
|
-
|
|
59
|
-
#### Committers: (1)
|
|
60
|
-
|
|
61
|
-
Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
62
|
-
|
|
63
|
-
## v5.6.0 (2025-07-01)
|
|
64
|
-
|
|
65
|
-
#### :memo: Documentation
|
|
66
|
-
|
|
67
|
-
* [#9991](https://github.com/warp-drive-data/warp-drive/pull/9991) chore: improve output of typedoc ([@runspired](https://github.com/runspired))
|
|
68
|
-
|
|
69
|
-
#### :house: Internal
|
|
70
|
-
|
|
71
|
-
* [#10042](https://github.com/warp-drive-data/warp-drive/pull/10042) chore: upgrade to vite7 ([@runspired](https://github.com/runspired))
|
|
72
|
-
* [#10040](https://github.com/warp-drive-data/warp-drive/pull/10040) chore: isolated declarations ([@runspired](https://github.com/runspired))
|
|
73
|
-
|
|
74
|
-
#### Committers: (1)
|
|
75
|
-
|
|
76
|
-
Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
77
|
-
|
|
78
|
-
## v5.4.0 (2025-04-11)
|
|
79
|
-
|
|
80
|
-
#### :memo: Documentation
|
|
81
|
-
|
|
82
|
-
* [#9648](https://github.com/warp-drive-data/warp-drive/pull/9648) docs: cleanup usage pattern for RequestManager configuration on store ([@runspired](https://github.com/runspired))
|
|
83
|
-
|
|
84
|
-
#### :rocket: Enhancement
|
|
85
|
-
|
|
86
|
-
* [#9530](https://github.com/warp-drive-data/warp-drive/pull/9530) feat: <:idle> state for Requests ([@runspired](https://github.com/runspired))
|
|
87
|
-
* [#9503](https://github.com/warp-drive-data/warp-drive/pull/9503) feat: request deduping & <Request /> invalidate subscriptions ([@runspired](https://github.com/runspired))
|
|
88
|
-
|
|
89
|
-
#### :bug: Bug Fix
|
|
90
|
-
|
|
91
|
-
* [#9530](https://github.com/warp-drive-data/warp-drive/pull/9530) feat: <:idle> state for Requests ([@runspired](https://github.com/runspired))
|
|
92
|
-
|
|
93
|
-
#### :house: Internal
|
|
94
|
-
|
|
95
|
-
* [#9759](https://github.com/warp-drive-data/warp-drive/pull/9759) chore: Improve contributing experience ([@runspired](https://github.com/runspired))
|
|
96
|
-
* [#9758](https://github.com/warp-drive-data/warp-drive/pull/9758) chore: update contributing docs ([@runspired](https://github.com/runspired))
|
|
97
|
-
* [#9752](https://github.com/warp-drive-data/warp-drive/pull/9752) chore: tooling upgrades to support WarpDrive package unification ([@runspired](https://github.com/runspired))
|
|
98
|
-
* [#9705](https://github.com/warp-drive-data/warp-drive/pull/9705) chore: make diagnostic shutdown safer, use bun for holodeck server ([@runspired](https://github.com/runspired))
|
|
99
|
-
* [#9699](https://github.com/warp-drive-data/warp-drive/pull/9699) chore: update to pnpm 10 ([@runspired](https://github.com/runspired))
|
|
100
|
-
* [#9629](https://github.com/warp-drive-data/warp-drive/pull/9629) fix: restore * versions and setup publish to not overwrite them ([@runspired](https://github.com/runspired))
|
|
101
|
-
* [#9620](https://github.com/warp-drive-data/warp-drive/pull/9620) Starwars ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
102
|
-
* [#9543](https://github.com/warp-drive-data/warp-drive/pull/9543) Improvement: Setting Up The Project ([@leoeuclids](https://github.com/leoeuclids))
|
|
103
|
-
|
|
104
|
-
#### Committers: (3)
|
|
105
|
-
|
|
106
|
-
Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
107
|
-
[@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
108
|
-
Leo Euclides ([@leoeuclids](https://github.com/leoeuclids))
|
|
109
|
-
|
|
110
|
-
## v0.0.0-alpha.71 (2024-06-15)
|
|
111
|
-
|
|
112
|
-
#### :memo: Documentation
|
|
113
|
-
|
|
114
|
-
* [#9328](https://github.com/warp-drive-data/warp-drive/pull/9328) chore: update READMEs with status and dist tag info ([@runspired](https://github.com/runspired))
|
|
115
|
-
|
|
116
|
-
#### :rocket: Enhancement
|
|
117
|
-
|
|
118
|
-
* [#9471](https://github.com/warp-drive-data/warp-drive/pull/9471) feat: npx warp-drive ([@runspired](https://github.com/runspired))
|
|
119
|
-
* [#9366](https://github.com/warp-drive-data/warp-drive/pull/9366) feat: typed Model ([@runspired](https://github.com/runspired))
|
|
120
|
-
* [#9260](https://github.com/warp-drive-data/warp-drive/pull/9260) feat: ember specific data utils ([@runspired](https://github.com/runspired))
|
|
121
|
-
|
|
122
|
-
#### :bug: Bug Fix
|
|
123
|
-
|
|
124
|
-
* [#9383](https://github.com/warp-drive-data/warp-drive/pull/9383) fix: ensure cache-handler clones full errors ([@runspired](https://github.com/runspired))
|
|
125
|
-
|
|
126
|
-
#### :house: Internal
|
|
127
|
-
|
|
128
|
-
* [#9292](https://github.com/warp-drive-data/warp-drive/pull/9292) feat: add new build-config package ([@runspired](https://github.com/runspired))
|
|
129
|
-
|
|
130
|
-
#### Committers: (1)
|
|
131
|
-
|
|
132
|
-
Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
133
|
-
|
|
134
|
-
For the full project changelog see [https://github.com/warp-drive-data/warp-drive/blob/main/CHANGELOG.md](https://github.com/warp-drive-data/warp-drive/blob/main/CHANGELOG.md)
|
|
135
|
-
|
|
136
|
-
## v0.0.0-alpha.9 (2024-02-24)
|
|
137
|
-
|
|
138
|
-
#### :rocket: Enhancement
|
|
139
|
-
|
|
140
|
-
* [#8921](https://github.com/warp-drive-data/warp-drive/pull/8921) feat: Improved Fetch Errors ([@runspired](https://github.com/runspired))
|
|
141
|
-
|
|
142
|
-
#### :house: Internal
|
|
143
|
-
|
|
144
|
-
* [#9125](https://github.com/warp-drive-data/warp-drive/pull/9125) Configure ESLint for test packages ([@gitKrystan](https://github.com/gitKrystan))
|
|
145
|
-
* [#8994](https://github.com/warp-drive-data/warp-drive/pull/8994) chore: fix recursive pnpm on node 18.18 ([@runspired](https://github.com/runspired))
|
|
146
|
-
* [#9084](https://github.com/warp-drive-data/warp-drive/pull/9084) Add import types ([@gitKrystan](https://github.com/gitKrystan))
|
|
147
|
-
* [#8989](https://github.com/warp-drive-data/warp-drive/pull/8989) chore(private): concurrent mode ([@runspired](https://github.com/runspired))
|
|
148
|
-
* [#9058](https://github.com/warp-drive-data/warp-drive/pull/9058) Switch from eslint-plugin-prettier to running prettier directly ([@gitKrystan](https://github.com/gitKrystan))
|
|
149
|
-
* [#9057](https://github.com/warp-drive-data/warp-drive/pull/9057) Add eslint-plugin-n to eslint config for node files ([@gitKrystan](https://github.com/gitKrystan))
|
|
150
|
-
* [#9055](https://github.com/warp-drive-data/warp-drive/pull/9055) Fix ESLint for VSCode ([@gitKrystan](https://github.com/gitKrystan))
|
|
151
|
-
* [#9051](https://github.com/warp-drive-data/warp-drive/pull/9051) chore: use references for tsc, add checks to schema-record, bun to run scripts ([@runspired](https://github.com/runspired))
|
|
152
|
-
* [#9032](https://github.com/warp-drive-data/warp-drive/pull/9032) chore(types): split out lint and type commands to be per-package ([@runspired](https://github.com/runspired))
|
|
153
|
-
* [#9050](https://github.com/warp-drive-data/warp-drive/pull/9050) chore: use composite mode for tsc ([@runspired](https://github.com/runspired))
|
|
154
|
-
* [#9049](https://github.com/warp-drive-data/warp-drive/pull/9049) chore: incremental tsc builds ([@runspired](https://github.com/runspired))
|
|
155
|
-
* [#9046](https://github.com/warp-drive-data/warp-drive/pull/9046) chore: reduce number of things turbo builds for build ([@runspired](https://github.com/runspired))
|
|
156
|
-
* [#9025](https://github.com/warp-drive-data/warp-drive/pull/9025) chore: reconfigure request package type location ([@runspired](https://github.com/runspired))
|
|
157
|
-
* [#8972](https://github.com/warp-drive-data/warp-drive/pull/8972) chore: use new test runner for request tests ([@runspired](https://github.com/runspired))
|
|
158
|
-
* [#8931](https://github.com/warp-drive-data/warp-drive/pull/8931) chore: package infra for schema-record ([@runspired](https://github.com/runspired))
|
|
159
|
-
* [#8912](https://github.com/warp-drive-data/warp-drive/pull/8912) chore: docs for holodeck ([@runspired](https://github.com/runspired))
|
|
160
|
-
* [#8906](https://github.com/warp-drive-data/warp-drive/pull/8906) feat: expand mock-server capabilities, add to main tests ([@runspired](https://github.com/runspired))
|
|
161
|
-
|
|
162
|
-
#### Committers: (2)
|
|
163
|
-
|
|
164
|
-
Chris Thoburn ([@runspired](https://github.com/runspired))
|
|
165
|
-
Krystan HuffMenne ([@gitKrystan](https://github.com/gitKrystan))
|
|
166
|
-
|