chore(cli): changelog for 0.4.2 and tweak option descriptions

This commit is contained in:
Gabriel Horner
2025-12-16 15:04:26 -05:00
parent 8541b7c79f
commit 3a9b00f21f
2 changed files with 10 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
## 0.4.2
* Add `--validate` option to `export-edn` command
* Fix cli can't run in CI environments
* Fix `import-edn` and `mcp-server` commands not building refs for new or edited nodes
## 0.4.1
* Add `--open-schema` option to `validate` command
* Fix `append` command fails

View File

@@ -17,10 +17,6 @@
:desc "Include timestamps in export"}
:file {:alias :f
:desc "File to save export"}
:validate {:alias :v
:desc "Validates export by importing into a temp graph and validating it"}
:catch-validation-errors? {:alias :c
:desc "Catch validation errors for dev"}
:exclude-namespaces {:alias :e
:coerce #{}
:desc "Namespaces to exclude from properties and classes"}
@@ -31,7 +27,11 @@
:export-type {:alias :t
:coerce :keyword
:desc "Export type"
:default :graph}})
:default :graph}
:validate {:alias :v
:desc "(Dev) Validate export with a temp graph built on exported EDN"}
:catch-validation-errors? {:alias :c
:desc "(Dev) Catch validation errors and still write invalid EDN"}})
(def import-edn
{:api-server-token {:alias :a