Skip to content

Commit ac6cee9

Browse files
committed
Merge branch 'main' into feature/deserializeguard
2 parents a138eae + 3898118 commit ac6cee9

File tree

16 files changed

+343
-188
lines changed

16 files changed

+343
-188
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
CARGO_TERM_COLOR: always
2626
CARGO_INCREMENTAL: '0'
2727
CARGO_PROFILE_DEV_DEBUG: '0'
28-
RUST_TOOLCHAIN_VERSION: "1.80.1"
28+
RUST_TOOLCHAIN_VERSION: "1.81.0"
2929
RUSTFLAGS: "-D warnings"
3030
RUSTDOCFLAGS: "-D warnings"
3131
RUST_LOG: "info"

.github/workflows/pr_pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
CARGO_TERM_COLOR: always
9-
RUST_TOOLCHAIN_VERSION: "1.80.1"
9+
RUST_TOOLCHAIN_VERSION: "1.81.0"
1010
HADOLINT_VERSION: "v2.12.0"
1111
PYTHON_VERSION: "3.12"
1212

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default_language_version:
66

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: 2c9f875913ee60ca25ce70243dc24d5b6415598c # 4.6.0
9+
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # 5.0.0
1010
hooks:
1111
- id: trailing-whitespace
1212
- id: end-of-file-fixer
@@ -28,7 +28,7 @@ repos:
2828
- id: yamllint
2929

3030
- repo: https://github.com/igorshubovych/markdownlint-cli
31-
rev: f295829140d25717bc79368d3f966fc1f67a824f # 0.41.0
31+
rev: aa975a18c9a869648007d33864034dbc7481fe5e # 0.42.0
3232
hooks:
3333
- id: markdownlint
3434
types: [text]
@@ -44,15 +44,15 @@ repos:
4444
# If you do not, you will need to delete the cached ruff binary shown in the
4545
# error message
4646
- repo: https://github.com/astral-sh/ruff-pre-commit
47-
rev: f1ebc5730d98440041cc43e4d69829ad598ae1e7 # 0.6.3
47+
rev: 8983acb92ee4b01924893632cf90af926fa608f0 # 0.7.0
4848
hooks:
4949
# Run the linter.
5050
- id: ruff
5151
# Run the formatter.
5252
- id: ruff-format
5353

5454
- repo: https://github.com/rhysd/actionlint
55-
rev: 62dc61a45fc95efe8c800af7a557ab0b9165d63b # 1.7.1
55+
rev: 4e683ab8014a63fafa117492a0c6053758e6d593 # 1.7.3
5656
hooks:
5757
- id: actionlint
5858

CHANGELOG.md

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

55
## [Unreleased]
66

7+
### Added
8+
9+
- The operator can now run on Kubernetes clusters using a non-default cluster domain.
10+
Use the env var `KUBERNETES_CLUSTER_DOMAIN` or the operator Helm chart property `kubernetesClusterDomain` to set a non-default cluster domain ([#591]).
11+
712
### Changed
813

914
- Reduce CRD size from `1.4MB` to `136KB` by accepting arbitrary YAML input instead of the underlying schema for the following fields ([#574]):
@@ -15,6 +20,7 @@ All notable changes to this project will be documented in this file.
1520
- An invalid `HdfsCluster` doesn't cause the operator to stop functioning (#[594]).
1621

1722
[#574]: https://github.com/stackabletech/hdfs-operator/pull/574
23+
[#591]: https://github.com/stackabletech/hdfs-operator/pull/591
1824

1925
## [24.7.0] - 2024-07-24
2026

0 commit comments

Comments
 (0)