@ai-sdk/rsc 3.0.0-canary.177 → 3.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +98 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,103 @@
1
1
  # @ai-sdk/rsc
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - ef992f8: Remove CommonJS exports from all packages. All packages are now ESM-only (`"type": "module"`). Consumers using `require()` must switch to ESM `import` syntax.
8
+ - 8359612: Start v7 pre-release
9
+
10
+ ### Patch Changes
11
+
12
+ - 31ee822: refactoring(ai): extract filterActiveTools and expose it as experimental_filterActiveTools
13
+ - 83f9d04: feat(openai): upgrade v3 specs to v4
14
+ - 1db29c8: feat(ai): break `CallSettings` apart into `LanguageModelCallOptions` and `RequestOptions`
15
+ - 9f0e36c: trigger release for all packages after provenance setup
16
+ - 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.
17
+ - 0c4c275: trigger initial canary release
18
+ - 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles
19
+ - 6abd098: split `prepareToolsAndToolChoice()` into `prepareTools()` and `prepareToolChoice()`
20
+ - e79e644: chore(ai/core): remove `timeout` from `CallSettings` as it was effectively unused there
21
+ - b8396f0: trigger initial beta release
22
+
23
+ ## 3.0.0-beta.188
24
+
25
+ ### Patch Changes
26
+
27
+ - ai@7.0.0-beta.187
28
+
29
+ ## 3.0.0-beta.187
30
+
31
+ ### Patch Changes
32
+
33
+ - ai@7.0.0-beta.186
34
+
35
+ ## 3.0.0-beta.186
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [75763b0]
40
+ - ai@7.0.0-beta.185
41
+
42
+ ## 3.0.0-beta.185
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies [0416e3e]
47
+ - @ai-sdk/provider@4.0.0-beta.20
48
+ - ai@7.0.0-beta.184
49
+ - @ai-sdk/provider-utils@5.0.0-beta.50
50
+
51
+ ## 3.0.0-beta.184
52
+
53
+ ### Patch Changes
54
+
55
+ - ai@7.0.0-beta.183
56
+
57
+ ## 3.0.0-beta.183
58
+
59
+ ### Patch Changes
60
+
61
+ - Updated dependencies [cc6ab90]
62
+ - ai@7.0.0-beta.182
63
+
64
+ ## 3.0.0-beta.182
65
+
66
+ ### Patch Changes
67
+
68
+ - Updated dependencies [6a2caf9]
69
+ - ai@7.0.0-beta.181
70
+
71
+ ## 3.0.0-beta.181
72
+
73
+ ### Patch Changes
74
+
75
+ - Updated dependencies [81a284b]
76
+ - ai@7.0.0-beta.180
77
+
78
+ ## 3.0.0-beta.180
79
+
80
+ ### Patch Changes
81
+
82
+ - ai@7.0.0-beta.179
83
+
84
+ ## 3.0.0-beta.179
85
+
86
+ ### Patch Changes
87
+
88
+ - Updated dependencies [b097c52]
89
+ - ai@7.0.0-beta.178
90
+
91
+ ## 3.0.0-beta.178
92
+
93
+ ### Patch Changes
94
+
95
+ - b8396f0: trigger initial beta release
96
+ - Updated dependencies [b8396f0]
97
+ - @ai-sdk/provider-utils@5.0.0-beta.49
98
+ - @ai-sdk/provider@4.0.0-beta.19
99
+ - ai@7.0.0-beta.177
100
+
3
101
  ## 3.0.0-canary.177
4
102
 
5
103
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/rsc",
3
- "version": "3.0.0-canary.177",
3
+ "version": "3.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/rsc-client.mjs",
@@ -28,9 +28,9 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "jsondiffpatch": "0.7.3",
31
- "@ai-sdk/provider": "4.0.0-canary.18",
32
- "@ai-sdk/provider-utils": "5.0.0-canary.48",
33
- "ai": "7.0.0-canary.176"
31
+ "ai": "7.0.0",
32
+ "@ai-sdk/provider": "4.0.0",
33
+ "@ai-sdk/provider-utils": "5.0.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@testing-library/jest-dom": "^6.9.1",