Skip to content
This repository was archived by the owner on Feb 9, 2026. It is now read-only.

v1.3.0

Choose a tag to compare

@fabio-nettis fabio-nettis released this 17 Apr 14:19
· 1 commit to main since this release
c5277ee

What's Changed

This release improves the handling of CLI queries containing the --raw flag to output the result as is. Two points have been optimized in particular:

  • Instead of a POJO, raw JSON is now outputted, so it can be piped into a file and be consumed by other scripts. This also means that there is no longer a depth limit for the output.

  • We added a --pretty flag that can be used in combination with --raw to indent and properly space out the printed json.

Example of a pretty print result

hellhub planets --include="sector" --filters="name:@contains:creek" --raw --pretty

This will be the output generated by the CLI:

[
 {
  "id": 197,
  "index": 196,
  // ... (properties ommited)
  "sector": {
   "id": 42,
   "index": 42,
   "name": "Severin",
   "createdAt": "2024-04-17T09:36:06.069Z",
   "updatedAt": "2024-04-17T13:57:02.665Z"
  }
 }
]

Full Changelog: v1.2.6...v1.3.0