ai 4.0.9 → 4.0.11
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 +15 -0
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# ai
|
2
2
|
|
3
|
+
## 4.0.11
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [953469c]
|
8
|
+
- Updated dependencies [a3dd2ed]
|
9
|
+
- @ai-sdk/ui-utils@1.0.3
|
10
|
+
- @ai-sdk/react@1.0.4
|
11
|
+
|
12
|
+
## 4.0.10
|
13
|
+
|
14
|
+
### Patch Changes
|
15
|
+
|
16
|
+
- 913872d: fix (ai/core): track promise from async createDataStream.execute
|
17
|
+
|
3
18
|
## 4.0.9
|
4
19
|
|
5
20
|
### Patch Changes
|
package/dist/index.js
CHANGED
@@ -119,9 +119,11 @@ function createDataStream({
|
|
119
119
|
onError
|
120
120
|
});
|
121
121
|
if (result) {
|
122
|
-
|
123
|
-
|
124
|
-
|
122
|
+
ongoingStreamPromises.push(
|
123
|
+
result.catch((error) => {
|
124
|
+
controller.enqueue((0, import_ui_utils.formatDataStreamPart)("error", onError(error)));
|
125
|
+
})
|
126
|
+
);
|
125
127
|
}
|
126
128
|
} catch (error) {
|
127
129
|
controller.enqueue((0, import_ui_utils.formatDataStreamPart)("error", onError(error)));
|