Skip to content

Bump the backend-dev group across 2 directories with 8 updates #83

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 11, 2025

Bumps the backend-dev group with 8 updates in the / directory:

Package From To
io.rest-assured:rest-assured-common 5.3.0 5.5.1
io.rest-assured:rest-assured 5.3.0 5.5.1
io.rest-assured:json-path 5.3.0 5.5.1
io.rest-assured:xml-path 5.3.0 5.5.1
org.awaitility:awaitility 4.0.3 4.3.0
org.apache.commons:commons-email 1.5 1.6.0
com.github.tomakehurst:wiremock 2.26.3 2.27.2
com.icegreen:greenmail-junit5 1.6.1 1.6.15

Bumps the backend-dev group with 8 updates in the /server directory:

Package From To
io.rest-assured:rest-assured-common 5.3.0 5.5.1
io.rest-assured:rest-assured 5.3.0 5.5.1
io.rest-assured:json-path 5.3.0 5.5.1
io.rest-assured:xml-path 5.3.0 5.5.1
org.awaitility:awaitility 4.0.3 4.3.0
org.apache.commons:commons-email 1.5 1.6.0
com.github.tomakehurst:wiremock 2.26.3 2.27.2
com.icegreen:greenmail-junit5 1.6.1 1.6.15

Updates io.rest-assured:rest-assured-common from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:rest-assured-common's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates io.rest-assured:rest-assured from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:rest-assured's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates io.rest-assured:json-path from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:json-path's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates io.rest-assured:xml-path from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:xml-path's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates org.awaitility:awaitility from 4.0.3 to 4.3.0

Changelog

Sourced from org.awaitility:awaitility's changelog.

Changelog 4.3.0 (2025-02-21)

  • Support for kotlin.time.Duration in Kotlin DSL (thanks to Ivo Šmíd for PR)

  • Upgraded kotlin version in the awaitility-kotlin module to 2.1.10

  • Using a more descriptive error message when using VERY long wait conditions or poll durations (issue 290)

  • Added an overloaded method of untilAsserted(..) that takes a supplier and a consumer. For example, lets say you have a class like this: public class MyClass { public String myFunction() { // Imagine stuff being executed in asynchronously here and the result of this // operation is a string called "my value" return "my value" } }

    // Then in your test you can wait for the "myFunction" to be asserted by a "consumer" that uses // assertj to make sure that "myFunction" returns ""my value" await().untilAsserted(myClass::myFunction, value -> Assertions.assertThat(value).isEqualTo("my value"));

    This has also been implemented for all atomic, adder, and accumulator methods.

Changelog 4.2.2 (2024-08-07)

  • Support JDK EA builds in JavaVersionDetector (thanks to Oleg Estekhin for pull request)

Changelog 4.2.1 (2024-03-15)

  • Upgraded Kotlin to 1.9.22

  • Added extension properties forever, then, and, given to the Kotlin extension. This allows you to do e.g.:

    await.forever until { .. }

  • Added shortcut for enabling logging. Before you had to do e.g.

    await() .with() .conditionEvaluationListener(new ConditionEvaluationLogger(log::info)) .pollInterval(ONE_HUNDRED_MILLISECONDS) .until(logs::size, is(4));

    You can now instead use the "logging" shortcut:

    await() .with() .logging(log::info) .pollInterval(ONE_HUNDRED_MILLISECONDS) .until(logs::size, is(4));

    or simply ".logging()" for "System.out".

    This shortcut has also been added globally:

... (truncated)

Commits

Updates org.apache.commons:commons-email from 1.5 to 1.6.0

Updates com.github.tomakehurst:wiremock from 2.26.3 to 2.27.2

Commits
  • 56d7a08 Added memoization to match results during request -> stub near miss calculation
  • b9a3865 Bumped patch version
  • 278ab58 Fixed #1375 - removed memoization of string value pattern matches, as this is...
  • 1b48c42 Fixed #1346 - raised default Jetty stop timeout to prevent unbounded thread c...
  • 2b50872 Bumped patch version
  • e2809eb Moved the writable key store source (used when browser proxying HTTPS) to the...
  • d597aaf Upgraded to Jetty 9.4.30 and Conscrypt 2.2.1 (not the most recent, but the ne...
  • 129d00b Fixed #994 - added the ability to set the keystore type and trust store type ...
  • 6ded3d6 Fixed #807 - added a distinction in configuration between keystore password a...
  • 500ebec Added support for saving keystore files and switched the Jetty94 browser prox...
  • Additional commits viewable in compare view

Updates com.icegreen:greenmail-junit5 from 1.6.1 to 1.6.15

Release notes

Sourced from com.icegreen:greenmail-junit5's releases.

1.6.15

This release contains minor backports, bug fixes and dependency updates.

  • Enhancements
    • Backport: Support configuring key password for custom TLS certificate #641
    • Backport: Preload email files during greenmail start #640
    • Backport: Support RFC5233 subaddress handling #639
  • Bug fixes
    • Backport: SearchCommandParser$SearchOperator cannot be cast to j.m.search.SearchTerm #638
  • Dependencies
    • Update spring.version to 5.3.31 #649
    • Update container base image to azul/zulu-openjdk:8u392-jre #644
    • Update junit to 5.10.1 #647
    • Update jersey to 2.41 #646
    • Update jetty to 9.4.53.v20231009 #645
    • Update com.sun.activation:jakarta.activation to 1.2.2 #650

Note: GreenMail 1.6 requires JDK 8+ now, and used Jakarta Mail 1.6.x

For further details, check the issues fixed and full changelog greenmail-mail-test/greenmail@release-1.6.14...release-1.6.15

Download also available in Maven Central with GAV coordinates com.icegreen:greenmail:1.6.15 .

1.6.14

This release contains minor bug fixes and dependency updates.

  • Enhancements
    • #542 Configure mail session properties (backport)
  • Bug fixes
    • #537 GreenMail.isRunning() throws NullPointerException if the server was manually stopped (backport)
  • Dependencies
    • #540 Update jersey to 2.39 (backport)

Note: GreenMail 1.6 requires JDK 8+ now, and used Jakarta Mail 1.6.x

For further details, check the issues fixed and full changelog greenmail-mail-test/greenmail@release-1.6.13...release-1.6.14

Download also available in Maven Central with GAV coordinates com.icegreen:greenmail:1.6.14 .

1.6.13

This release contains minor bug fixes and dependency updates.

  • Bug fixes

    • #521 Recreating a user isnt possible on greenmail-standalone
  • Dependencies

    • #534 Update spring version 4.x to latest 5.x (5.3.25, backport)
    • #532 Update org.junit.jupiter to 5.9.2 (backport)
    • #531 Update jersey to 2.38 (backport)
    • #528 Update container base image to 8u362 (backport)

... (truncated)

Commits

Updates io.rest-assured:rest-assured-common from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:rest-assured-common's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates io.rest-assured:rest-assured from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:rest-assured's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates io.rest-assured:json-path from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:json-path's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates io.rest-assured:xml-path from 5.3.0 to 5.5.1

Changelog

Sourced from io.rest-assured:xml-path's changelog.

Changelog 5.5.1 (2025-02-14)

  • Use Long in maxAge(Matcher maxAgeMatcher) (thanks to julianladisch for PR)
  • Fix so that GZIP doesn't become gzıp for Turkish environments (thanks to rdmrtn for PR)
  • Upgraded jakarta.jakartaee-web-api to version 10.0.0 (#1800)

Changelog 5.5.0 (2024-07-05)

  • Removing custom validation of pathParams in the mock-mvc module and instead rely on the Spring implementation(issue 1782) (thanks to taeyeon-Kim for pull request)

  • Fixing "Error java.lang.NoSuchMethodError for HttpMethod.resolve()" in mock-mvc module (issue 1760) (thanks to d0vi for pull request)

  • Fix #1707: SVG file upload - fatal error :1:1: content is not allowed in prolog (#1777) (thanks to Byounghee kim for pull request)

  • Fix #1773: Remove check for response HTTP status code. (thanks to macmon for pull request)

  • Introducing the "scala-extensions" module for Scala 3 (#1770). This means that you can write tests like this in Scala 3:

    @​Test def extraction with rest assured scala extensions: Unit = val message: String = Given(req => req.port(7000) req.header("Header", "Header") req.body("hello") ) .When( _.put("/the/path") ) .Extract( _.path("message") ) assertThat(message).isEqualTo("Hello World") (thanks to Carlos Eduardo for pull request)

  • Remove deprecated Content-Transfer-Encoding from multipart post headers (#1762) (thanks to Michal Trna for pull request)

  • Fixed pathParams double encoding in mock-mvd module (#1756) (thanks to Dmitry Kaukov for pull request)

  • Upgraded Groovy from version 4.0.16 to 4.0.22

  • Upgraded Jackson from version 2.14.3 to 2.17.1

  • Upgraded kotlin extension module to use Kotlin 2.0.0 (previously 1.9.20 was used)

  • Upgraded Guava library from 32.0.1-jre to 33.2.1-jre

Changelog 5.4.0 (2023-12-08)

  • Properly parse primitive JSON values (thanks to Jörg Eichhorn for pull request)
  • Upgraded Groovy from 4.0.10 to 4.0.16
  • Introduce spring-web-test-client-kotlin-extensions (#1731) (thanks for TheDevLuffy for pull request). This means that if you depend on: org.restassured:spring-web-test-client-kotlin-extensions:<version> you can write code like this for Spring WebTest client: val id: Int = Given { webTestClient(webTestClient) param("name", "Johan") } When { get("/greeting") } Then { body( "id", Matchers.equalTo(1),

... (truncated)

Commits
  • 4d60f0a [maven-release-plugin] prepare release rest-assured-5.5.1
  • b518545 Excluding jakarta dependencies from duplicate-check
  • b4ade4e [ci skip] Preparing for release
  • 1818f08 [ci skip] Updated changelog to reflect the lastest changes
  • 1313fae refactor: change jakarta.jakartaee-web-api version (#1800)
  • 8d98fb5 fix: GZIP becomes gzıp for Turkish environments (#1801)
  • ada8e91 Bump commons-lang3 from 3.11 to 3.16.0 (#1802)
  • be60438 [ci skip] Updated changelog to reflect the lastest changes
  • 1c5bce9 Use Long in maxAge(Matcher<? super Integer> maxAgeMatcher) (#1809)
  • e1d9678 [ci skip] Updating README.md with info about the new release
  • Additional commits viewable in compare view

Updates org.awaitility:awaitility from 4.0.3 to 4.3.0

Changelog

Sourced from org.awaitility:awaitility's changelog.

Changelog 4.3.0 (2025-02-21)

  • Support for kotlin.time.Duration in Kotlin DSL (thanks to Ivo Šmíd for PR)

  • Upgraded kotlin version in the awaitility-kotlin module to 2.1.10

  • Using a more descriptive error message when using VERY long wait conditions or poll durations (issue 290)

  • Added an overloaded method of untilAsserted(..) that takes a supplier and a consumer. For example, lets say you have a class like this: public class MyClass { public String myFunction() { // Imagine stuff being executed in asynchronously here and the result of this // operation is a string called "my value" return "my value" } }

    // Then in yo...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Mar 11, 2025
@dependabot dependabot bot force-pushed the dependabot/maven/backend-dev-6934c88bae branch from ee32c09 to 1f008f7 Compare March 11, 2025 11:36
Bumps the backend-dev group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [io.rest-assured:rest-assured-common](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [io.rest-assured:json-path](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [io.rest-assured:xml-path](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [org.awaitility:awaitility](https://github.com/awaitility/awaitility) | `4.0.3` | `4.3.0` |
| org.apache.commons:commons-email | `1.5` | `1.6.0` |
| [com.github.tomakehurst:wiremock](https://github.com/tomakehurst/wiremock) | `2.26.3` | `2.27.2` |
| [com.icegreen:greenmail-junit5](https://github.com/greenmail-mail-test/greenmail) | `1.6.1` | `1.6.15` |

Bumps the backend-dev group with 8 updates in the /server directory:

| Package | From | To |
| --- | --- | --- |
| [io.rest-assured:rest-assured-common](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [io.rest-assured:json-path](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [io.rest-assured:xml-path](https://github.com/rest-assured/rest-assured) | `5.3.0` | `5.5.1` |
| [org.awaitility:awaitility](https://github.com/awaitility/awaitility) | `4.0.3` | `4.3.0` |
| org.apache.commons:commons-email | `1.5` | `1.6.0` |
| [com.github.tomakehurst:wiremock](https://github.com/tomakehurst/wiremock) | `2.26.3` | `2.27.2` |
| [com.icegreen:greenmail-junit5](https://github.com/greenmail-mail-test/greenmail) | `1.6.1` | `1.6.15` |



Updates `io.rest-assured:rest-assured-common` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `io.rest-assured:rest-assured` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `io.rest-assured:json-path` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `io.rest-assured:xml-path` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `org.awaitility:awaitility` from 4.0.3 to 4.3.0
- [Changelog](https://github.com/awaitility/awaitility/blob/master/changelog.txt)
- [Commits](https://github.com/awaitility/awaitility/commits/awaitility-4.3.0)

Updates `org.apache.commons:commons-email` from 1.5 to 1.6.0

Updates `com.github.tomakehurst:wiremock` from 2.26.3 to 2.27.2
- [Release notes](https://github.com/tomakehurst/wiremock/releases)
- [Commits](wiremock/wiremock@2.26.3...2.27.2)

Updates `com.icegreen:greenmail-junit5` from 1.6.1 to 1.6.15
- [Release notes](https://github.com/greenmail-mail-test/greenmail/releases)
- [Commits](greenmail-mail-test/greenmail@release-1.6.1...release-1.6.15)

Updates `io.rest-assured:rest-assured-common` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `io.rest-assured:rest-assured` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `io.rest-assured:json-path` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `io.rest-assured:xml-path` from 5.3.0 to 5.5.1
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.3.0...rest-assured-5.5.1)

Updates `org.awaitility:awaitility` from 4.0.3 to 4.3.0
- [Changelog](https://github.com/awaitility/awaitility/blob/master/changelog.txt)
- [Commits](https://github.com/awaitility/awaitility/commits/awaitility-4.3.0)

Updates `org.apache.commons:commons-email` from 1.5 to 1.6.0

Updates `com.github.tomakehurst:wiremock` from 2.26.3 to 2.27.2
- [Release notes](https://github.com/tomakehurst/wiremock/releases)
- [Commits](wiremock/wiremock@2.26.3...2.27.2)

Updates `com.icegreen:greenmail-junit5` from 1.6.1 to 1.6.15
- [Release notes](https://github.com/greenmail-mail-test/greenmail/releases)
- [Commits](greenmail-mail-test/greenmail@release-1.6.1...release-1.6.15)

---
updated-dependencies:
- dependency-name: io.rest-assured:rest-assured-common
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: io.rest-assured:rest-assured
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: io.rest-assured:json-path
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: io.rest-assured:xml-path
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: org.awaitility:awaitility
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: org.apache.commons:commons-email
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: com.github.tomakehurst:wiremock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: com.icegreen:greenmail-junit5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:rest-assured-common
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: io.rest-assured:rest-assured
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: io.rest-assured:json-path
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: io.rest-assured:xml-path
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: org.awaitility:awaitility
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: org.apache.commons:commons-email
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: com.github.tomakehurst:wiremock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend-dev
- dependency-name: com.icegreen:greenmail-junit5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/backend-dev-6934c88bae branch from 1f008f7 to 73e9403 Compare March 12, 2025 12:18
Copy link
Contributor Author

dependabot bot commented on behalf of github May 15, 2025

Superseded by #97.

@dependabot dependabot bot closed this May 15, 2025
@dependabot dependabot bot deleted the dependabot/maven/backend-dev-6934c88bae branch May 15, 2025 11:53
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.

0 participants