@mastra/fastembed 0.10.4 → 0.10.5-alpha.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 +81 -0
  2. package/package.json +12 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,81 @@
1
+ # @mastra/fastembed
2
+
3
+ ## 0.10.5-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
8
+
9
+ ## 0.10.4
10
+
11
+ ### Patch Changes
12
+
13
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
14
+
15
+ ## 0.10.3
16
+
17
+ ### Patch Changes
18
+
19
+ - [#6919](https://github.com/mastra-ai/mastra/pull/6919) [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
20
+ - Updated dependency [`ai@^4.3.19` ↗︎](https://www.npmjs.com/package/ai/v/4.3.19) (from `^4.3.16`, in `dependencies`)
21
+
22
+ ## 0.10.3-alpha.0
23
+
24
+ ### Patch Changes
25
+
26
+ - [#6919](https://github.com/mastra-ai/mastra/pull/6919) [`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
27
+ - Updated dependency [`ai@^4.3.19` ↗︎](https://www.npmjs.com/package/ai/v/4.3.19) (from `^4.3.16`, in `dependencies`)
28
+
29
+ ## 0.10.2
30
+
31
+ ### Patch Changes
32
+
33
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
34
+
35
+ ## 0.10.2-alpha.0
36
+
37
+ ### Patch Changes
38
+
39
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
40
+
41
+ ## 0.10.1
42
+
43
+ ### Patch Changes
44
+
45
+ - f64b3f7: dependencies updates:
46
+ - Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^3.4.33`, in `dependencies`)
47
+
48
+ ## 0.10.1-alpha.0
49
+
50
+ ### Patch Changes
51
+
52
+ - f64b3f7: dependencies updates:
53
+ - Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^3.4.33`, in `dependencies`)
54
+
55
+ ## 0.0.3
56
+
57
+ ### Patch Changes
58
+
59
+ - 48b8c2c: dependencies updates:
60
+ - Updated dependency [`ai@^3.4.33` ↗︎](https://www.npmjs.com/package/ai/v/3.4.33) (from `^3.0.0`, in `dependencies`)
61
+
62
+ ## 0.0.3-alpha.0
63
+
64
+ ### Patch Changes
65
+
66
+ - 48b8c2c: dependencies updates:
67
+ - Updated dependency [`ai@^3.4.33` ↗︎](https://www.npmjs.com/package/ai/v/3.4.33) (from `^3.0.0`, in `dependencies`)
68
+
69
+ ## 0.0.2
70
+
71
+ ### Patch Changes
72
+
73
+ - 3a5f1e1: Created a new @mastra/fastembed package based on the default embedder in @mastra/core as the default embedder will be removed in a breaking change (May 20th)
74
+ Added a warning to use the new @mastra/fastembed package instead of the default embedder
75
+
76
+ ## 0.0.2-alpha.0
77
+
78
+ ### Patch Changes
79
+
80
+ - 3a5f1e1: Created a new @mastra/fastembed package based on the default embedder in @mastra/core as the default embedder will be removed in a breaking change (May 20th)
81
+ Added a warning to use the new @mastra/fastembed package instead of the default embedder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/fastembed",
3
- "version": "0.10.4",
3
+ "version": "0.10.5-alpha.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,8 +19,18 @@
19
19
  "./package.json": "./package.json"
20
20
  },
21
21
  "files": [
22
- "dist"
22
+ "dist",
23
+ "CHANGELOG.md"
23
24
  ],
25
+ "homepage": "https://mastra.ai",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/mastra-ai/mastra.git",
29
+ "directory": "packages/fastembed"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/mastra-ai/mastra/issues"
33
+ },
24
34
  "dependencies": {
25
35
  "ai": "^4.3.19",
26
36
  "fastembed": "^1.14.4"