-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Update elastic-agent-libs to v0.18.0 #42202
Update elastic-agent-libs to v0.18.0 #42202
Conversation
This pull request doesn't have a |
@mauri870 agentbeat tests are failing with the error below, do you know what can cause this?
|
Co-authored-by: Julien Lind <[email protected]> (cherry picked from commit ef29005) # Conflicts: # go.mod # go.sum
@michel-laterman Have you made documentation changes related to this change? I assume the SSL docs need updates for both the |
Thanks @andrewkroh, I've made #42267 to update the beats docs and elastic/ingest-docs#1609 for agent/fleet-server. I'm not aware of any cipher_suites that are disabled with the newer revisions of TLS. |
* Update elastic-agent-libs to v0.18.0 (#42202) Co-authored-by: Julien Lind <[email protected]> (cherry picked from commit ef29005) # Conflicts: # go.mod # go.sum * Fix backport --------- Co-authored-by: Michel Laterman <[email protected]> Co-authored-by: michel-laterman <[email protected]> Co-authored-by: Julien Lind <[email protected]>
That's probably true. It's not until TLS 1.3 that the weak cipher suites were dropped. With TLS 1.2 still being supported, there's likely none to remove at this time. |
Proposed commit message
Update elastic-agent-libs to v.0.18.0
Checklist
My code follows the style guidelines of this projectI have commented my code, particularly in hard-to-understand areasI have made corresponding changes to the documentationI have made corresponding change to the default configuration filesI have added tests that prove my fix is effective or that my feature worksI have added an entry inCHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.Disruptive User Impact
elastic-agent-libs v0.18.0 updates the min accepted TLS version to 1.1, and sets the default min to 1.2.
Related Issues