Spring Boot 2.0.3 和 1.5.14 均已发布,可从 repo.spring.io 和 Maven Central 获取更新。
据发布主页显示,两者的更新主要都是修复了 bug,功能改进以及依赖的升级。
Spring Boot 1.5.14 发布说明
Spring Boot 2.0.3 发布说明
2.0.3 的功能增强
- Make JMX metrics domain configurable #13356
- Auto-configure jOOQ with TransactionListenerProvider #13331
- Binding to immutable Map fails with UnsupportedOperationException #13323
- Use more Tag constants #13286
- Allow LocalHostUriTemplateHandler to be created with a custom underlying UriTemplateHandler #13208
- Allow property values that contain placeholders to be bound as-is #13202
- Use empty trust-store password if SSL store provider present #13088
- Provide access to the CopySpec for BOOT-INF of BootJar as Gradle’s War task does for WEB-INF #13000
- Install Spring Boot CLI on Windows using Scoop #12541
Maven
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.14.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
转自 https://www.oschina.net/news/97075/spring-boot-1-5-14-and-2-0-3-released