@amodalai/amodal 0.3.34 → 0.3.35
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/CHANGELOG.md +12 -0
- package/package.json +7 -7
- package/src/e2e-subprocess.test.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @amodalai/amodal
|
|
2
2
|
|
|
3
|
+
## 0.3.35
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`6c3490e`](https://github.com/amodalai/amodal/commit/6c3490e713a2bfb3cfb0fd1b15bb068d210ef981)]:
|
|
8
|
+
- @amodalai/runtime@0.3.35
|
|
9
|
+
- @amodalai/types@0.3.35
|
|
10
|
+
- @amodalai/core@0.3.35
|
|
11
|
+
- @amodalai/runtime-app@0.3.35
|
|
12
|
+
- @amodalai/db@0.3.35
|
|
13
|
+
- @amodalai/studio@0.3.35
|
|
14
|
+
|
|
3
15
|
## 0.3.34
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amodalai/amodal",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.35",
|
|
4
4
|
"description": "Amodal CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"react": "^19.2.4",
|
|
27
27
|
"yargs": "^17.7.2",
|
|
28
28
|
"zod": "^4.3.6",
|
|
29
|
-
"@amodalai/types": "0.3.
|
|
30
|
-
"@amodalai/core": "0.3.
|
|
31
|
-
"@amodalai/db": "0.3.
|
|
32
|
-
"@amodalai/runtime": "0.3.
|
|
33
|
-
"@amodalai/studio": "0.3.
|
|
34
|
-
"@amodalai/runtime-app": "0.3.
|
|
29
|
+
"@amodalai/types": "0.3.35",
|
|
30
|
+
"@amodalai/core": "0.3.35",
|
|
31
|
+
"@amodalai/db": "0.3.35",
|
|
32
|
+
"@amodalai/runtime": "0.3.35",
|
|
33
|
+
"@amodalai/studio": "0.3.35",
|
|
34
|
+
"@amodalai/runtime-app": "0.3.35"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^20.11.24",
|
|
@@ -133,6 +133,14 @@ describe.skipIf(!!skipReason)('subprocess smoke tests', () => {
|
|
|
133
133
|
expect(body['status']).toBe('ok');
|
|
134
134
|
});
|
|
135
135
|
|
|
136
|
+
it('auth/token returns 404 in local dev (no auth system)', async () => {
|
|
137
|
+
const res = await fetch(`http://localhost:${RUNTIME_PORT}/auth/token`, {
|
|
138
|
+
method: 'POST',
|
|
139
|
+
signal: AbortSignal.timeout(5000),
|
|
140
|
+
});
|
|
141
|
+
expect(res.status).toBe(404);
|
|
142
|
+
});
|
|
143
|
+
|
|
136
144
|
it('studio responds to health check', async () => {
|
|
137
145
|
const ok = await waitForHealth(STUDIO_PORT, 15_000);
|
|
138
146
|
expect(ok).toBe(true);
|