@ai-sdk/vue 4.0.0-canary.176 → 4.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.
- package/CHANGELOG.md +94 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,99 @@
|
|
|
1
1
|
# @ai-sdk/vue
|
|
2
2
|
|
|
3
|
+
## 4.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
|
+
- b567a6c: dependency updates
|
|
13
|
+
- 9f0e36c: trigger release for all packages after provenance setup
|
|
14
|
+
- 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.
|
|
15
|
+
- 0c4c275: trigger initial canary release
|
|
16
|
+
- 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles
|
|
17
|
+
- b8396f0: trigger initial beta release
|
|
18
|
+
- e2525c8: fix(vue): forward args in useChat methods
|
|
19
|
+
- d984051: Add `useChat` composable for `@ai-sdk/vue`, providing a reactive wrapper around `Chat` with auto-recreation when the init object changes.
|
|
20
|
+
|
|
21
|
+
## 4.0.0-beta.187
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- ai@7.0.0-beta.187
|
|
26
|
+
|
|
27
|
+
## 4.0.0-beta.186
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- ai@7.0.0-beta.186
|
|
32
|
+
|
|
33
|
+
## 4.0.0-beta.185
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [75763b0]
|
|
38
|
+
- ai@7.0.0-beta.185
|
|
39
|
+
|
|
40
|
+
## 4.0.0-beta.184
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- Updated dependencies [0416e3e]
|
|
45
|
+
- ai@7.0.0-beta.184
|
|
46
|
+
- @ai-sdk/provider-utils@5.0.0-beta.50
|
|
47
|
+
|
|
48
|
+
## 4.0.0-beta.183
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- ai@7.0.0-beta.183
|
|
53
|
+
|
|
54
|
+
## 4.0.0-beta.182
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- Updated dependencies [cc6ab90]
|
|
59
|
+
- ai@7.0.0-beta.182
|
|
60
|
+
|
|
61
|
+
## 4.0.0-beta.181
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- Updated dependencies [6a2caf9]
|
|
66
|
+
- ai@7.0.0-beta.181
|
|
67
|
+
|
|
68
|
+
## 4.0.0-beta.180
|
|
69
|
+
|
|
70
|
+
### Patch Changes
|
|
71
|
+
|
|
72
|
+
- Updated dependencies [81a284b]
|
|
73
|
+
- ai@7.0.0-beta.180
|
|
74
|
+
|
|
75
|
+
## 4.0.0-beta.179
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- ai@7.0.0-beta.179
|
|
80
|
+
|
|
81
|
+
## 4.0.0-beta.178
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- Updated dependencies [b097c52]
|
|
86
|
+
- ai@7.0.0-beta.178
|
|
87
|
+
|
|
88
|
+
## 4.0.0-beta.177
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- b8396f0: trigger initial beta release
|
|
93
|
+
- Updated dependencies [b8396f0]
|
|
94
|
+
- @ai-sdk/provider-utils@5.0.0-beta.49
|
|
95
|
+
- ai@7.0.0-beta.177
|
|
96
|
+
|
|
3
97
|
## 4.0.0-canary.176
|
|
4
98
|
|
|
5
99
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/vue",
|
|
3
|
-
"version": "4.0.0
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"swrv": "^1.2.0",
|
|
30
|
-
"@ai-sdk/provider-utils": "5.0.0
|
|
31
|
-
"ai": "7.0.0
|
|
30
|
+
"@ai-sdk/provider-utils": "5.0.0",
|
|
31
|
+
"ai": "7.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"msw": "2.6.4",
|
|
41
41
|
"tsup": "^7.2.0",
|
|
42
42
|
"typescript": "5.8.3",
|
|
43
|
-
"vitest": "4.1.
|
|
43
|
+
"vitest": "4.1.6",
|
|
44
44
|
"zod": "3.25.76",
|
|
45
|
-
"@ai-sdk/test-server": "2.0.0
|
|
45
|
+
"@ai-sdk/test-server": "2.0.0",
|
|
46
46
|
"@vercel/ai-tsconfig": "0.0.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|