-
Notifications
You must be signed in to change notification settings - Fork 6
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
[Epic] Improve test matrix to include all supported spring versions #2
Comments
[
{
"current": "true" (unique in the list, should equal spring cloud azure source code)
"spring-boot-version": "2.6.8"
"spring-cloud-version": "2021.0.2"
"releaseStatus": "SNAPSHOT",
"snapshot": "true"
"supportStatus": "endoflife | supported | todo" (our support information need manual maintenance)
(new entry is default to todo, and we can use another pipeline to test the supportability)
(spring metadata removes one version, we can try to create an issue to suggest/query whether we should mark the version to EoL(end of life))
},
{
"current": "true"
"spring-boot-version": "2.6.7"
"spring-cloud-version": "2021.0.1"
"releaseStatus": "SNAPSHOT",
"snapshot": "true"
"supportStatus": "endoflife | supported | todo"
}
]
|
Context:
Currently Spring Cloud Azure supports multi Spring Boot and Spring Cloud versions, but those versions are not actively tested.
we need to figure out how to enable a testing matrix to actively test all support spring versions and Spring Cloud Azure libraries.
Strong has a poc for how to get dependency versions: https://github.com/Azure/spring-cloud-azure-tools/tree/t1/src/main/java/com/azure/spring/dev/tools/dependency
Goal:
The Spring Cloud Azure dev branch should align with Spring Boot on the current Spring Boot version.
https://spring.io/project_metadata/spring-boot
withcurrent: true
.https://spring.io/project_metadata/spring-boot
changes, we should catch up ASAP.The Spring Cloud Azure dev branch should maintain a test matrix for dependent Spring projects. -- UT
supported-versions.json
, listing 2.5.1 and 2.6.1 for example.The Spring Cloud Azure should have integration tests, containing all Spring Cloud Azure libraries, to run against each version. -- IT
Solutions
curl -G https://start.spring.io/pom.xml -d packaging=war -o pom.xml
and retrieved automaticallyOriginally posted by @saragluna in microsoft/spring-cloud-azure#930 (comment)
The text was updated successfully, but these errors were encountered: