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

(ADB2C)Spring Boot 3.4対応 #1791

Merged
merged 3 commits into from
Jan 7, 2025
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 samples/azure-ad-b2c-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ Azure AD B2C に追加したユーザーは、以下の手順で削除できま

```gradle
ext {
activeDirectoryVersion = "[使用するライブラリのバージョン番号を記述。サンプルでは 5.11.0]"
springCloudAzureVersion = "[使用するライブラリのバージョン番号を記述。サンプルでは 5.11.0]"
activeDirectoryVersion = "[使用するライブラリのバージョン番号を記述。サンプルでは 5.19.0]"
springCloudAzureVersion = "[使用するライブラリのバージョン番号を記述。サンプルでは 5.19.0]"

supportDependencies = [
spring_cloud_azure_starter : "com.azure.spring:spring-cloud-azure-starter",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"openapi": "3.0.1",
"openapi": "3.1.0",
"info": {
"description": "Azure AD B2Cを利用したユーザー認証機能を提供するサンプルアプリケーションです。",
"title": "Azure AD B2C ユーザー認証",
Expand Down Expand Up @@ -88,52 +88,66 @@
"type": "object",
"properties": {
"detail": {
"type": "string"
"type": [
"string"
]
},
"instance": {
"type": "string",
"type": [
"string"
],
"format": "uri"
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "object"
}
"type": [
"object"
],
"additionalProperties": {}
},
"status": {
"type": "integer",
"type": [
"integer"
],
"format": "int32"
},
"title": {
"type": "string"
"type": [
"string"
]
},
"type": {
"type": "string",
"type": [
"string"
],
"format": "uri"
}
}
},
"TimeResponse": {
"required": [
"serverTime"
],
"type": "object",
"properties": {
"serverTime": {
"type": "string"
"type": [
"string"
]
}
}
},
"required": [
"serverTime"
]
},
"UserResponse": {
"required": [
"userId"
],
"type": "object",
"properties": {
"userId": {
"type": "string"
"type": [
"string"
]
}
}
},
"required": [
"userId"
]
}
},
"securitySchemes": {
Expand Down
2 changes: 1 addition & 1 deletion samples/azure-ad-b2c-sample/auth-backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ subprojects {
toolVersion = '0.8.12'
}
checkstyle {
toolVersion = '10.18.2'
toolVersion = '10.21.1'
configDirectory = rootProject.file('config/checkstyle')
}
spotbugs {
Expand Down
12 changes: 6 additions & 6 deletions samples/azure-ad-b2c-sample/auth-backend/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ext {
// -- PLUGINS
springBootVersion = "3.3.4"
springDependencyManagementVersion = "1.1.6"
springBootVersion = "3.4.1"
springDependencyManagementVersion = "1.1.7"
springdocOpenapiGradlePluginVersion = "1.9.0"
spotbugsVersion = "6.0.24"
spotbugsVersion = "6.0.27"

// -- DEPENDENCIES
springdocOpenapiVersion = "2.6.0"
activeDirectoryVersion = "5.16.0"
springCloudAzureVersion = "5.16.0"
springdocOpenapiVersion = "2.8.1"
activeDirectoryVersion = "5.19.0"
springCloudAzureVersion = "5.19.0"

supportDependencies = [
spring_boot_starter : "org.springframework.boot:spring-boot-starter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export interface ProblemDetail {
'instance'?: string;
/**
*
* @type {{ [key: string]: object; }}
* @type {{ [key: string]: any; }}
* @memberof ProblemDetail
*/
'properties'?: { [key: string]: object; };
'properties'?: { [key: string]: any; };
/**
*
* @type {number}
Expand Down
Loading