Skip to content
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

[#1195] update spring-cloud version to 2023.0.0 and spring-boot version to 3.2.2 #1197

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
<properties>
<!-- spring-cloud-dependencies do not import spring-boot-dependencies, spring-boot-dependencies
import spring-framework-bom. No need configure spring version. -->
<spring-cloud.version>2022.0.4</spring-cloud.version>
<spring-boot.version>3.1.5</spring-boot.version>
<spring-cloud.version>2023.0.0</spring-cloud.version>
<spring-boot.version>3.2.2</spring-boot.version>
<servicecomb.version>2.8.14</servicecomb.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ public HttpStatusCode getStatusCode() throws IOException {
return HttpStatusCode.valueOf(this.code);
}

@Override
@SuppressWarnings("deprecation")
public int getRawStatusCode() {
return this.code;
}

@Override
public String getStatusText() {
if (message == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,6 @@ public HttpStatus getStatusCode() {
return HttpStatus.valueOf(response.status());
}

@Override
@Deprecated(since = "6.0")
public int getRawStatusCode() {
return response.status();
}

@Override
public String getStatusText() {
return response.reason();
Expand Down
Loading