Prepare v0.30.2 release

Signed-off-by: Torin Sandall <torinsandall@gmail.com>
This commit is contained in:
Torin Sandall
2021-07-13 10:30:32 -07:00
parent 5b39039371
commit 3ec75dc61a
3 changed files with 3465 additions and 1 deletions
+6
View File
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file. This
project adheres to [Semantic Versioning](http://semver.org/).
## 0.30.2
This is a bugfix release that modifies the AWS credential provider to use POST
instead of GET for retrieving AWS STS tokens. The GET method can leak
credentials into the debug log if the AWS STS endpoint is unavailable.
## 0.30.1
This is a bugfix release to correct the behaviour of the `indexof` builtin ([#3606](https://github.com/open-policy-agent/opa/issues/3606)).
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -10,7 +10,7 @@ import (
)
// Version is the canonical version of OPA.
var Version = "0.30.1"
var Version = "0.30.2"
// GoVersion is the version of Go this was built with
var GoVersion = runtime.Version()