Skip to content

Commit

Permalink
Prepare v0.63.0 release (#6656)
Browse files Browse the repository at this point in the history
Signed-off-by: Johan Fylling <johan.dev@fylling.se>
  • Loading branch information
johanfylling committed Mar 28, 2024
1 parent b705d5b commit bb30b15
Show file tree
Hide file tree
Showing 5 changed files with 5,019 additions and 8 deletions.
38 changes: 32 additions & 6 deletions CHANGELOG.md
Expand Up @@ -3,16 +3,42 @@
All notable changes to this project will be documented in this file. This
project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
## 0.63.0

### `opa exec` now supports a timeout flag
This release contains a mix of features, performance improvements, and bugfixes.

Previously, `opa exec` could end up in situations [where it might hang forever](https://github.com/open-policy-agent/opa/issues/6613).
This can be very undesirable behavior in build pipelines and CI systems!
### Runtime, Tooling, SDK

- cmd/exec: Add `--timeout` flag to `opa exec` to prevent infinite hangs. ([#6613](https://github.com/open-policy-agent/opa/issues/6613)) authored by @philipaconrad
- download: Surface bundle download errors via debug logging ([#6609](https://github.com/open-policy-agent/opa/issues/6609)) authored by @ashutosh-narkar reported by @nevumx
- topdown: Fixing overactive Early Exit suppression ([#6566](https://github.com/open-policy-agent/opa/issues/6566)) authored by @johanfylling reported by @ashwinhb
- plugins/rest: Add support to get temp creds via AssumeRole ([#6634](https://github.com/open-policy-agent/opa/pull/6634)) authored by @ashutosh-narkar

### Topdown and Rego

- topdown: Adding a new `crypto.x509.parse_and_verify_certificates_with_options` built-in function. ([#5882](https://github.com/open-policy-agent/opa/issues/5882)) authored by @yogisinha reported by @IxDay
- format: Preserve brackets around set union operation ([#6588](https://github.com/open-policy-agent/opa/issues/6588)) authored by @ashutosh-narkar reported by @HarshPathakhp
- aws: Support for Unsigned Payload or provided content sha256 in AWS signing ([#6581](https://github.com/open-policy-agent/opa/pull/6611)) authored by @prasanthj

`opa exec` now supports a timeout flag, identically to how `opa eval` does. Example:
### Docs + Website + Ecosystem

- ADOPTERS.md: Add Facets.cloud to the list ([#6640](https://github.com/open-policy-agent/opa/issues/6640)) authored by @ashutosh-narkar reported by @samarthya-gupta1
- docs: Mention homebrew install option ([#6622](https://github.com/open-policy-agent/opa/issues/6622)) authored by @anderseknert
- docs: Add Rego v1 keywords to list of reserved names ([#6649](https://github.com/open-policy-agent/opa/pull/6649)) authored by @anderseknert
- docs: Add Tunnelmole as an open source tunneling option in the Cloudformation hooks documentation ([#6626](https://github.com/open-policy-agent/opa/pull/6626)) authored by @robbie-cahill
- docs: Add docs on using env vars in place of CLI flags ([#6631](https://github.com/open-policy-agent/opa/pull/6631)) authored by @anderseknert
- docs: Adding integration for Backstage ([#6629](https://github.com/open-policy-agent/opa/pull/6629)) authored by @Parsifal-M
- docs: Clear up some uses of future keywords ([#6653](https://github.com/open-policy-agent/opa/pull/6653)) authored by @charlieegan3
- docs: Update delta bundle patch doc for remove op ([#6645](https://github.com/open-policy-agent/opa/pull/6645)) authored by @0marq
- docs: Fix typo in `Debugging OPA` ([#6637](https://github.com/open-policy-agent/opa/pull/6637)) authored by @setchy

opa exec --decision /test/p --timeout 10s /dev/null
### Miscellaneous

- chore: Remove repetitive words ([#6644](https://github.com/open-policy-agent/opa/pull/6644)) authored by @occupyhabit
- Dependency updates; notably:
- build(deps): bump github.com/containerd/containerd from 1.7.13 to 1.7.14
- build(deps): bump github.com/golang/protobuf from 1.5.3 to 1.5.4
- build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1

## 0.62.1

Expand Down
7 changes: 7 additions & 0 deletions ast/version_index.json
Expand Up @@ -280,6 +280,13 @@
"PreRelease": "",
"Metadata": ""
},
"crypto.x509.parse_and_verify_certificates_with_options": {
"Major": 0,
"Minor": 63,
"Patch": 0,
"PreRelease": "",
"Metadata": ""
},
"crypto.x509.parse_certificate_request": {
"Major": 0,
"Minor": 21,
Expand Down

0 comments on commit bb30b15

Please sign in to comment.