Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vert-x3/vertx-web
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.5.24
Choose a base ref
...
head repository: vert-x3/vertx-web
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.5.25
Choose a head ref
  • 8 commits
  • 30 files changed
  • 3 contributors

Commits on Jan 15, 2026

  1. Set next snapshot version

    vietj committed Jan 15, 2026
    Configuration menu
    Copy the full SHA
    54649c7 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2026

  1. Fix request absolute URI handling (#2833) (#2842)

    * Fix request absolute URI handling
    
    When a request uses an absolute request target with scheme and host
    parts, the current absoluteURI() method simply concatenates the Host
    header value and the request target URI. For example, with the following
    request:
    
    ```
    GET http://www.example.com:1234/path HTTP/1.1
    Host: www.example.com:1234
    ```
    
    The result of HttpServerRequest.absoluteURI() would then be:
    
    `http://www.example.com:1234www.example.com:1234/path`
    
    With this change, when the request target is absolute, only the path
    (and query) are added to the Host value:
    
    `http://www.example.com:1234/path`
    
    Fixes #2830
    
    * Update vertx-web/src/main/java/io/vertx/ext/web/impl/ForwardedParser.java
    
    ---------
    
    Co-authored-by: Thierry Monney <[email protected]>
    tsegismont and tmonney authored Jan 23, 2026
    Configuration menu
    Copy the full SHA
    5ec7457 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2026

  1. OpenAPIHolderImpl.resolveExternalRef throws java.lang.IllegalStateExc…

    …eption
    
    See #2844
    
    To prevent from a recursive update of the same key in the externalSolvingRefs, avoid computeIfAbsent and continue walking the references path only when an uncompleted future has effectively been put in the map.
    
    Signed-off-by: Thomas Segismont <[email protected]>
    tsegismont committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    34d4481 View commit details
    Browse the repository at this point in the history
  2. Revert "OpenAPIHolderImpl.resolveExternalRef throws java.lang.Illegal…

    …StateException"
    
    This reverts commit 34d4481.
    tsegismont committed Jan 28, 2026
    Configuration menu
    Copy the full SHA
    992c4e3 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2026

  1. OpenAPIHolderImpl.resolveExternalRef throws java.lang.IllegalStateExc…

    …eption (#2845)
    
    See #2844
    
    To prevent from a recursive update of the same key in the externalSolvingRefs, avoid computeIfAbsent and continue walking the references path only when an uncompleted future has effectively been put in the map.
    
    Signed-off-by: Thomas Segismont <[email protected]>
    tsegismont authored Jan 31, 2026
    Configuration menu
    Copy the full SHA
    be71c18 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2026

  1. Update to testcontainers 2.0.3

    vietj committed Feb 13, 2026
    Configuration menu
    Copy the full SHA
    798aea3 View commit details
    Browse the repository at this point in the history
  2. Update to testcontainers 1.21.4

    vietj committed Feb 13, 2026
    Configuration menu
    Copy the full SHA
    c89f11c View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2026

  1. Releasing 4.5.25

    vietj committed Feb 16, 2026
    Configuration menu
    Copy the full SHA
    30d906a View commit details
    Browse the repository at this point in the history
Loading