@mastra/fastembed 1.0.1-alpha.0 → 1.0.1

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 +9 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/fastembed
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - dependencies updates: ([#10195](https://github.com/mastra-ai/mastra/pull/10195))
8
+ - Updated dependency [`fastembed@^2.1.0` ↗︎](https://www.npmjs.com/package/fastembed/v/2.1.0) (from `^1.14.4`, in `dependencies`)
9
+
10
+ - Add `warmup()` export to pre-download fastembed models without creating ONNX sessions. This prevents concurrent download race conditions when multiple consumers call `FlagEmbedding.init()` in parallel, which could corrupt the model archive and cause `Z_BUF_ERROR`. ([#13752](https://github.com/mastra-ai/mastra/pull/13752))
11
+
3
12
  ## 1.0.1-alpha.0
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/fastembed",
3
- "version": "1.0.1-alpha.0",
3
+ "version": "1.0.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -46,11 +46,11 @@
46
46
  "typescript": "^5.9.3",
47
47
  "vitest": "4.0.18",
48
48
  "zod": "^3.25.76",
49
- "@internal/ai-sdk-v4": "0.0.12",
50
- "@internal/ai-v6": "0.0.12",
51
- "@internal/ai-sdk-v5": "0.0.12",
52
- "@internal/lint": "0.0.65",
53
- "@internal/types-builder": "0.0.40"
49
+ "@internal/ai-sdk-v5": "0.0.13",
50
+ "@internal/lint": "0.0.66",
51
+ "@internal/ai-sdk-v4": "0.0.13",
52
+ "@internal/ai-v6": "0.0.13",
53
+ "@internal/types-builder": "0.0.41"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=22.13.0"