Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/anakrish/regorus/compare/regorus-v0.5.0...regorus-v0.6.0) - 2025-11-17

### Added

- Detect incorrect multi-threaded use from c based ffi ([#499](https://github.com/anakrish/regorus/pull/499))
- Add Azure RBAC condition parser ([#496](https://github.com/anakrish/regorus/pull/496))
- [**breaking**] add Rego Virtual Machine (RVM) implementation ([#495](https://github.com/anakrish/regorus/pull/495))
- Optimize C# binding interop ([#488](https://github.com/anakrish/regorus/pull/488))
- [**breaking**] Introduce structured destructuring plans for bindings ([#485](https://github.com/anakrish/regorus/pull/485))
- *(hoist)* pre-compute loop hoisting metadata at compilation time ([#483](https://github.com/anakrish/regorus/pull/483))
- Implement `net.cidr_contains` builtin ([#471](https://github.com/anakrish/regorus/pull/471))
- Implement efficient node lookup table using node indices ([#463](https://github.com/anakrish/regorus/pull/463))
- modernize GitHub Actions with security hardening and centralized Rust toolchain ([#470](https://github.com/anakrish/regorus/pull/470))
- feat! Mimalloc as the default allocator ([#434](https://github.com/anakrish/regorus/pull/434))

### Fixed

- CodeQL reported printf format specifier issues ([#480](https://github.com/anakrish/regorus/pull/480))

### Other

- Add xtask automation for binding version management ([#491](https://github.com/anakrish/regorus/pull/491))
- *(deps)* bump clap from 4.5.45 to 4.5.49 ([#487](https://github.com/anakrish/regorus/pull/487))
- Bump the version of the C# bindings ([#482](https://github.com/anakrish/regorus/pull/482))
- Add CodeQl workflow ([#478](https://github.com/anakrish/regorus/pull/478))
- Set input in with_document too when reuse engine ([#474](https://github.com/anakrish/regorus/pull/474))

## [0.5.0](https://github.com/microsoft/regorus/compare/regorus-v0.4.0...regorus-v0.5.0) - 2025-07-08

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
[package]
name = "regorus"
description = "A fast, lightweight Rego (OPA policy language) interpreter"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/microsoft/regorus"
Expand Down
11 changes: 0 additions & 11 deletions bindings/ruby/bin/console

This file was deleted.

8 changes: 0 additions & 8 deletions bindings/ruby/bin/setup

This file was deleted.

5 changes: 4 additions & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ git_tag_enable = true
git_release_enable = true
changelog_update = true
publish = true
command = "cargo xtask bindings --base-ref origin/main"

# Ensure bindings are up-to-date before running release-plz.
# Run: cargo xtask bindings --base-ref origin/main

2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Project automation helpers for the regorus workspace"

Expand Down
Loading