@objectstack/nextjs 6.9.0 → 7.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.
- package/README.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ export const { find, findOne, create, update, remove } = createServerActions({ k
|
|
|
58
58
|
|
|
59
59
|
## Edge vs Node
|
|
60
60
|
|
|
61
|
-
- Default runtime is Node.js.
|
|
61
|
+
- Default runtime is Node.js. Edge runtimes need an edge-compatible driver (ObjectStack Cloud ships `@objectstack/driver-turso` for that case).
|
|
62
62
|
- `HttpDispatcher` is isomorphic; the adapter emits `NextResponse` which works in both runtimes.
|
|
63
63
|
|
|
64
64
|
## When to use
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/nextjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"next": "^16.2.4",
|
|
9
9
|
"react": "^19.2.5",
|
|
10
10
|
"react-dom": "^19.2.5",
|
|
11
|
-
"@objectstack/runtime": "^
|
|
11
|
+
"@objectstack/runtime": "^7.1.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"next": "^16.2.6",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"react-dom": "^19.2.6",
|
|
17
17
|
"typescript": "^6.0.3",
|
|
18
18
|
"vitest": "^4.1.7",
|
|
19
|
-
"@objectstack/runtime": "
|
|
19
|
+
"@objectstack/runtime": "7.1.0"
|
|
20
20
|
},
|
|
21
21
|
"description": "Next.js adapter for ObjectStack — App Router route handlers for the ObjectStack REST API.",
|
|
22
22
|
"keywords": [
|