@mastra/tavily 1.0.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.
- package/CHANGELOG.md +18 -0
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @mastra/tavily
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed runtime `ERR_MODULE_NOT_FOUND` for `@tavily/core` by making it a direct dependency. Consumers no longer need to install `@tavily/core` manually. ([#15628](https://github.com/mastra-ai/mastra/pull/15628))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`f112db1`](https://github.com/mastra-ai/mastra/commit/f112db179557ae9b5a0f1d25dc47f928d7d61cd9), [`21d9706`](https://github.com/mastra-ai/mastra/commit/21d970604d89eee970cbf8013d26d7551aff6ea5), [`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c)]:
|
|
10
|
+
- @mastra/core@1.27.0
|
|
11
|
+
|
|
12
|
+
## 1.0.1-alpha.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Fixed runtime `ERR_MODULE_NOT_FOUND` for `@tavily/core` by making it a direct dependency. Consumers no longer need to install `@tavily/core` manually. ([#15628](https://github.com/mastra-ai/mastra/pull/15628))
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c)]:
|
|
19
|
+
- @mastra/core@1.27.0-alpha.1
|
|
20
|
+
|
|
3
21
|
## 1.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/tavily",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Tavily web search, extract, crawl, and map tools for Mastra agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -42,20 +42,21 @@
|
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=22.13.0"
|
|
44
44
|
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@tavily/core": "^0.7.2"
|
|
47
|
+
},
|
|
45
48
|
"peerDependencies": {
|
|
46
49
|
"@mastra/core": ">=1.0.0-0 <2.0.0-0",
|
|
47
|
-
"@tavily/core": ">=0.7.0",
|
|
48
50
|
"zod": ">=3.0.0 || >=4.0.0"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
|
-
"@tavily/core": "^0.7.2",
|
|
52
53
|
"tsup": "^8.5.1",
|
|
53
54
|
"typescript": "^5.9.3",
|
|
54
55
|
"vitest": "4.1.4",
|
|
55
56
|
"zod": "^4.3.6",
|
|
56
|
-
"@internal/lint": "0.0.
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
57
|
+
"@internal/lint": "0.0.85",
|
|
58
|
+
"@mastra/core": "1.27.0",
|
|
59
|
+
"@internal/types-builder": "0.0.60"
|
|
59
60
|
},
|
|
60
61
|
"scripts": {
|
|
61
62
|
"build:lib": "tsup --silent --config tsup.config.ts",
|