diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ba03a6af1..129ea634bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v0.20.0 +* Update zq to [v0.24.0](https://github.com/brimsec/zq/releases/tag/v0.24.0) +* Begin bundling the same Zeek artifact referenced in [zq's `package.json`](https://github.com/brimsec/zq/blob/master/package.json) (#1215) +* Support log imports over the network, such as to a remote `zqd` (#1195, #1228) +* Fix an issue where an excess "Space does not exist" message was shown when clicking Retry after a `zqd` restart (#1200) +* Improve the error message for failed attempts to import pcaps (#1235) +* Allow removal of remote Connection configs (#1226) +* Fix an issue where importing logs containing `null` values for nested records caused a crash (#1241) +* Add scaffolding for a future Query Library feature (#1239) +* Fix an issue where Brim sometimes failed to load on remote VM sessions (#1248) + ## v0.19.0 * **NOTE** - Due to the ZNG storage format change described in the [`zq` v0.23.0 release notes](https://github.com/brimsec/zq/releases/tag/v0.23.0), diff --git a/package-lock.json b/package-lock.json index 597ec249dd..9a12705e1a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "Brim", - "version": "0.19.0", + "version": "0.20.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -20483,8 +20483,8 @@ } }, "zq": { - "version": "git+https://github.com/brimsec/zq.git#91703a64366ef1461b9379b4b7940b623c5b05bd", - "from": "git+https://github.com/brimsec/zq.git#91703a64366ef1461b9379b4b7940b623c5b05bd" + "version": "git+https://github.com/brimsec/zq.git#a144052aeff2bd6a79146dba4756431fdfddc7bd", + "from": "git+https://github.com/brimsec/zq.git#v0.24.0" } } } diff --git a/package.json b/package.json index 8cfcf89c00..e8982f6d9d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "description": "Brim Desktop App", "repository": "https://github.com/brimsec/brim", "license": "BSD-3-Clause", - "version": "0.19.0", + "version": "0.20.0", "main": "dist/js/electron/main.js", "author": "Brim Security, Inc.", "bin": { @@ -176,7 +176,7 @@ "styled-components": "^5.1.1", "valid-url": "^1.0.9", "zealot": "file:zealot", - "zq": "git+https://github.com/brimsec/zq.git#91703a64366ef1461b9379b4b7940b623c5b05bd" + "zq": "git+https://github.com/brimsec/zq.git#v0.24.0" }, "optionalDependencies": { "electron-installer-debian": "^3.0.0",