@mastra/fastembed 0.10.4 → 0.10.5

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 +87 -0
  2. package/package.json +14 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,87 @@
1
+ # @mastra/fastembed
2
+
3
+ ## 0.10.5
4
+
5
+ ### Patch Changes
6
+
7
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
8
+
9
+ ## 0.10.5-alpha.0
10
+
11
+ ### Patch Changes
12
+
13
+ - [#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`.
14
+
15
+ ## 0.10.4
16
+
17
+ ### Patch Changes
18
+
19
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
20
+
21
+ ## 0.10.3
22
+
23
+ ### Patch Changes
24
+
25
+ - [#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:
26
+ - Updated dependency [`ai@^4.3.19` ↗︎](https://www.npmjs.com/package/ai/v/4.3.19) (from `^4.3.16`, in `dependencies`)
27
+
28
+ ## 0.10.3-alpha.0
29
+
30
+ ### Patch Changes
31
+
32
+ - [#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:
33
+ - Updated dependency [`ai@^4.3.19` ↗︎](https://www.npmjs.com/package/ai/v/4.3.19) (from `^4.3.16`, in `dependencies`)
34
+
35
+ ## 0.10.2
36
+
37
+ ### Patch Changes
38
+
39
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
40
+
41
+ ## 0.10.2-alpha.0
42
+
43
+ ### Patch Changes
44
+
45
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
46
+
47
+ ## 0.10.1
48
+
49
+ ### Patch Changes
50
+
51
+ - f64b3f7: dependencies updates:
52
+ - Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^3.4.33`, in `dependencies`)
53
+
54
+ ## 0.10.1-alpha.0
55
+
56
+ ### Patch Changes
57
+
58
+ - f64b3f7: dependencies updates:
59
+ - Updated dependency [`ai@^4.3.16` ↗︎](https://www.npmjs.com/package/ai/v/4.3.16) (from `^3.4.33`, in `dependencies`)
60
+
61
+ ## 0.0.3
62
+
63
+ ### Patch Changes
64
+
65
+ - 48b8c2c: dependencies updates:
66
+ - Updated dependency [`ai@^3.4.33` ↗︎](https://www.npmjs.com/package/ai/v/3.4.33) (from `^3.0.0`, in `dependencies`)
67
+
68
+ ## 0.0.3-alpha.0
69
+
70
+ ### Patch Changes
71
+
72
+ - 48b8c2c: dependencies updates:
73
+ - Updated dependency [`ai@^3.4.33` ↗︎](https://www.npmjs.com/package/ai/v/3.4.33) (from `^3.0.0`, in `dependencies`)
74
+
75
+ ## 0.0.2
76
+
77
+ ### Patch Changes
78
+
79
+ - 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)
80
+ Added a warning to use the new @mastra/fastembed package instead of the default embedder
81
+
82
+ ## 0.0.2-alpha.0
83
+
84
+ ### Patch Changes
85
+
86
+ - 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)
87
+ 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",
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"
@@ -30,8 +40,8 @@
30
40
  "tsup": "^8.5.0",
31
41
  "typescript": "^5.8.3",
32
42
  "vitest": "^3.2.4",
33
- "@internal/lint": "0.0.34",
34
- "@internal/types-builder": "0.0.9"
43
+ "@internal/lint": "0.0.35",
44
+ "@internal/types-builder": "0.0.10"
35
45
  },
36
46
  "scripts": {
37
47
  "build": "tsup --silent --config tsup.config.ts",