We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It's been very handy, writing applications and verifying against previous versions.
e.g.
<profile> <!-- https://docs.spring.io/spring-boot/docs/3.0.0/reference/html/dependency-versions.html#appendix.dependency-versions --> <id>spring-boot-3.0.0-java17</id> <properties> <version.ch.qos.logback>1.4.5</version.ch.qos.logback> <version.org.springframework>6.0.2</version.org.springframework> <version.org.springframework.boot>3.0.0</version.org.springframework.boot> </properties> </profile> <profile> <!-- https://docs.spring.io/spring-boot/docs/3.2.0/reference/html/dependency-versions.html#appendix.dependency-versions --> <id>spring-boot-3.2.0-java21-buggy</id> <properties> <version.ch.qos.logback>1.4.11</version.ch.qos.logback> <version.org.springframework>6.1.1</version.org.springframework> <version.org.springframework.boot>3.2.0</version.org.springframework.boot> </properties> </profile> <profile> <!-- https://docs.spring.io/spring-boot/appendix/dependency-versions/coordinates.html --> <id>spring-boot-latest</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <version.org.springframework>6.2.5</version.org.springframework> <version.org.springframework.boot>3.4.4</version.org.springframework.boot> </properties> </profile>
But I found there are missing versions in https://docs.spring.io/spring-boot/docs/.
We don't manage versions anymore?
3.3.x/
3.4.x
current/
The text was updated successfully, but these errors were encountered:
Docs are published:
Can you confirm ?
Sorry, something went wrong.
@bclozel Thank you for the links. I do confirm.
Thanks.
Do we have any index page?
Yes, here: https://docs.spring.io/spring-boot/ You can use the version selector on the top left of the page.
No more docs for patch versions?
No.
Are all dependencies' versions froze by the major.minor?
No, Spring Boot maintenance versions update to the latest maintenance versions of all dependencies.
No branches or pull requests
It's been very handy, writing applications and verifying against previous versions.
e.g.
But I found there are missing versions in https://docs.spring.io/spring-boot/docs/.
We don't manage versions anymore?
3.3.x/
s3.3.x/
directs to the latest3.4.x
current/
The text was updated successfully, but these errors were encountered: