From 86ad244a694eef15c8406bbcf910982d14f82ff0 Mon Sep 17 00:00:00 2001 From: Torin Sandall Date: Wed, 1 Apr 2020 14:56:45 -0400 Subject: [PATCH] Prepare v0.19.0-rc1 release Signed-off-by: Torin Sandall --- CHANGELOG.md | 18 +++++++++++++++++- Makefile | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f8e31ae74..73478c6242 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 0.19.0-rc1 + ### New Parser @@ -96,6 +97,21 @@ ParseStatementNestedObjects/5x5-16 8.16M ± 0% 0.07M ± 0% -99.13% (p ParseBasicABACModule-16 36.5k ± 0% 0.7k ± 0% -98.09% (p=0.008 n=5+5) ``` +### Fixes + +- ast: Add rules/functions that contain errors to the type env ([#2155](https://github.com/open-policy-agent/opa/issues/2155)) + +### Miscellaneous + +- project: Add support for release candidate version tags +- rego: Improve support for registering custom built-ins +- repl: Add unset-package command ([#2140](https://github.com/open-policy-agent/opa/issues/2140)) +- misc: Add sublime text syntax file +- misc: Add link to the Emacs mode for Rego on the website +- topdown: Add http.send support for setting the TLS server name +- topdown: Fix lost `tls_insecure_skip_verify` setting +- topdown: Add net.cidr_contains_matches built-in function + ## 0.18.0 ### Features diff --git a/Makefile b/Makefile index 47633804cd..9acddd4715 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Use of this source code is governed by an Apache2 # license that can be found in the LICENSE file. -VERSION := 0.19.0-dev +VERSION := 0.19.0-rc1 # Force modules on and to use the vendor directory. GO := GO111MODULE=on GOFLAGS=-mod=vendor go