@ai-sdk/rsc 3.0.0-canary.142 → 3.0.0-canary.145

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 +25 -0
  2. package/package.json +17 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @ai-sdk/rsc
2
2
 
3
+ ## 3.0.0-canary.145
4
+
5
+ ### Patch Changes
6
+
7
+ - 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.
8
+ - Updated dependencies [7fc6bd6]
9
+ - ai@7.0.0-canary.144
10
+ - @ai-sdk/provider-utils@5.0.0-canary.43
11
+ - @ai-sdk/provider@4.0.0-canary.17
12
+
13
+ ## 3.0.0-canary.144
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [a6617c5]
18
+ - @ai-sdk/provider-utils@5.0.0-canary.42
19
+ - ai@7.0.0-canary.143
20
+
21
+ ## 3.0.0-canary.143
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [62d6481]
26
+ - ai@7.0.0-canary.142
27
+
3
28
  ## 3.0.0-canary.142
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/rsc",
3
- "version": "3.0.0-canary.142",
3
+ "version": "3.0.0-canary.145",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/rsc-client.mjs",
@@ -28,23 +28,23 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "jsondiffpatch": "0.7.3",
31
- "ai": "7.0.0-canary.141",
32
- "@ai-sdk/provider": "4.0.0-canary.16",
33
- "@ai-sdk/provider-utils": "5.0.0-canary.41"
31
+ "@ai-sdk/provider": "4.0.0-canary.17",
32
+ "@ai-sdk/provider-utils": "5.0.0-canary.43",
33
+ "ai": "7.0.0-canary.144"
34
34
  },
35
35
  "devDependencies": {
36
- "@testing-library/jest-dom": "^6.6.3",
37
- "@testing-library/user-event": "^14.5.2",
38
- "@testing-library/react": "^16.0.1",
39
- "@types/node": "20.17.24",
40
- "@types/react": "^18",
41
- "@types/react-dom": "^18",
36
+ "@testing-library/jest-dom": "^6.9.1",
37
+ "@testing-library/react": "^16.3.2",
38
+ "@testing-library/user-event": "^14.6.1",
39
+ "@types/node": "22.19.19",
40
+ "@types/react": "^18.3.28",
41
+ "@types/react-dom": "^18.3.7",
42
42
  "@vitejs/plugin-react": "4.3.3",
43
- "react-dom": "^18",
44
- "react": "^18",
45
- "react-server-dom-webpack": "18.3.0-canary-eb33bd747-20240312",
46
- "jsdom": "^24.0.0",
43
+ "jsdom": "^24.1.3",
47
44
  "msw": "2.6.4",
45
+ "react": "^18.3.1",
46
+ "react-dom": "^18.3.1",
47
+ "react-server-dom-webpack": "18.3.0-canary-eb33bd747-20240312",
48
48
  "tsup": "^7.2.0",
49
49
  "typescript": "5.8.3",
50
50
  "zod": "3.25.76",
@@ -60,7 +60,7 @@
60
60
  }
61
61
  },
62
62
  "engines": {
63
- "node": ">=18"
63
+ "node": ">=22"
64
64
  },
65
65
  "publishConfig": {
66
66
  "access": "public",
@@ -87,8 +87,9 @@
87
87
  "clean": "del-cli dist",
88
88
  "type-check": "tsc --noEmit",
89
89
  "test:watch": "vitest --config vitest.config.js",
90
- "test": "pnpm test:node && pnpm test:ui && pnpm test:e2e && pnpm test:edge",
90
+ "test": "pnpm test:node && pnpm test:ui && pnpm test:e2e:ci && pnpm test:edge",
91
91
  "test:e2e": "playwright test",
92
+ "test:e2e:ci": "node scripts/run-e2e-ci.mjs",
92
93
  "test:edge": "vitest --config vitest.edge.config.js --run",
93
94
  "test:edge:watch": "vitest --config vitest.edge.config.js",
94
95
  "test:node": "vitest --config vitest.node.config.js --run",