Spring Cloud Task 2.1.0.M2 is now available
We are pleased to announce that Spring Cloud Task 2.1.0.M2 is now available on Github and the Pivotal download repository. Many thanks to all of those who contributed to this release.
What's New?
Spring Cloud Task 2.1.0.M2 is intended to be the version of the framework aligned with Spring Boot 2.1.0. Updates from 2.1.0.M1 include:
- Update all dependencies.
- By popular demand,
@EnableTask
is back. - Bug Fixes.
Let's walk through these updates in more detail.
@EnableTask is back
By popular demand, @EnableTask
is back, with a twist! In this case, AutoConfiguration
is still being used to create the TaskExplorer
, TaskConfigurer
, and other beans but does not create the TaskLifecycleListener
(the bean that adds the Task Lifecycle to your application). The TaskLifecycleListener
bean is created when a user adds the @EnableTask
to…