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: c135517
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: f84a993
Choose a head ref
  • 6 commits
  • 26 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
    a8b25b8 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2026

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

    * 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
    a1f79d4 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
    ccb9786 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
    b974709 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2026

  1. Dependency convergence

    vietj committed Feb 16, 2026
    Configuration menu
    Copy the full SHA
    d02d097 View commit details
    Browse the repository at this point in the history
  2. Releasing 5.0.8

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