Skip to content

Releases: foxglove/foxglove-cli

v1.0.23

15 Jul 21:42
37606a9
Compare
Choose a tag to compare

What's Changed

  • error if multiple files are supplied to import command by @sofuture in #142

New Contributors

Full Changelog: v1.0.22...v1.0.23

v1.0.22

08 May 00:45
bfd0eec
Compare
Choose a tag to compare
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

25 Apr 12:16
fc12837
Compare
Choose a tag to compare
- Bump protobuf and x/crypto dependencies

v1.0.20

25 Apr 12:06
db2eba3
Compare
Choose a tag to compare
- Fix uint64 handling in JSON transcoder, for rosbag export

v1.0.19

10 Jan 17:29
52fa2a6
Compare
Choose a tag to compare

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

20 Dec 17:47
ed2d962
Compare
Choose a tag to compare
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

17 Nov 21:15
cfff780
Compare
Choose a tag to compare
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

27 Sep 17:36
4b8acea
Compare
Choose a tag to compare
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

21 Sep 19:14
0d032d9
Compare
Choose a tag to compare
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

06 Sep 18:19
5e7c624
Compare
Choose a tag to compare
Support edge imports (#123)

* Support edge imports

* Fix required file arg

* Address comments