Skip to content

Commit a12c05d

Browse files
committed
main merge
2 parents 4b23391 + 604c377 commit a12c05d

File tree

20 files changed

+64
-41
lines changed

20 files changed

+64
-41
lines changed

.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.82.0"
9+
RUST_TOOLCHAIN_VERSION: "nightly-2025-01-15"
1010
HADOLINT_VERSION: "v2.12.0"
1111
PYTHON_VERSION: "3.12"
1212

.pre-commit-config.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ repos:
1717
- repo: https://github.com/doublify/pre-commit-rust
1818
rev: eeee35a89e69d5772bdee97db1a6a898467b686e # 1.0
1919
hooks:
20-
- id: fmt
21-
args: ["--all", "--", "--check"]
2220
- id: clippy
2321
args: ["--all-targets", "--", "-D", "warnings"]
2422

@@ -76,3 +74,10 @@ repos:
7674
entry: cargo test
7775
stages: [pre-commit, pre-merge-commit, manual]
7876
pass_filenames: false
77+
78+
- id: cargo-rustfmt
79+
name: cargo-rustfmt
80+
language: system
81+
entry: cargo +nightly-2025-01-15 fmt --all -- --check
82+
stages: [pre-commit]
83+
pass_filenames: false

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,18 @@
77
- Run a `containerdebug` process in the background of each Superset container to collect debugging information ([#578]).
88
- Aggregate emitted Kubernetes events on the CustomResources ([#585]).
99
- Support OPA role mapping as optional custom security manager for Superset ([#582]).
10+
- Support for version `4.1.1` ([#595]).
1011

1112
### Changed
1213

1314
- Default to OCI for image metadata and product image selection ([#586]).
1415

16+
[#578]: https://github.com/stackabletech/superset-operator/pull/578
17+
[#582]: https://github.com/stackabletech/superset-operator/pull/582
18+
[#585]: https://github.com/stackabletech/superset-operator/pull/585
19+
[#586]: https://github.com/stackabletech/superset-operator/pull/586
20+
[#595]: https://github.com/stackabletech/superset-operator/pull/595
21+
1522
## [24.11.1] - 2025-01-10
1623

1724
### Fixed
@@ -23,10 +30,6 @@
2330

2431
[#568]: https://github.com/stackabletech/superset-operator/pull/568
2532
[#569]: https://github.com/stackabletech/superset-operator/pull/569
26-
[#578]: https://github.com/stackabletech/superset-operator/pull/578
27-
[#582]: https://github.com/stackabletech/superset-operator/pull/582
28-
[#585]: https://github.com/stackabletech/superset-operator/pull/585
29-
[#586]: https://github.com/stackabletech/superset-operator/pull/586
3033

3134
## [24.11.0] - 2024-11-18
3235

deploy/helm/superset-operator/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ spec:
1616
metadata:
1717
annotations:
1818
internal.stackable.tech/image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
19-
{{- with .Values.podAnnotations }}
2019
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
20+
{{- with .Values.podAnnotations }}
2121
{{- toYaml . | nindent 8 }}
2222
{{- end }}
2323
labels:

docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
name: config
1414
containers:
1515
- name: superset
16-
image: oci.stackable.tech/sdp/superset:4.0.2-stackable0.0.0-dev
16+
image: oci.stackable.tech/sdp/superset:4.1.1-stackable0.0.0-dev
1717
command: [
1818
"/bin/sh",
1919
"-c",

docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
name: config
1414
containers:
1515
- name: superset
16-
image: oci.stackable.tech/sdp/superset:4.0.2-stackable{{ versions.superset }}
16+
image: oci.stackable.tech/sdp/superset:4.1.1-stackable{{ versions.superset }}
1717
command: [
1818
"/bin/sh",
1919
"-c",

docs/modules/superset/examples/getting_started/superset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-superset
66
spec:
77
image:
8-
productVersion: 4.0.2
8+
productVersion: 4.1.1
99
clusterConfig:
1010
credentialsSecret: simple-superset-credentials
1111
listenerClass: external-unstable

docs/modules/superset/pages/usage-guide/security.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ metadata:
3434
name: superset-with-ldap-server
3535
spec:
3636
image:
37-
productVersion: 4.0.2
37+
productVersion: 4.1.1
3838
clusterConfig:
3939
authentication:
4040
- authenticationClass: ldap # <1>
@@ -64,7 +64,7 @@ metadata:
6464
name: superset-with-oidc
6565
spec:
6666
image:
67-
productVersion: 4.0.2
67+
productVersion: 4.1.1
6868
clusterConfig:
6969
authentication:
7070
- authenticationClass: keycloak # <1>
@@ -229,7 +229,7 @@ metadata:
229229
name: superset-with-oidc
230230
spec:
231231
image:
232-
productVersion: 4.0.2
232+
productVersion: 4.1.1
233233
clusterConfig:
234234
authentication:
235235
- authenticationClass: keycloak

docs/modules/superset/partials/supported-versions.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
// Stackable Platform documentation.
44

55
- 4.0.2 (LTS)
6+
- 4.1.1

examples/superset-with-ldap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ metadata:
149149
name: superset-with-ldap-server-veri-tls
150150
spec:
151151
image:
152-
productVersion: 4.0.2
152+
productVersion: 4.1.1
153153
clusterConfig:
154154
authentication:
155155
- authenticationClass: superset-with-ldap-server-veri-tls-ldap

0 commit comments

Comments
 (0)