Skip to content

Bump the backend-dev group across 2 directories with 4 updates #471

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 13, 2025

Bumps the backend-dev group with 4 updates in the / directory: org.wiremock:wiremock-standalone, io.rest-assured:rest-assured, io.rest-assured:json-path and io.rest-assured:xml-path.
Bumps the backend-dev group with 4 updates in the /server directory: org.wiremock:wiremock-standalone, io.rest-assured:rest-assured, io.rest-assured:json-path and io.rest-assured:xml-path.

Updates org.wiremock:wiremock-standalone from 3.13.0 to 3.13.1

Release notes

Sourced from org.wiremock:wiremock-standalone's releases.

3.13.1

📦 Dependency updates

✍ Other changes

Commits
  • 1a9a615 bump patch version to 3.13.1
  • bc08309 Merge pull request #3061 from picimako/bundle-stub-mapping-schema
  • 31f10d0 fix: Fix tests now master is merged in
  • 78ae6ad Merge branch 'main' into fork/picimako/bundle-stub-mapping-schema
  • 1048c71 fix: Try and get the tests to pass
  • 5812da9 chore: More robust schemaIsExpectedSchema test
  • c8889f7 chore: Make Spotless happy
  • 2e15106 chore: Add regression test for wiremock JSON schema generation
  • fb44f83 Merge pull request #3015 from wiremock/dependabot/npm_and_yarn/ui/multi-24003...
  • bf40a3f chore(deps): bump redoc and @​redocly/cli in /ui
  • Additional commits viewable in compare view

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

Changelog

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

Changelog 5.5.5 (2025-05-22)

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

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • 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(). ...

Changelog 5.5.2 (2025-05-14)

  • 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)
Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

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

Changelog

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

Changelog 5.5.5 (2025-05-22)

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

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • 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(). ...

Changelog 5.5.2 (2025-05-14)

  • 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)
Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

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

Changelog

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

Changelog 5.5.5 (2025-05-22)

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

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • 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(). ...

Changelog 5.5.2 (2025-05-14)

  • 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)
Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

Updates org.wiremock:wiremock-standalone from 3.13.0 to 3.13.1

Release notes

Sourced from org.wiremock:wiremock-standalone's releases.

3.13.1

📦 Dependency updates

✍ Other changes

Commits
  • 1a9a615 bump patch version to 3.13.1
  • bc08309 Merge pull request #3061 from picimako/bundle-stub-mapping-schema
  • 31f10d0 fix: Fix tests now master is merged in
  • 78ae6ad Merge branch 'main' into fork/picimako/bundle-stub-mapping-schema
  • 1048c71 fix: Try and get the tests to pass
  • 5812da9 chore: More robust schemaIsExpectedSchema test
  • c8889f7 chore: Make Spotless happy
  • 2e15106 chore: Add regression test for wiremock JSON schema generation
  • fb44f83 Merge pull request #3015 from wiremock/dependabot/npm_and_yarn/ui/multi-24003...
  • bf40a3f chore(deps): bump redoc and @​redocly/cli in /ui
  • Additional commits viewable in compare view

Updates org.wiremock:wiremock-standalone from 3.13.0 to 3.13.1

Release notes

Sourced from org.wiremock:wiremock-standalone's releases.

3.13.1

📦 Dependency updates

✍ Other changes

Commits
  • 1a9a615 bump patch version to 3.13.1
  • bc08309 Merge pull request #3061 from picimako/bundle-stub-mapping-schema
  • 31f10d0 fix: Fix tests now master is merged in
  • 78ae6ad Merge branch 'main' into fork/picimako/bundle-stub-mapping-schema
  • 1048c71 fix: Try and get the tests to pass
  • 5812da9 chore: More robust schemaIsExpectedSchema test
  • c8889f7 chore: Make Spotless happy
  • 2e15106 chore: Add regression test for wiremock JSON schema generation
  • fb44f83 Merge pull request #3015 from wiremock/dependabot/npm_and_yarn/ui/multi-24003...
  • bf40a3f chore(deps): bump redoc and @​redocly/cli in /ui
  • Additional commits viewable in compare view

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

Changelog

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

Changelog 5.5.5 (2025-05-22)

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

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • 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(). ...

Changelog 5.5.2 (2025-05-14)

  • 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)
Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

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

Changelog

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

Changelog 5.5.5 (2025-05-22)

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

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • 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(). ...

Changelog 5.5.2 (2025-05-14)

  • 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)
Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

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

Changelog

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

Changelog 5.5.5 (2025-05-22)

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

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • 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(). ...

Changelog 5.5.2 (2025-05-14)

  • 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)
Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

Updates org.wiremock:wiremock-standalone from 3.13.0 to 3.13.1

Release notes

Sourced from org.wiremock:wiremock-standalone's releases.

3.13.1

📦 Dependency updates

✍ Other changes

Commits
  • 1a9a615 bump patch version to 3.13.1
  • bc08309 Merge pull request #3061 from picimako/bundle-stub-mapping-schema
  • 31f10d0 fix: Fix tests now master is merged in
  • 78ae6ad Merge branch 'main' into fork/picimako/bundle-stub-mapping-schema
  • 1048c71 fix: Try and get the tests to pass
  • 5812da9 chore: More robust schemaIsExpectedSchema test
  • c8889f7 chore: Make Spotless happy
  • 2e15106 chore: Add regression test for wiremock JSON schema generation
  • fb44f83 Merge pull request #3015 from wiremock/dependabot/npm_and_yarn/ui/multi-24003...
  • bf40a3f chore(deps): bump redoc and @​redocly/cli in /ui
  • 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 13, 2025
@dependabot dependabot bot force-pushed the dependabot/maven/backend-dev-0524e10146 branch 4 times, most recently from 55237b4 to d2c1da2 Compare June 25, 2025 05:09
Bumps the backend-dev group with 4 updates in the / directory: [org.wiremock:wiremock-standalone](https://github.com/wiremock/wiremock), [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured), [io.rest-assured:json-path](https://github.com/rest-assured/rest-assured) and [io.rest-assured:xml-path](https://github.com/rest-assured/rest-assured).
Bumps the backend-dev group with 4 updates in the /server directory: [org.wiremock:wiremock-standalone](https://github.com/wiremock/wiremock), [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured), [io.rest-assured:json-path](https://github.com/rest-assured/rest-assured) and [io.rest-assured:xml-path](https://github.com/rest-assured/rest-assured).


Updates `org.wiremock:wiremock-standalone` from 3.13.0 to 3.13.1
- [Release notes](https://github.com/wiremock/wiremock/releases)
- [Commits](wiremock/wiremock@3.13.0...3.13.1)

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

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

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

Updates `org.wiremock:wiremock-standalone` from 3.13.0 to 3.13.1
- [Release notes](https://github.com/wiremock/wiremock/releases)
- [Commits](wiremock/wiremock@3.13.0...3.13.1)

Updates `org.wiremock:wiremock-standalone` from 3.13.0 to 3.13.1
- [Release notes](https://github.com/wiremock/wiremock/releases)
- [Commits](wiremock/wiremock@3.13.0...3.13.1)

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

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

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

Updates `org.wiremock:wiremock-standalone` from 3.13.0 to 3.13.1
- [Release notes](https://github.com/wiremock/wiremock/releases)
- [Commits](wiremock/wiremock@3.13.0...3.13.1)

---
updated-dependencies:
- dependency-name: org.wiremock:wiremock-standalone
  dependency-version: 3.13.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:rest-assured
  dependency-version: 5.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:json-path
  dependency-version: 5.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:xml-path
  dependency-version: 5.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: org.wiremock:wiremock-standalone
  dependency-version: 3.13.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: org.wiremock:wiremock-standalone
  dependency-version: 3.13.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:rest-assured
  dependency-version: 5.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:json-path
  dependency-version: 5.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: io.rest-assured:xml-path
  dependency-version: 5.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
- dependency-name: org.wiremock:wiremock-standalone
  dependency-version: 3.13.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend-dev
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/backend-dev-0524e10146 branch from d2c1da2 to 872fa65 Compare June 26, 2025 04:40
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
Status: New
Development

Successfully merging this pull request may close these issues.

0 participants