v0.31.0
Quick Start
Visit the Brim Download page to find the package for your OS platform.
Zed is distributed as a ZIP of command line binaries for each supported platform. To install, unpack with the unzip utility for your OS. For example, on Linux:
curl -OL https://github.com/brimdata/zed/releases/download/v0.31.0/zed-v0.31.0.linux-amd64.zip
unzip zed-v0.31.0.linux-amd64.zip
Note that if you've also installed the Brim desktop app, a set of Zed binaries is already unpacked as part of the app installation. If you intend to use Zed at the command line to work with data in the Zed lake that's behind by Brim, it is recommended to use the binaries there were unpacked with the app, since these have been tested with that app release. See this Brim wiki article for details regarding their location.
Release Notes
- Allow indexes to handle fields containing values of different types (#3141)
- Improve CSV writer performance (#3137)
- Fix an issue preventing use of a seek index containing nulls (#3138)
- Add
float32
primitive type (#3110) - Add
len()
support forbytes
,error
, and map types (#3136) - Allow empty ZSON maps (#3135)
- Fix an issue affecting
range
queries on a lake containing records with a missing or null pool key (#3134) - Allow
from ( pass => ...; )
(#3133) - Change Go marshaling struct field tag to
zed
fromzng
(#3130) - Fix a panic when reading CSV containing an empty quoted field (#3128)
- Improve CSV output format (#3129)
- Detect JSON input containing a top-level array (#3124)
- Decode top-level JSON arrays incrementally (#3123)
- Remove PPL license (#3116)
- Change ZSON map syntax to
|{ key: value, ... }|
(#3111) - Support revert for indexes (#3101)
- Rename
zson_parse()
toparse_zson()
(#3092) - Add
zed lake index update
andzed api index update
commands (#3079, #3093) - Add
parse_uri()
function (#3080, #3084) - Add
from pool@branch:indexes
meta query (#3078) - Fix an issue where
sort len(field)
produced incorrect output (#3045) - Remove
POST /ast
andPOST /search
from the Zed lake service API (#3065) - Fix an issue with with record aliases in
drop
(#3064)