chore: add changelog

also fix minor bug silently failing show command for abnormal graphs
This commit is contained in:
Gabriel Horner
2025-08-11 10:32:54 -04:00
committed by Gabriel Horner
parent bf6433ed7a
commit 70855ef033
2 changed files with 7 additions and 1 deletions

6
deps/cli/CHANGELOG.md vendored Normal file
View File

@@ -0,0 +1,6 @@
## 0.1.0
* Initial release!
* Provides commands: list, show, search, query, export-edn and help
* All commands except search work offline. search and query have options for calling HTTP Server of
open desktop Logseq app

View File

@@ -26,7 +26,7 @@
(pprint/print-table
(map #(array-map "Name" (first %) "Value" (second %))
(cond-> [["Graph directory" graph-dir]
["Graph created at" (ms->journal-title (kv-value :logseq.kv/graph-created-at))]
["Graph created at" (some-> (kv-value :logseq.kv/graph-created-at) ms->journal-title)]
["Graph schema version" (kv-value :logseq.kv/schema-version)]
["Graph initial schema version" (kv-value :logseq.kv/graph-initial-schema-version)]]
(d/entity @conn :logseq.kv/graph-git-sha)