pplx-npx-search 0.3.0 → 0.3.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 +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to pplx-cli will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.1] - 2026-05-22
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Node 26 compatibility.** Upgraded `better-sqlite3` so installs work on Homebrew Node 26 hosts.
|
|
12
|
+
|
|
8
13
|
## [0.3.0] - 2026-05-22
|
|
9
14
|
|
|
10
15
|
### Added
|
|
@@ -62,6 +67,7 @@ First public release worth telling people about. (v0.2.0 was unpublished before
|
|
|
62
67
|
- SSE streaming for real-time answers
|
|
63
68
|
- Optional Playwright and Chrome CDP transports
|
|
64
69
|
|
|
70
|
+
[0.3.1]: https://github.com/thatsrajan/pplx-cli/compare/v0.3.0...v0.3.1
|
|
65
71
|
[0.3.0]: https://github.com/thatsrajan/pplx-cli/compare/v0.2.2...v0.3.0
|
|
66
72
|
[0.2.2]: https://github.com/thatsrajan/pplx-cli/compare/v0.2.1...v0.2.2
|
|
67
73
|
[0.2.1]: https://github.com/thatsrajan/pplx-cli/compare/v0.1.1...v0.2.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pplx-npx-search",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "CLI for Perplexity AI with cookie-based auth. Headless, agent-friendly, no API key required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"node": ">=20.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"better-sqlite3": "^
|
|
40
|
+
"better-sqlite3": "^12.10.0",
|
|
41
41
|
"chalk": "^5.3.0",
|
|
42
42
|
"commander": "^12.0.0",
|
|
43
43
|
"eventsource-parser": "^3.0.0",
|