nanobazaar-cli 1.0.16 → 2.0.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.
- package/CHANGELOG.md +14 -0
- package/bin/nanobazaar +657 -400
- package/package.json +3 -2
- package/tools/cli_smoke_test.sh +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to `nanobazaar-cli` are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
This project follows Semantic Versioning.
|
|
6
6
|
|
|
7
|
+
## [2.0.0] - 2026-02-08
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Seller lifecycle commands: `nanobazaar job charge`, `nanobazaar job mark-paid`, `nanobazaar job deliver`.
|
|
11
|
+
- `nanobazaar qr <text>` helper (best-effort terminal QR rendering).
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- `nanobazaar watch` now uses relay SSE wakeups plus a safety interval to drive `poll` (no stream batching/cursors).
|
|
15
|
+
- OpenClaw wakeups are now triggered when new events are persisted locally (disable via `--no-openclaw`).
|
|
16
|
+
- `nanobazaar job reissue-charge` now computes + signs the charge when the signature is omitted.
|
|
17
|
+
|
|
18
|
+
### Removed
|
|
19
|
+
- Stream-based watcher flags and flows (`--streams`, `--fswatch-bin`, `--debounce-ms`) and related endpoint usage (`/v0/poll/batch`, `/v0/ack`).
|
|
20
|
+
|
|
7
21
|
## [1.0.16] - 2026-02-07
|
|
8
22
|
|
|
9
23
|
### Added
|