v1.16.0
Highlights
For a walk through the highlights, see the June 2024 Release blog post.
Quick Start
Visit the Brim Data download page to find the package for your platform.
Zed is distributed as a TGZ/ZIP file of command line executables for each supported platform. To install, unpack with with the appropriate utility for your platform. For example, on Linux:
curl -OL https://github.com/brimdata/zed/releases/download/v1.16.0/zed-v1.16.0.linux-amd64.tar.gz
tar xzvf zed-v1.16.0.linux-amd64.tar.gz
If you've installed the Zui desktop app and want to work with its Zed lake from the command line, we recommend using the Zed executables included with the app to ensure compatibility. See this Zui docs article for their location.
Release Notes
- Improve ZNG scanning performance (#5101, #5103)
- Improve the error message shown when
zq
is invoked with a single argument that's not a valid query and doesn't contain a source (#5119) - Update Zeek integration docs, including reference shaper changes for Zeek v6.2.0 data (#5106)
- String literals now use the "f-string" format
f"{ <expr> }"
instead of the previous${ <expr> }
(#5123) - Prototype SQL support has been dropped from the Zed language (full SQL support is expected at a later date) (#5109)
- Empty objects and arrays in JSON output are now consistently printed on a single line (#5127)
- Enable colorized ZSON and JSON by default when output is to a terminal (#5114)
- Add JSON pretty print functionality (with color if supported by terminal) when activated via
-J
flag or setting format and the-pretty
flag (#5096) - Add a Grafana integration doc that points to the GitHub repo for the Zed data source plugin for Grafana (#5141)
- Fix an issue where stateful expressions inside of lateral queries could generate incorrect results (#5069)
- Fix an issue where stateful expressions inside user-defined functions could generate incorrect results (#5093)
- Fix an issue where the Go library examples failed to compile and run (#5095, #5147)