Open
Conversation
Motivation: Debian 7 went EOL in May 2018. This shipped with OpenSSL 1.1.1 which went EOL on 11th September 2023. Modification: Update the debian docker image to version 12 and minor cleanups of the docker files. Result: The dynamically linked `netty-tcnative-linux-x86_64` artifact now links with supported libraries.
Contributor
Author
> ldd libnetty_tcnative_linux_x86_64.so
linux-vdso.so.1 (0x00007fffe54ef000)
libssl.so.3 => /lib/x86_64-linux-gnu/libssl.so.3 (0x000073b8784ca000)
libcrypto.so.3 => /lib/x86_64-linux-gnu/libcrypto.so.3 (0x000073b877e00000)
libapr-1.so.0 => /lib/x86_64-linux-gnu/libapr-1.so.0 (0x000073b87848e000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x000073b877a00000)
libuuid.so.1 => /lib/x86_64-linux-gnu/libuuid.so.1 (0x000073b878484000)
/lib64/ld-linux-x86-64.so.2 (0x000073b8785a5000) |
|
If this move (breaking change) was accepted, the plain crazy build chain we at Gatling created for brotli4j to retain compatibility with Debian 7 could also be way simplified. |
Contributor
Author
|
@normanmaurer I think this could be considered a breaking change, so I'm not sure whether you want this or not. But since everything is EOL maybe it's okay. We needed this so I'm just sharing what I have. I also have a RHEL9 compatible one(built on almalinux since CentOS is discontinued) if you are interested. That one is a bit more tricky since Red Hat will backport security fixes for OpenSSL 1.x until 2029 for the people with big wallets. |
3d64a79 to
4c63e52
Compare
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.
Motivation:
Debian 7 went EOL in May 2018. This shipped with OpenSSL 1.1.1 which went EOL on 11th September 2023.
Modification:
Update the debian docker image to version 12 and minor cleanups of the docker files.
Result:
The dynamically linked
netty-tcnative-linux-x86_64artifact now links with supported libraries.