Skip to content

Commit 28004e5

Browse files
authored
Merge pull request #1075 from objectstack-ai/changeset-release/main
2 parents 45c34bf + 052122b commit 28004e5

File tree

91 files changed

+433
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+433
-62
lines changed

.changeset/strict-ravens-divide.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

apps/docs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @objectstack/docs
22

3+
## 4.0.2
4+
35
## 4.0.0
46

57
## 3.3.1

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/docs",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"private": true,
55
"description": "ObjectStack Protocol Documentation Site",
66
"license": "Apache-2.0",

apps/studio/CHANGELOG.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @objectstack/studio
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- 5f659e9: fix ai
8+
- Updated dependencies [5f659e9]
9+
- @objectstack/driver-memory@4.0.2
10+
- @objectstack/service-ai@4.0.2
11+
- @objectstack/hono@4.0.2
12+
- @objectstack/client@4.0.2
13+
- @objectstack/spec@4.0.2
14+
- @objectstack/driver-turso@4.0.2
15+
- @objectstack/client-react@4.0.2
16+
- @objectstack/metadata@4.0.2
17+
- @objectstack/objectql@4.0.2
18+
- @objectstack/plugin-audit@4.0.2
19+
- @objectstack/plugin-auth@4.0.2
20+
- @objectstack/plugin-msw@4.0.2
21+
- @objectstack/plugin-security@4.0.2
22+
- @objectstack/plugin-setup@4.0.2
23+
- @objectstack/runtime@4.0.2
24+
- @objectstack/service-analytics@4.0.2
25+
- @objectstack/service-automation@4.0.2
26+
- @objectstack/service-feed@4.0.2
27+
328
## Unreleased
429

530
### Patch Changes
@@ -12,15 +37,15 @@
1237

1338
The previous approach used `handle()` from `@hono/node-server/vercel`
1439
wrapped in an outer Hono app that delegated to the inner ObjectStack
15-
app via `inner.fetch(c.req.raw)`. On Vercel, the `IncomingMessage`
40+
app via `inner.fetch(c.req.raw)`. On Vercel, the `IncomingMessage`
1641
stream is already drained by the time the inner app's route handler
1742
calls `.json()`, causing POST/PUT/PATCH requests to hang indefinitely.
1843

1944
The new approach uses `getRequestListener()` directly, which exposes
20-
the raw `IncomingMessage` via `env.incoming`. For POST/PUT/PATCH
45+
the raw `IncomingMessage` via `env.incoming`. For POST/PUT/PATCH
2146
requests, the body is extracted from Vercel's pre-buffered `rawBody` /
2247
`body` properties and a fresh standard `Request` is constructed for
23-
the inner Hono app. This also adds `x-forwarded-proto` URL correction
48+
the inner Hono app. This also adds `x-forwarded-proto` URL correction
2449
for proper HTTPS detection behind Vercel's reverse proxy.
2550

2651
- Remove `functions` block from `vercel.json` to fix deployment error:
@@ -96,6 +121,7 @@
96121
### Fixes
97122

98123
- **Vercel deployment: Fix `functions` pattern validation error**
124+
99125
- The `functions` key in `vercel.json` referenced `api/index.js` — a build artifact created by
100126
`bundle-api.mjs` — which does not exist in the source tree. Vercel CLI validates patterns against
101127
source files before the build runs, producing the error:

apps/studio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/studio",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "ObjectStack Studio - A metadata-driven admin interface for managing data and configuration",
55
"license": "Apache-2.0",
66
"type": "module",

examples/app-crm/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @objectstack/example-crm
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [5f659e9]
8+
- @objectstack/spec@4.0.2
9+
310
## 3.0.26
411

512
### Patch Changes

examples/app-crm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/app-crm",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Example CRM implementation using ObjectStack Protocol",
55
"license": "Apache-2.0",
66
"private": true,

examples/app-host/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @objectstack/example-host
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [5f659e9]
8+
- @objectstack/plugin-hono-server@4.0.2
9+
- @objectstack/driver-memory@4.0.2
10+
- @objectstack/spec@4.0.2
11+
- @example/app-todo@4.0.2
12+
- @example/app-crm@4.0.2
13+
- @example/plugin-bi@4.0.2
14+
- @objectstack/metadata@4.0.2
15+
- @objectstack/objectql@4.0.2
16+
- @objectstack/plugin-auth@4.0.2
17+
- @objectstack/runtime@4.0.2
18+
319
## 3.0.26
420

521
### Patch Changes

examples/app-host/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/app-host",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"license": "Apache-2.0",
55
"private": true,
66
"scripts": {

examples/app-todo/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @objectstack/example-todo
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [5f659e9]
8+
- @objectstack/driver-memory@4.0.2
9+
- @objectstack/client@4.0.2
10+
- @objectstack/spec@4.0.2
11+
- @objectstack/objectql@4.0.2
12+
- @objectstack/runtime@4.0.2
13+
314
## 3.0.26
415

516
### Patch Changes

0 commit comments

Comments
 (0)