Releases: foxglove/foxglove-cli
Releases · foxglove/foxglove-cli
v1.0.23
v1.0.22
export: fix bag reindexing (#141) ### Changelog - Fixed: previously ROS 1 bag files downloaded using the foxglove CLI would fail with an "unindexed bag" error. These files should now download correctly. ### Docs ### Description Since #124, the code to reindex exported bag files has been broken - it first tries to use a seeking reader to read the unindexed file (which will not work), then it fails to close the reindexing writer in the happy path. This PR fixes that and adds a test.
v1.0.21
- Bump protobuf and x/crypto dependencies
v1.0.20
- Fix uint64 handling in JSON transcoder, for rosbag export
v1.0.19
What's Changed
- Add support for recording key to foxglove CLI by @wkalt in #130
- Add support for delete recording by @ausrine-einride in #134
- Fully implement List Recordings by @christka1 in #133
New Contributors
- @ausrine-einride made their first contribution in #134
- @christka1 made their first contribution in #133
Full Changelog: v1.0.18...v1.0.19
v1.0.18
Fix json switch on export command (#132) This fixes broken implementation of the recently added --json switch. Prior to this commit it only would have worked if --output-format json were simultaneously supplied.
v1.0.17
Add info command (#129) This commit adds a command to display info such as org Id, org name, email used, type of token etc. This should make it easier to debug users' request failures.
v1.0.16
Build CLI with -tags 'netgo' (#128) By default we are relying on cgo for DNS resolution, which causes binaries built on ubuntu 22.04 to break on ubuntu 20.04 due to some changes in glibc. See https://github.com/golang/go/issues/57328 This changes us to not rely on that, which causes builds to succeed.
v1.0.15
Add --json alias if --format json is supported (#127) * Add --json alias if --format json is supported * Rename function to ResolveFormat * Update description for --json flag
v1.0.14
Support edge imports (#123) * Support edge imports * Fix required file arg * Address comments