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

The "Spring Boot 3.2" card doesn't quite make sense, its title cites … #75

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
20 changes: 10 additions & 10 deletions src/main/resources/devcenter.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
"devCenter": {
"upgradesAndMigrations": [
{
"title": "Spring boot 3.2",
"title": "Spring boot 3.2.5",
"measures": [
{
"name": "Major",
Expand All @@ -176,15 +176,15 @@
"options": [
{
"name": "groupIdPattern",
"value": "org.springframework.boot"
"value": "org.springframework"
},
{
"name": "artifactIdPattern",
"value": "spring-boot"
"value": "spring-core"
},
{
"name": "version",
"value": "1-2"
"value": "[,5)"
}
]
}
Expand All @@ -196,15 +196,15 @@
"options": [
{
"name": "groupIdPattern",
"value": "org.springframework.boot"
"value": "org.springframework"
},
{
"name": "artifactIdPattern",
"value": "spring-boot"
"value": "spring-core"
},
{
"name": "version",
"value": "3-3.1"
"value": "[5,6.0)"
}
]
}
Expand All @@ -216,15 +216,15 @@
"options": [
{
"name": "groupIdPattern",
"value": "org.springframework.boot"
"value": "org.springframework"
},
{
"name": "artifactIdPattern",
"value": "spring-boot"
"value": "spring-core"
},
{
"name": "version",
"value": "3.2-3.2.2"
"value": "6.1.1-6.1.5"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if 6.1.6 or 6.2 comes out, repos using it will be marked as non compliant

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No anything which isn't covered by one of these gets marked as "complete". It's also the same situation we're in already with spring-boot if they were to release new versions.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah you are right 👍

}
]
}
Expand Down
Loading