diff --git a/CHANGELOG.md b/CHANGELOG.md index 15194d0..5ee0592 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [5.2.10] - 2025-10-14 +### Updated +- Updated JNA to version 5.13.0 to support running on aarch64 architecture. + ## [5.2.9] - 2025-09-10 ### Added - Updating all `APIARY_EXTENSIONS` modules to `8.1.11` (was `8.1.7`). Improved glue listener. diff --git a/Dockerfile b/Dockerfile index 826a0de..9a1ca1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ENV APIARY_METASTORE_AUTH_VERSION 8.1.11 ENV KAFKA_VERSION 3.9.0 ENV COMMONS_CODEC_VERSION 1.12 ENV GETHOSTNAME4J_VERSION 0.0.3 -ENV JNA_VERSION 3.0.9 +ENV JNA_VERSION 5.13.0 ENV EXPORTER_VERSION 0.12.0 COPY files/RPM-GPG-KEY-emr /etc/pki/rpm-gpg/RPM-GPG-KEY-emr @@ -47,7 +47,7 @@ wget -q https://search.maven.org/remotecontent?filepath=com/expediagroup/apiary/ wget -q https://search.maven.org/remotecontent?filepath=org/apache/kafka/kafka-clients/${KAFKA_VERSION}/kafka-clients-${KAFKA_VERSION}.jar -O kafka-clients-${KAFKA_VERSION}.jar && \ wget -q https://search.maven.org/remotecontent?filepath=commons-codec/commons-codec/${COMMONS_CODEC_VERSION}/commons-codec-${COMMONS_CODEC_VERSION}.jar -O commons-codec-${COMMONS_CODEC_VERSION}.jar && \ wget -q https://search.maven.org/remotecontent?filepath=com/kstruct/gethostname4j/${GETHOSTNAME4J_VERSION}/gethostname4j-${GETHOSTNAME4J_VERSION}.jar -O gethostname4j-${GETHOSTNAME4J_VERSION}.jar && \ -wget -q https://search.maven.org/remotecontent?filepath=com/sun/jna/jna/${JNA_VERSION}/jna-${JNA_VERSION}.jar -O jna-${JNA_VERSION}.jar && \ +wget -q https://search.maven.org/remotecontent?filepath=net/java/dev/jna/jna/${JNA_VERSION}/jna-${JNA_VERSION}.jar -O jna-${JNA_VERSION}.jar && \ wget -q https://search.maven.org/remotecontent?filepath=io/prometheus/jmx/jmx_prometheus_javaagent/${EXPORTER_VERSION}/jmx_prometheus_javaagent-${EXPORTER_VERSION}.jar -O jmx_prometheus_javaagent-${EXPORTER_VERSION}.jar ENV MAVEN_VERSION 3.9.11