You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,15 @@ All notable changes to this project will be documented in this file.
14
14
image to the HBase image. The script `export-snapshot-to-s3` makes
15
15
exporting easier ([#621]).
16
16
- kafka: Build from source ([#659], [#661]).
17
+
- kafka: Add jmx broker config to builder image ([#703]).
18
+
- nifi: Build from source ([#678]).
17
19
- omid: Include Apache Omid in all workflows such as building and releasing images ([#635]).
18
20
- java-devel: New image to serve as base layer for builder stages ([#665]).
19
21
- hdfs: Exclude YARN and Mapreduce projects from build ([#667]).
20
22
- stackable-base: Mitigate CVE-2023-37920 by removing e-Tugra root certificates ([#673]).
23
+
- hdfs: Exclude unused jars and mitigate snappy-java CVEs by bumping dependency ([#682]).
24
+
- druid: Build from source ([#684], [#696]).
25
+
- opa: Add log processing script to opa for decision logging ([#695], [#704]).
21
26
22
27
### Changed
23
28
@@ -28,6 +33,8 @@ All notable changes to this project will be documented in this file.
28
33
- ubi8-rust-builder: Bump `protoc` from `21.5` to `26.1` ([#624]).
29
34
- pass platform argument to preflight check ([#626]).
30
35
- nifi: provision stackable-bcrypt from Maven ([#663])
36
+
- nifi: move /bin/stackable-bcrypt to /stackable/stackable-bcrypt and added softlink for backwards compatibility ([#678]).
37
+
- nifi: patch nifi-assembly pom file to not zip binaries after the build to save disk space ([#685]).
31
38
- hadoop: use java-devel as base layer for the builder stage ([#665])
32
39
- hive: use java-devel as base layer for the builder stage ([#665])
33
40
- zookeeper: use java-devel as base layer for the builder stage ([#665])
@@ -37,6 +44,7 @@ All notable changes to this project will be documented in this file.
37
44
- opa-bundle-builder: Bump image to 1.1.2 ([#666])
38
45
- opa: Build from source ([#676])
39
46
- trino: Build from source ([#687]).
47
+
- spark: Build from source ([#679])
40
48
41
49
### Fixed
42
50
@@ -47,6 +55,7 @@ All notable changes to this project will be documented in this file.
47
55
- hive: Fix compilation on ARM by back-porting [HIVE-21939](https://issues.apache.org/jira/browse/HIVE-21939) from [this](https://github.com/apache/hive/commit/2baf21bb55fcf33d8522444c78a8d8cab60e7415) commit ([#617]).
48
56
- hive: Fix compilation on ARM in CI as well ([#619]).
49
57
- hive: Fix compilation of x86 in CI due to lower disk usage to prevent disk running full ([#619]).
58
+
- hive: Provide logging dependency previously bundled with the hadoop yarn client ([#688]).
50
59
51
60
### Removed
52
61
@@ -74,9 +83,19 @@ All notable changes to this project will be documented in this file.
Copy file name to clipboardExpand all lines: airflow/Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ RUN microdnf update && \
41
41
python${PYTHON}-devel \
42
42
python${PYTHON}-pip \
43
43
python${PYTHON}-wheel \
44
-
# the unixODBC-devel package is not available for ubi9
44
+
#The airflow odbc provider can compile without the development files (headers and libraries) (see https://github.com/stackabletech/docker-images/pull/683)
# Do not remove the /stackable/apache-druid-${PRODUCT}/quickstart folder, it is needed for loading the Wikipedia
41
+
# testdata in kuttl tests and the getting started guide.
42
+
43
+
# Install the Prometheus emitter extension. This bundle contains the emitter and all jar dependencies.
44
+
RUN curl --fail "https://repo.stackable.tech/repository/packages/druid/druid-prometheus-emitter-${PRODUCT}.tar.gz" | tar -xzC /stackable/apache-druid-${PRODUCT}/extensions && \
45
+
# Install OPA authorizer extension.
46
+
curl --fail "https://repo.stackable.tech/repository/packages/druid/druid-opa-authorizer-${AUTHORIZER}.tar.gz" | tar -xzC /stackable/apache-druid-${PRODUCT}/extensions && \
47
+
# Install jackson-dataformat-xml, stax2-api, and woodstox-core which are required for logging, and remove stax-ex.
0 commit comments