@mastra/fastembed 0.0.0-bundle-recursion-20251030002519 → 0.0.0-client-js-listmessages-agentid-fix-20251119175531
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 -1
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
# @mastra/fastembed
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-client-js-listmessages-agentid-fix-20251119175531
|
|
4
4
|
|
|
5
5
|
### Major Changes
|
|
6
6
|
|
|
7
|
+
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
8
|
+
|
|
7
9
|
- Upgraded to AI SDK v5 (specification version v2) for compatibility with @mastra/core. Default exports now use v2 specification. Legacy v1 exports available for backwards compatibility via `fastembed.smallLegacy` and `fastembed.baseLegacy`. ([#9349](https://github.com/mastra-ai/mastra/pull/9349))
|
|
8
10
|
|
|
11
|
+
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
12
|
+
|
|
13
|
+
## 1.0.0-beta.0
|
|
14
|
+
|
|
15
|
+
### Major Changes
|
|
16
|
+
|
|
17
|
+
- Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
|
|
18
|
+
|
|
19
|
+
- Upgraded to AI SDK v5 (specification version v2) for compatibility with @mastra/core. Default exports now use v2 specification. Legacy v1 exports available for backwards compatibility via `fastembed.smallLegacy` and `fastembed.baseLegacy`. ([#9349](https://github.com/mastra-ai/mastra/pull/9349))
|
|
20
|
+
|
|
21
|
+
- Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
|
|
22
|
+
|
|
9
23
|
## 0.10.5
|
|
10
24
|
|
|
11
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/fastembed",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-client-js-listmessages-agentid-fix-20251119175531",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,18 +32,23 @@
|
|
|
32
32
|
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
+
"@ai-sdk/provider": "^2.0.0",
|
|
35
36
|
"ai": "^5.0.76",
|
|
36
37
|
"ai-v4": "npm:ai@4.3.19",
|
|
37
|
-
"@ai-sdk/provider": "^2.0.0",
|
|
38
38
|
"fastembed": "^1.14.4"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "
|
|
41
|
+
"@types/node": "22.13.17",
|
|
42
|
+
"@vitest/coverage-v8": "4.0.8",
|
|
43
|
+
"@vitest/ui": "4.0.8",
|
|
42
44
|
"tsup": "^8.5.0",
|
|
43
45
|
"typescript": "^5.8.3",
|
|
44
|
-
"vitest": "^
|
|
45
|
-
"@internal/lint": "0.0.0-
|
|
46
|
-
"@internal/types-builder": "0.0.0-
|
|
46
|
+
"vitest": "^4.0.8",
|
|
47
|
+
"@internal/lint": "0.0.0-client-js-listmessages-agentid-fix-20251119175531",
|
|
48
|
+
"@internal/types-builder": "0.0.0-client-js-listmessages-agentid-fix-20251119175531"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=22.13.0"
|
|
47
52
|
},
|
|
48
53
|
"scripts": {
|
|
49
54
|
"build": "tsup --silent --config tsup.config.ts",
|