Skip to content

Upgraded OpenSSL to 3.5.2 #21906

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/base_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ parameters:
default: ""
build-docker-image:
type: string
default: "arangodb/ubuntubuildarangodb-devel:15"
default: "arangodb/ubuntubuildarangodb-devel:16"
test-docker-image:
type: string
default: public.ecr.aws/b0b8h2r4/test-ubuntu:24.04-5b5ffda4
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ parameters:
default: false
build-docker-image:
type: string
default: "arangodb/ubuntubuildarangodb-devel:15"
default: "arangodb/ubuntubuildarangodb-devel:16"
test-docker-image:
type: string
default: public.ecr.aws/b0b8h2r4/test-ubuntu:24.04-e6d3371f
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
devel
-----

* Upgraded OpenSSL to 3.5.2

* Fix error message to use proper terminology order instead of mode.

* FE-636: bump jest from 27.5.1 to 30.0.5 (latest version) (form-data package is no longer included)
Expand Down
2 changes: 1 addition & 1 deletion VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CXX_STANDARD "20"
STARTER_REV "v0.19.12"
GCC_LINUX "13.2.0"
CLANG_LINUX "19.1.7"
OPENSSL_LINUX "3.5.0"
OPENSSL_LINUX "3.5.2"
USE_RCLONE "true"
RCLONE_GO "1.23.10-3ca85f7"
RCLONE_VERSION "1.65.2"
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/build/linux/Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ COPY --from=openmp /opt/omp /opt/omp

COPY ./tools/* /tools/

RUN [ "/tools/install.sh", "3.5", "0" ]
RUN [ "/tools/install.sh", "3.5", "2" ]

COPY ./scripts /scripts

Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/build/linux/Dockerfile.x86-64
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ COPY --from=openmp /opt/omp /opt/omp

COPY ./tools/* /tools/

RUN [ "/tools/install.sh", "3.5", "0" ]
RUN [ "/tools/install.sh", "3.5", "2" ]

COPY ./scripts /scripts

Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/build/linux/tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ cd /tmp
rm -rf openssl-$OPENSSLVERSION.tar.gz openssl-$OPENSSLVERSION

# Compile openldap library:
export OPENLDAPVERSION=2.6.9
export OPENLDAPVERSION=2.6.10
cd /tmp
curl -O ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-$OPENLDAPVERSION.tgz
tar xzf openldap-$OPENLDAPVERSION.tgz
Expand Down