Skip to content

Commit

Permalink
Bump org.springframework.boot:spring-boot-starter-parent from 3.1.5 t…
Browse files Browse the repository at this point in the history
…o 3.2.0 in /experimental/spring (#241)

* Bump org.springframework.boot:spring-boot-starter-parent

Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.1.5 to 3.2.0.
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.1.5...v3.2.0)

---
updated-dependencies:
- dependency-name: org.springframework.boot:spring-boot-starter-parent
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* AbstractServerHttpRequest constructor fix (#242)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nándor István Krácser <bonifaido@gmail.com>
  • Loading branch information
dependabot[bot] and bonifaido authored Nov 28, 2023
1 parent 11d7683 commit 0f5db6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion experimental/spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.5</version>
<version>3.2.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static HttpHeaders parseHeaders(NaspHttpRequest request) {
}

public NaspServerHttpRequest(NaspHttpRequest request) {
super(URI.create(request.uri()), "", parseHeaders(request));
super(HttpMethod.valueOf(request.method()), URI.create(request.uri()), "", parseHeaders(request));
this.request = request;
}

Expand Down

0 comments on commit 0f5db6c

Please sign in to comment.