Skip to content

Bump the build-dependencies group across 1 directory with 3 updates #1634

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

Merged
merged 1 commit into from
May 27, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 27, 2025

Bumps the build-dependencies group with 3 updates in the / directory: io.rest-assured:rest-assured, com.puppycrawl.tools:checkstyle and org.eclipse.sisu:sisu-maven-plugin.

Updates io.rest-assured:rest-assured from 5.5.2 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(). ...

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 com.puppycrawl.tools:checkstyle from 10.23.1 to 10.24.0

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-10.24.0

Checkstyle 10.24.0 - https://checkstyle.org/releasenotes.html#Release_10.24.0

New:

#5983 - CLI: generate suppresion xml content (SuppressionFilter) for certain Checks but whole file with violation #16174 - New Check: MultiFileRegexpHeader to allow specify few header file to validate

Bug fixes:

#16786 - private enums being treated as public in JavadocVariableCheck #16564 - EmptyLineSeparator check does not validate newlines before comments in Interfaces #8807 - SuppressWithPlainTextCommentFilter is slow on files with multiple errors #14654 - incompatibility with google-java-format: CatchFormalParameter is indented by 4 spaces instead of 2 #15098 - Indentation of the Block child of switch rule is not validated when no braces

Commits
  • f8c3db8 [maven-release-plugin] prepare release checkstyle-10.24.0
  • a504e10 doc: release notes for 10.24.0
  • 555e6c3 infra: Update releasenotes-gen-xdoc-push.sh to not use mvnw
  • 1ebcc8f Issue #16786: Ensure enum constants accessibility is properly evaluated
  • b1c4124 Issue #5983: add listner to generate suppression.xml for SupperssionFilter by...
  • 87bfcc6 dependency: bump org.pitest:pitest-junit5-plugin from 1.2.2 to 1.2.3
  • 6ea2b7d minor: Bump version to 10.24.0-SNAPSHOT
  • e1a9b1e Issue #16174: Implement New Check MultiFileRegexpHeader
  • f1a6cd0 Issue #16564: Fixed EmptyLineSeparator validation with Javadoc
  • ee779ba Pull #17110: fix log typo
  • Additional commits viewable in compare view

Updates org.eclipse.sisu:sisu-maven-plugin from 0.9.0.M3 to 0.9.0.M4

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

Bumps the build-dependencies group with 3 updates in the / directory: [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured), [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) and org.eclipse.sisu:sisu-maven-plugin.


Updates `io.rest-assured:rest-assured` from 5.5.2 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.2...rest-assured-5.5.5)

Updates `com.puppycrawl.tools:checkstyle` from 10.23.1 to 10.24.0
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-10.23.1...checkstyle-10.24.0)

Updates `org.eclipse.sisu:sisu-maven-plugin` from 0.9.0.M3 to 0.9.0.M4

---
updated-dependencies:
- dependency-name: io.rest-assured:rest-assured
  dependency-version: 5.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-dependencies
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-version: 10.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build-dependencies
- dependency-name: org.eclipse.sisu:sisu-maven-plugin
  dependency-version: 0.9.0.M4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: build-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels May 27, 2025
@marko-bekhta marko-bekhta merged commit ff8d126 into main May 27, 2025
10 checks passed
@dependabot dependabot bot deleted the dependabot/maven/build-dependencies-0fecad1370 branch May 27, 2025 14:30
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.

1 participant