Releases: spring-cloud/spring-cloud-open-service-broker
2.1.0.RELEASE
The 2.1.0 release includes support for additions and changes in Open Service Broker API 2.14. The following is a summary of changes and improvements available:
- Upgrade to Spring Boot 2.0.7.RELEASE
- Support for asynchronous service instance binding and unbinding
- Support providing an updated
dashboard_url
when updating a service instance - Resolves issues with deserializing the model objects that were converted to the builder pattern
- Adds a convenience property to the various request objects for accessing the
Plan
for the specifiedServiceDefinition
Include the following Spring Boot starter:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-open-service-broker-webmvc</artifactId>
<version>2.1.0.RELEASE</version>
</dependency>
2.1.0.RC1
1.0.4.RELEASE
This is a maintenance release that includes a new ServiceBrokerBadRequestException
, which maps to HTTP 400 responses, and allows the developer to handle those error conditions. See #131 for more information.
3.0.0.M2
The 3.0.x release line will support a Reactive programming model as well as additions and changes in Open Service Broker 2.14.
- Support for asynchronous service instance binding and unbinding
- Relax auto-configuration in order to fail more quickly in scenarios where required beans are missing
- Upgrade to Spring Boot 2.0.6.RELEASE
- Upgrade to Reactor Bismuth-SR13
- Enable JUnit 5 support
- Minor changes to support building against Spring Boot 2.1 in CI integration tests
2.1.0.M2
The 2.1.x release line will support additions and changes in Open Service Broker 2.14.
- Support for asynchronous service instance binding and unbinding
- Upgrade to Spring Boot 2.0.6.RELEASE
3.0.0.M1
This is the initial milestone for the 3.0 release.
- First class support for Spring WebFlux and Project Reactor
- The starter has been renamed because it now supports both Spring web frameworks
- Introduces several reactive life cycle hooks for performing additional operations
View the details of the closed issues for this release.
Include the following Spring Boot starter:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-open-service-broker</artifactId>
<version>3.0.0.M1</version>
</dependency>
Use the Spring Milestone Repository:
<repository>
<id>spring-milestones</id>
<url>https://repo.spring.io/milestone</url>
</repository>
2.1.0.M1
The 2.1.x release line will support additions and changes in Open Service Broker 2.14.
- Support providing an updated
dashboard_url
when updating a service instance - Resolves issues with deserializing the model objects that were converted to the builder pattern
View the closed issue list on GitHub
2.0.1.RELEASE
This release resolves a few issues that have been raised since the 2.0 release. Thank you to the community for your interest and feedback.
2.0.0.RELEASE
The 2.0.0 release of Spring Cloud Open Service Broker is now generally available. This release includes a minor update to Spring Boot 2.0.3.RELEASE. Thanks to everyone in the community who has offered feedback and submitted issues to help improve this project.
2.0.0.RC2
The following issues were fixed in this release:
- Upgrade to Spring Boot 2.0.2.RELEASE
- Move all exception handling to a ControllerAdvice class to allow for custom exception handling
- Remove dependency on spring-boot-starter-security
- Remove WebFlux starter and autoconfiguration
You can view the full list of changes on GitHub.