@alexanderfortin/pi-tavily-tools 0.6.5 → 0.6.7
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 +19 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.7] - 2026-09-15
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **deps**: update dependencies, bump Tavily to v0.7.12 (#85)
|
|
15
|
+
|
|
16
|
+
## [0.6.6] - 2026-09-12
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **deps-dev**: update dependencies (#82)
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- **deps**: bump Tavily core to v0.7.10
|
|
25
|
+
|
|
10
26
|
## [0.6.5] - 2026-09-07
|
|
11
27
|
|
|
12
28
|
### Changed
|
|
@@ -259,7 +275,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
259
275
|
|
|
260
276
|
- Initial release with `web_search` tool using Tavily
|
|
261
277
|
|
|
262
|
-
[unreleased]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.
|
|
278
|
+
[unreleased]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.7...HEAD
|
|
279
|
+
[0.6.7]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.6...v0.6.7
|
|
280
|
+
[0.6.6]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.5...v0.6.6
|
|
263
281
|
[0.6.5]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.4...v0.6.5
|
|
264
282
|
[0.6.4]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.3...v0.6.4
|
|
265
283
|
[0.6.3]: https://github.com/shaftoe/pi-tavily-tools/compare/v0.6.2...v0.6.3
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexanderfortin/pi-tavily-tools",
|
|
3
3
|
"author": "Alexander Fortin",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.7",
|
|
5
5
|
"description": "Pi coding agent extension for web search and content extraction using Tavily",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"pi-package",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"@semantic-release/npm": "13.1.5",
|
|
74
74
|
"@semantic-release/release-notes-generator": "14.1.1",
|
|
75
75
|
"@sinclair/typebox": "0.34.49",
|
|
76
|
-
"@types/bun": "1.4.
|
|
77
|
-
"@types/node": "26.
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
79
|
-
"@typescript-eslint/parser": "8.
|
|
76
|
+
"@types/bun": "^1.4.2",
|
|
77
|
+
"@types/node": "^26.5.1",
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^8.70.0",
|
|
79
|
+
"@typescript-eslint/parser": "^8.70.0",
|
|
80
80
|
"eslint": "10.10.0",
|
|
81
81
|
"eslint-config-prettier": "10.1.8",
|
|
82
82
|
"prettier": "3.9.6",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"typescript": "6"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@tavily/core": "0.7.
|
|
89
|
-
"temporal-polyfill": "1.0.
|
|
88
|
+
"@tavily/core": "^0.7.12",
|
|
89
|
+
"temporal-polyfill": "^1.0.5"
|
|
90
90
|
}
|
|
91
91
|
}
|