@ai-sdk/rsc 1.0.190 → 1.0.194

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 +24 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @ai-sdk/rsc
2
2
 
3
+ ## 1.0.194
4
+
5
+ ### Patch Changes
6
+
7
+ - ai@5.0.192
8
+
9
+ ## 1.0.193
10
+
11
+ ### Patch Changes
12
+
13
+ - ai@5.0.191
14
+
15
+ ## 1.0.192
16
+
17
+ ### Patch Changes
18
+
19
+ - ai@5.0.190
20
+
21
+ ## 1.0.191
22
+
23
+ ### Patch Changes
24
+
25
+ - ai@5.0.189
26
+
3
27
  ## 1.0.190
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/rsc",
3
- "version": "1.0.190",
3
+ "version": "1.0.194",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/rsc-client.mjs",
@@ -21,7 +21,7 @@
21
21
  ],
22
22
  "dependencies": {
23
23
  "jsondiffpatch": "0.7.3",
24
- "ai": "5.0.188",
24
+ "ai": "5.0.192",
25
25
  "@ai-sdk/provider": "2.0.3",
26
26
  "@ai-sdk/provider-utils": "3.0.25"
27
27
  },
@@ -79,8 +79,9 @@
79
79
  "clean": "del-cli dist",
80
80
  "type-check": "tsc --noEmit",
81
81
  "test:watch": "vitest --config vitest.config.js",
82
- "test": "pnpm test:node && pnpm test:ui && pnpm test:e2e && pnpm test:edge",
82
+ "test": "pnpm test:node && pnpm test:ui && pnpm test:e2e:ci && pnpm test:edge",
83
83
  "test:e2e": "playwright test",
84
+ "test:e2e:ci": "node scripts/run-e2e-ci.mjs",
84
85
  "test:edge": "vitest --config vitest.edge.config.js --run",
85
86
  "test:edge:watch": "vitest --config vitest.edge.config.js",
86
87
  "test:node": "vitest --config vitest.node.config.js --run",