diff --git a/.changeset/gentle-colts-decide.md b/.changeset/gentle-colts-decide.md deleted file mode 100644 index eb22cf2b..00000000 --- a/.changeset/gentle-colts-decide.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"barnard59": minor ---- - -Common CLI flags are now support both when before and after the `run` command. - -For example, these two commands are now equivalent: - -```shell -barnard59 run file.ttl --verbose -barnard59 --verbose run file.ttl -``` diff --git a/.changeset/gorgeous-bats-repair.md b/.changeset/gorgeous-bats-repair.md deleted file mode 100644 index 45cf4051..00000000 --- a/.changeset/gorgeous-bats-repair.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"barnard59": major ---- - -Monitoring flags moved before commands: - -- `--enable-buffer-monitor` -- `--otel-debug` -- `--otel-metrics-exporter` -- `--otel-metrics-interval` -- `--otel-traces-exporter` - -Update scripts like - -```diff --barnard59 run pipeline.ttl --enable-buffer-monitor -+barnard59 --enable-buffer-monitor run pipeline.ttl -``` diff --git a/.changeset/large-hats-beg.md b/.changeset/large-hats-beg.md deleted file mode 100644 index bc3a9470..00000000 --- a/.changeset/large-hats-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"barnard59-graph-store": minor ---- - -Added a reusable `put` pipeline diff --git a/.changeset/old-donuts-destroy.md b/.changeset/old-donuts-destroy.md deleted file mode 100644 index 0e3f51c2..00000000 --- a/.changeset/old-donuts-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"barnard59": patch ---- - -Enable TRACE logging level diff --git a/.changeset/warm-suits-grow.md b/.changeset/warm-suits-grow.md deleted file mode 100644 index d6de5650..00000000 --- a/.changeset/warm-suits-grow.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"barnard59": minor ---- - -The CLI will now discover new commands from other `barnard59-*` packages (re #85) - -See [here](https://data-centric.zazuko.com/docs/workflows/how-to/extend-banard59-cli) for more details diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 6ece0009..9583d05b 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +## 2.0.0 + +### Major Changes + +- ec47a51: Monitoring flags moved before commands: + + - `--enable-buffer-monitor` + - `--otel-debug` + - `--otel-metrics-exporter` + - `--otel-metrics-interval` + - `--otel-traces-exporter` + + Update scripts like + + ```diff + -barnard59 run pipeline.ttl --enable-buffer-monitor + +barnard59 --enable-buffer-monitor run pipeline.ttl + ``` + +### Minor Changes + +- ec47a51: Common CLI flags are now support both when before and after the `run` command. + + For example, these two commands are now equivalent: + + ```shell + barnard59 run file.ttl --verbose + barnard59 --verbose run file.ttl + ``` + +- 03fd12a: The CLI will now discover new commands from other `barnard59-*` packages (re #85) + + See [here](https://data-centric.zazuko.com/docs/workflows/how-to/extend-banard59-cli) for more details + +### Patch Changes + +- 9bdcb64: Enable TRACE logging level + ## 1.1.7 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 3fe41ef4..ff5bc73b 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "barnard59", - "version": "1.1.7", + "version": "2.0.0", "description": "Barnard59 Linked Data pipelines", "type": "module", "main": "index.js", @@ -45,7 +45,7 @@ "devDependencies": { "barnard59-base": "^1.2.1", "barnard59-formats": "^1.4.0", - "barnard59-graph-store": "^1.0.2", + "barnard59-graph-store": "^1.1.0", "barnard59-http": "^1.1.0", "barnard59-shell": "^0.1.0", "barnard59-test-support": "^0.0.1", diff --git a/packages/graph-store/CHANGELOG.md b/packages/graph-store/CHANGELOG.md index 9a22179e..a72831d5 100644 --- a/packages/graph-store/CHANGELOG.md +++ b/packages/graph-store/CHANGELOG.md @@ -1,5 +1,11 @@ # v1.0.0 +## 1.1.0 + +### Minor Changes + +- 03fd12a: Added a reusable `put` pipeline + ## 1.0.2 ### Patch Changes diff --git a/packages/graph-store/package.json b/packages/graph-store/package.json index aeadf8fa..12b5e56d 100644 --- a/packages/graph-store/package.json +++ b/packages/graph-store/package.json @@ -1,6 +1,6 @@ { "name": "barnard59-graph-store", - "version": "1.0.2", + "version": "1.1.0", "description": "SPARQL Graph Store Protocol support for Linked Data pipelines", "type": "module", "main": "index.js",