Skip to content

Commit bb30b15

Browse files
authored
Prepare v0.63.0 release (#6656)
Signed-off-by: Johan Fylling <[email protected]>
1 parent b705d5b commit bb30b15

File tree

5 files changed

+5019
-8
lines changed

5 files changed

+5019
-8
lines changed

CHANGELOG.md

+32-6
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,42 @@
33
All notable changes to this project will be documented in this file. This
44
project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## Unreleased
6+
## 0.63.0
77

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

10-
Previously, `opa exec` could end up in situations [where it might hang forever](https://github.com/open-policy-agent/opa/issues/6613).
11-
This can be very undesirable behavior in build pipelines and CI systems!
10+
### Runtime, Tooling, SDK
11+
12+
- 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
13+
- 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
14+
- topdown: Fixing overactive Early Exit suppression ([#6566](https://github.com/open-policy-agent/opa/issues/6566)) authored by @johanfylling reported by @ashwinhb
15+
- plugins/rest: Add support to get temp creds via AssumeRole ([#6634](https://github.com/open-policy-agent/opa/pull/6634)) authored by @ashutosh-narkar
16+
17+
### Topdown and Rego
18+
19+
- 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
20+
- format: Preserve brackets around set union operation ([#6588](https://github.com/open-policy-agent/opa/issues/6588)) authored by @ashutosh-narkar reported by @HarshPathakhp
21+
- 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
1222

13-
`opa exec` now supports a timeout flag, identically to how `opa eval` does. Example:
23+
### Docs + Website + Ecosystem
24+
25+
- 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
26+
- docs: Mention homebrew install option ([#6622](https://github.com/open-policy-agent/opa/issues/6622)) authored by @anderseknert
27+
- docs: Add Rego v1 keywords to list of reserved names ([#6649](https://github.com/open-policy-agent/opa/pull/6649)) authored by @anderseknert
28+
- 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
29+
- 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
30+
- docs: Adding integration for Backstage ([#6629](https://github.com/open-policy-agent/opa/pull/6629)) authored by @Parsifal-M
31+
- docs: Clear up some uses of future keywords ([#6653](https://github.com/open-policy-agent/opa/pull/6653)) authored by @charlieegan3
32+
- docs: Update delta bundle patch doc for remove op ([#6645](https://github.com/open-policy-agent/opa/pull/6645)) authored by @0marq
33+
- docs: Fix typo in `Debugging OPA` ([#6637](https://github.com/open-policy-agent/opa/pull/6637)) authored by @setchy
1434

15-
opa exec --decision /test/p --timeout 10s /dev/null
35+
### Miscellaneous
36+
37+
- chore: Remove repetitive words ([#6644](https://github.com/open-policy-agent/opa/pull/6644)) authored by @occupyhabit
38+
- Dependency updates; notably:
39+
- build(deps): bump github.com/containerd/containerd from 1.7.13 to 1.7.14
40+
- build(deps): bump github.com/golang/protobuf from 1.5.3 to 1.5.4
41+
- build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1
1642

1743
## 0.62.1
1844

ast/version_index.json

+7
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,13 @@
280280
"PreRelease": "",
281281
"Metadata": ""
282282
},
283+
"crypto.x509.parse_and_verify_certificates_with_options": {
284+
"Major": 0,
285+
"Minor": 63,
286+
"Patch": 0,
287+
"PreRelease": "",
288+
"Metadata": ""
289+
},
283290
"crypto.x509.parse_certificate_request": {
284291
"Major": 0,
285292
"Minor": 21,

0 commit comments

Comments
 (0)