Skip to content

Commit 3801cf3

Browse files
authored
Merge branch 'main' into template_7dffd3c
2 parents b99522a + cc6c2e9 commit 3801cf3

26 files changed

Lines changed: 6341 additions & 2416 deletions

File tree

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ on:
2323

2424
env:
2525
OPERATOR_NAME: "opa-operator"
26-
RUST_NIGHTLY_TOOLCHAIN_VERSION: "nightly-2025-10-23"
27-
NIX_PKG_MANAGER_VERSION: "2.30.0"
28-
RUST_TOOLCHAIN_VERSION: "1.89.0"
26+
RUST_NIGHTLY_TOOLCHAIN_VERSION: "nightly-2026-02-24"
27+
NIX_PKG_MANAGER_VERSION: "2.33.3"
28+
RUST_TOOLCHAIN_VERSION: "1.93.0"
2929
HADOLINT_VERSION: "v2.14.0"
3030
PYTHON_VERSION: "3.14"
3131
CARGO_TERM_COLOR: always
@@ -139,7 +139,7 @@ jobs:
139139
set -euo pipefail
140140
[ -n "$GITHUB_DEBUG" ] && set -x
141141
142-
CURRENT_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].version')
142+
CURRENT_VERSION=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[] | select(.name == "stackable-opa-operator") | .version')
143143
144144
if [ "$GITHUB_EVENT_NAME" == 'pull_request' ]; then
145145
# Include a PR suffix if this workflow is triggered by a PR

.github/workflows/pr_pre-commit.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77

88
env:
99
CARGO_TERM_COLOR: always
10-
NIX_PKG_MANAGER_VERSION: "2.30.0"
11-
RUST_TOOLCHAIN_VERSION: "nightly-2025-10-23"
10+
NIX_PKG_MANAGER_VERSION: "2.33.3"
11+
RUST_TOOLCHAIN_VERSION: "nightly-2026-02-24"
1212
HADOLINT_VERSION: "v2.14.0"
1313
PYTHON_VERSION: "3.14"
14-
JINJA2_CLI_VERSION: "0.8.2"
14+
JINJA2_CLI_VERSION: "1.0.0"
1515

1616
jobs:
1717
pre-commit:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ repos:
8989
- id: cargo-doc
9090
name: cargo-doc
9191
language: system
92-
entry: cargo doc --document-private-items
92+
entry: cargo doc --no-deps --document-private-items
9393
stages: [pre-commit, pre-merge-commit]
9494
pass_filenames: false
9595
files: \.rs$|Cargo\.(toml|lock)
@@ -105,7 +105,7 @@ repos:
105105
- id: cargo-rustfmt
106106
name: cargo-rustfmt
107107
language: system
108-
entry: cargo +nightly-2025-10-23 fmt --all -- --check
108+
entry: cargo +nightly-2026-02-24 fmt --all -- --check
109109
stages: [pre-commit, pre-merge-commit]
110110
pass_filenames: false
111111
files: \.rs$

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"rust-analyzer.rustfmt.overrideCommand": [
33
"rustfmt",
4-
"+nightly-2025-10-23",
4+
"+nightly-2026-02-24",
55
"--edition",
66
"2024",
77
"--"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [26.3.0] - 2026-03-16
8+
9+
## [26.3.0-rc1] - 2026-03-16
10+
711
### Added
812

913
- Add support for OPA 1.12.3 ([#797], [#805]).
@@ -15,6 +19,7 @@ All notable changes to this project will be documented in this file.
1519

1620
### Changed
1721

22+
- Bump stackable-operator to 0.108.0 and strum to 0.28 ([#810], [#812]).
1823
- Gracefully shutdown all concurrent tasks by forwarding the SIGTERM signal ([#804]).
1924
- Introduce `v1alpha2` OpaCluster and mark UIF Entra backend as non-experimental ([#801]).
2025
- Deprecate OPA 1.8.0 ([#797]).
@@ -23,6 +28,7 @@ All notable changes to this project will be documented in this file.
2328
### Fixed
2429

2530
- Prevent unnecessary warning messages in the OPA logs caused by setting a service for the Prometheus status ([#799]).
31+
- Fix "404 page not found" error for the initial object list ([#812]).
2632

2733
### Removed
2834

@@ -38,6 +44,8 @@ All notable changes to this project will be documented in this file.
3844
[#803]: https://github.com/stackabletech/opa-operator/pull/803
3945
[#804]: https://github.com/stackabletech/opa-operator/pull/804
4046
[#805]: https://github.com/stackabletech/opa-operator/pull/805
47+
[#810]: https://github.com/stackabletech/opa-operator/pull/810
48+
[#812]: https://github.com/stackabletech/opa-operator/pull/812
4149

4250
## [25.11.0] - 2025-11-07
4351

0 commit comments

Comments
 (0)