Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2025

Bumps httpcore.version from 5.3.4 to 5.3.6.
Updates org.apache.httpcomponents.core5:httpcore5 from 5.3.4 to 5.3.6

Changelog

Sourced from org.apache.httpcomponents.core5:httpcore5's changelog.

Release 5.3.6

This maintenance release fixes a regression introduced by the previous release that can cause a temporary I/O spin during HTTP/2 connection shutdown in case the opposite endpoint fails to send a GOAWAY frame, and also fixes several bugs related to abnormal termination of HTTP/2 connections found since the last release.

Change Log

  • Bug fix: #disconnected method of protocol handlers is to be called only once the underlying I/O session has been fully closed out. Contributed by Oleg Kalnichevski

  • Bug fix: Fixed a race between async I/O session termination and command submission. Contributed by Oleg Kalnichevski

  • Bug fix: Async I/O sessions to explicitly close the I/O channel for output in GRACEFUL close mode. Contributed by Oleg Kalnichevski

  • Bug fix: Classic HTTP server to keep RequestListener thread running when an exception occurs during initialization of the incoming connection. Contributed by Christian de Waal

  • Regression: Improved HTTP/2 connection termination in case of the opposite endpoint failing to send a GOAWAY frame (correction). Contributed by Oleg Kalnichevski

Release 5.3.5

This maintenance release fixes several corner cases in the H2 protocol handler that could have been potentially exploited to make H2 endpoints allocate extra resources and lead to Denial-of-Service conditions. This release also improves handling of H2 stream abnormal termination.

Change Log

  • Improved H2 connection termination in case of the opposite endpoint failing to send GOAWAY frame. Contributed by Oleg Kalnichevski

  • Bug fix: Corrected abnormal termination of H2 streams Contributed by Oleg Kalnichevski

... (truncated)

Commits
  • 1c15f3c HttpCore 5.3.6 release
  • ff96eca Updated release notes for HttpCore 3.5.6 release
  • 5de2967 Bug fix: #disconnected method of protocol handlers is to be called only once ...
  • ac42dec Bug fix: race between async i/o session termination and command submission
  • 553b894 Bug fix: async i/o session to explicitly close the channel for output in GRAC...
  • b296ae9 keep RequestListener thread running when an exception occurs during connectio...
  • 9e93795 Regression: Improved H2 connection termination in case of the opposite endpoi...
  • 29010ea Upgraded HttpCore version to 5.3.6-SNAPSHOT
  • cf1dde9 Updated release notes for HttpCore 5.3.5 release
  • 70a79cd Improved H2 connection termination in case of the opposite endpoint failing t...
  • Additional commits viewable in compare view

Updates org.apache.httpcomponents.core5:httpcore5-h2 from 5.3.4 to 5.3.6

Changelog

Sourced from org.apache.httpcomponents.core5:httpcore5-h2's changelog.

Release 5.3.6

This maintenance release fixes a regression introduced by the previous release that can cause a temporary I/O spin during HTTP/2 connection shutdown in case the opposite endpoint fails to send a GOAWAY frame, and also fixes several bugs related to abnormal termination of HTTP/2 connections found since the last release.

Change Log

  • Bug fix: #disconnected method of protocol handlers is to be called only once the underlying I/O session has been fully closed out. Contributed by Oleg Kalnichevski

  • Bug fix: Fixed a race between async I/O session termination and command submission. Contributed by Oleg Kalnichevski

  • Bug fix: Async I/O sessions to explicitly close the I/O channel for output in GRACEFUL close mode. Contributed by Oleg Kalnichevski

  • Bug fix: Classic HTTP server to keep RequestListener thread running when an exception occurs during initialization of the incoming connection. Contributed by Christian de Waal

  • Regression: Improved HTTP/2 connection termination in case of the opposite endpoint failing to send a GOAWAY frame (correction). Contributed by Oleg Kalnichevski

Release 5.3.5

This maintenance release fixes several corner cases in the H2 protocol handler that could have been potentially exploited to make H2 endpoints allocate extra resources and lead to Denial-of-Service conditions. This release also improves handling of H2 stream abnormal termination.

Change Log

  • Improved H2 connection termination in case of the opposite endpoint failing to send GOAWAY frame. Contributed by Oleg Kalnichevski

  • Bug fix: Corrected abnormal termination of H2 streams Contributed by Oleg Kalnichevski

... (truncated)

Commits
  • 1c15f3c HttpCore 5.3.6 release
  • ff96eca Updated release notes for HttpCore 3.5.6 release
  • 5de2967 Bug fix: #disconnected method of protocol handlers is to be called only once ...
  • ac42dec Bug fix: race between async i/o session termination and command submission
  • 553b894 Bug fix: async i/o session to explicitly close the channel for output in GRAC...
  • b296ae9 keep RequestListener thread running when an exception occurs during connectio...
  • 9e93795 Regression: Improved H2 connection termination in case of the opposite endpoi...
  • 29010ea Upgraded HttpCore version to 5.3.6-SNAPSHOT
  • cf1dde9 Updated release notes for HttpCore 5.3.5 release
  • 70a79cd Improved H2 connection termination in case of the opposite endpoint failing t...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 25, 2025
@cortlepp
Copy link
Member

@robertlazarski if you have the time, can you maybe take a quick look at the HeadersHandlerTests.testHeadersHandler? It has been flaky for a while (I created an issue at some point) but it never bothered me enough to spend too much time with it. But now that we test 3 Java versions in CI the issue of course surfaces even more often (for example in this run, the problems occur on all Java versions). I had a look at the test but I don't understand enough about the test context to really debug it (and I was not able to reproduce the issue locally yet). If you have any idea what the underlying issue might be, how we could better isolate this test or make it more resilient, I would appreciate any help.

@robertlazarski
Copy link
Contributor

I gave this issue a shot and made a commit. If you see this error again, let me know.

@cortlepp
Copy link
Member

Nice, thanks! I'll see how it goes.

@cortlepp
Copy link
Member

@dependabot rebase

Bumps `httpcore.version` from 5.3.4 to 5.3.6.

Updates `org.apache.httpcomponents.core5:httpcore5` from 5.3.4 to 5.3.6
- [Changelog](https://github.com/apache/httpcomponents-core/blob/rel/v5.3.6/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-core@rel/v5.3.4...rel/v5.3.6)

Updates `org.apache.httpcomponents.core5:httpcore5-h2` from 5.3.4 to 5.3.6
- [Changelog](https://github.com/apache/httpcomponents-core/blob/rel/v5.3.6/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-core@rel/v5.3.4...rel/v5.3.6)

---
updated-dependencies:
- dependency-name: org.apache.httpcomponents.core5:httpcore5
  dependency-version: 5.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.apache.httpcomponents.core5:httpcore5-h2
  dependency-version: 5.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/httpcore.version-5.3.6 branch from c76c63e to 80078c2 Compare November 28, 2025 08:21
@cortlepp cortlepp merged commit 07c4815 into master Nov 28, 2025
5 checks passed
@dependabot dependabot bot deleted the dependabot/maven/httpcore.version-5.3.6 branch November 28, 2025 10:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants