chore(deps): remove OpenSSL 1.1.1 fallback, require OpenSSL 3.0+#389
Merged
Conversation
Remove cascading OpenSSL version detection (3.x → 1.1.1) from database/CMakeLists.txt PostgreSQL section. Now requires OpenSSL 3.0+ or PostgreSQL support is disabled. OpenSSL 1.1.1 reached EOL September 2023. vcpkg.json already requires version >= 3.0.0 — this aligns CMake detection accordingly. Closes #386
Remove OpenSSL 1.1.1 backward compatibility notes and security warnings from BUILD_GUIDE.md and BUILD_GUIDE.kr.md. OpenSSL 3.0+ is now the only supported version for PostgreSQL SSL connections.
5 tasks
Contributor
Benchmark ResultsNo comparison reports available. Baseline may not be established yet. |
kcenon
added a commit
that referenced
this pull request
Apr 13, 2026
* chore(deps): remove OpenSSL 1.1.1 fallback, require OpenSSL 3.0+ Remove cascading OpenSSL version detection (3.x → 1.1.1) from database/CMakeLists.txt PostgreSQL section. Now requires OpenSSL 3.0+ or PostgreSQL support is disabled. OpenSSL 1.1.1 reached EOL September 2023. vcpkg.json already requires version >= 3.0.0 — this aligns CMake detection accordingly. Closes #386 * docs(deps): update OpenSSL requirement to 3.0+ in build guides Remove OpenSSL 1.1.1 backward compatibility notes and security warnings from BUILD_GUIDE.md and BUILD_GUIDE.kr.md. OpenSSL 3.0+ is now the only supported version for PostgreSQL SSL connections.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #386
Summary
database/CMakeLists.txtPostgreSQL section; now requires OpenSSL 3.0+ or PostgreSQL support is disabledBUILD_GUIDE.mdandBUILD_GUIDE.kr.mdto reflect OpenSSL 3.0+ as required (remove 1.1.1 backward compatibility notes and security warnings)Context
vcpkg.jsonalready requires"version>=": "3.0.0"for OpenSSL — CMake detection was inconsistent by still accepting 1.1.1scripts/dependency.shdoes not exist (mentioned in issue but not present)Changes
database/CMakeLists.txtfind_package(OpenSSL 3.0 QUIET)docs/guides/BUILD_GUIDE.mddocs/guides/BUILD_GUIDE.kr.mdTest Plan