Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 14, 2025

This PR contains the following updates:

Package Change Age Confidence
io.rest-assured:rest-assured-common (source) 5.5.15.5.7 age confidence
io.rest-assured:json-path (source) 5.5.15.5.7 age confidence
io.rest-assured:rest-assured (source) 5.5.15.5.7 age confidence

Release Notes

rest-assured/rest-assured (io.rest-assured:rest-assured-common)

v5.5.7

  • Spring7 MockMvc module now supports Spring Framework 7.0 (thanks to Marcin Grzejszczak for PR)

v5.5.6

  • Remove deprecated constructors in multipart handling (#​1827) (thanks to Tobias Unger for PR)
  • Fix NPE in RequestSpecificationImpl #​1830 (thanks to Boyarshinov Alexander for PR)
  • Bump commons-lang3 from 3.16.0 to 3.18.0 (thanks to Ash Skelton for PR)

v5.5.5

  • The rest-assured-bom project is back and works

v5.5.4

  • The rest-assured-bom project is back

v5.5.3

  • Greatly improved csrf support. When applying csrf, it'll automatically forward the cookies to returns from the GET request to the csrf token and apply it to the actual request. These cookies will also be applied to the CookieFilter automatically (if configured) and SessionFilter (if configured). For example:
    given().
    csrf("/login").
    formParam("name", "My New Name").
    when().
    post("/users/123").
    then().
    statusCode(200);

    Now the cookies returned from the GET request to login will be automatically applied to the POST to "/users/123".

    If you have a CookieFilter defined for multiple requests, the cookies returned by GET to /login will be automatically stored in the CookieFilter and used in the second request.

      var cookieFilter = new CookieFilter()
      given().filter(cookieFilter).csrf("/login").formParam("name", "My New Name").when().post("/users/123").then().statusCode(200);
      given().filter(cookieFilter).when().get("/users/123").then().statusCode(200);
    

    You can disable this behavior by setting automaticallyApplyCookies to false the csrf config:
    given().
    config(config().csrfConfig(csrfConfig().automaticallyApplyCookies(false))).
    csrf("/login").
    when().
    ...

v5.5.2

  • CookieFilter now supports setting cookies correctly when Apache HTTP Client does internal redirects (when redirects().follow(true) is set).
  • Upgrading kotlin module to use Kotlin 2.2.1
  • Downgrading scale module to version 3.3.3 (LTS version) (thanks for Carlos Eduardo for PR)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update restAssuredVersion to v5.5.2 Update restAssuredVersion May 22, 2025
@renovate renovate bot force-pushed the renovate/restassuredversion branch from b51f574 to fd66989 Compare May 22, 2025 13:11
@renovate renovate bot changed the title Update restAssuredVersion Update restAssuredVersion to v5.5.5 May 22, 2025
@renovate renovate bot force-pushed the renovate/restassuredversion branch from fd66989 to d4302a8 Compare May 22, 2025 20:20
@renovate renovate bot force-pushed the renovate/restassuredversion branch from d4302a8 to 25d4ca1 Compare August 15, 2025 12:50
@renovate renovate bot changed the title Update restAssuredVersion to v5.5.5 Update restAssuredVersion to v5.5.6 Aug 15, 2025
@renovate renovate bot force-pushed the renovate/restassuredversion branch from 25d4ca1 to 0143014 Compare January 16, 2026 10:46
@renovate renovate bot changed the title Update restAssuredVersion to v5.5.6 Update restAssuredVersion to v5.5.7 Jan 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant