Skip to content

Commit

Permalink
Bump spring-boot.version from 3.2.3 to 3.3.4 (#1905)
Browse files Browse the repository at this point in the history
* Bump spring-boot.version from 3.2.3 to 3.3.4

Bumps `spring-boot.version` from 3.2.3 to 3.3.4.

Updates `org.springframework.boot:spring-boot-starter-web` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

Updates `org.springframework.boot:spring-boot-starter-undertow` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

Updates `org.springframework.boot:spring-boot-starter-test` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

Updates `org.springframework.boot:spring-boot-starter-webflux` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

Updates `org.springframework.boot:spring-boot-dependencies` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

Updates `org.springframework.boot:spring-boot-autoconfigure` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

Updates `org.springframework.boot:spring-boot-configuration-processor` from 3.2.3 to 3.3.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.3...v3.3.4)

---
updated-dependencies:
- dependency-name: org.springframework.boot:spring-boot-starter-web
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.springframework.boot:spring-boot-starter-undertow
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.springframework.boot:spring-boot-starter-test
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.springframework.boot:spring-boot-starter-webflux
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.springframework.boot:spring-boot-dependencies
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.springframework.boot:spring-boot-autoconfigure
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.springframework.boot:spring-boot-configuration-processor
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* update the MultiFilterTest and bump logback versions

* cast to LocalResponse in getResponse

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Karen Asmarian <[email protected]>
Co-authored-by: Sadeq Dousti <[email protected]>
  • Loading branch information
3 people authored Sep 23, 2024
1 parent 8e62c6d commit 39b9225
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions logbook-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
<feign.version>13.4</feign.version>

<spring.version>6.1.13</spring.version>
<spring-boot.version>3.2.3</spring-boot.version>
<spring-boot.version>3.3.4</spring-boot.version>

<junit.version>5.10.2</junit.version>
<mockito.version>5.1.1</mockito.version>
<jmh.version>1.37</jmh.version>
<lombok.version>1.18.34</lombok.version>
<logback-classic.version>1.5.6</logback-classic.version>
<logback-core.version>1.4.14</logback-core.version>
<logback-classic.version>1.5.8</logback-classic.version>
<logback-core.version>1.5.8</logback-core.version>
<commons-lang3.version>3.17.0</commons-lang3.version>
<okio.version>3.9.1</okio.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import jakarta.servlet.Filter;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServletResponseWrapper;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
Expand Down Expand Up @@ -131,9 +132,9 @@ private LocalResponse getResponse(final Filter filter) throws IOException, Servl
}

private LocalResponse getResponse(final ExampleController controller) throws IOException {
final ArgumentCaptor<LocalResponse> captor = ArgumentCaptor.forClass(LocalResponse.class);
final ArgumentCaptor<HttpServletResponseWrapper> captor = ArgumentCaptor.forClass(HttpServletResponseWrapper.class);
verify(controller).readBytes(any(), captor.capture());
return captor.getValue();
return (LocalResponse) captor.getValue().getResponse();
}

}

0 comments on commit 39b9225

Please sign in to comment.