1.1.0.RC1
Pre-release
Pre-release
We are pleased to announce the release of Spring Cloud App Broker 1.1.0.RC1. Thanks to the community for your feedback and contributions! As the first release candidate of the 1.1.0 series, this release includes the following fixes and improvements:
- Upgrade to Spring Cloud Open Service Broker 3.1.1.RELEASE
- Upgrade to Spring Boot 2.2.7.RELEASE
- Upgrade to CF Java Client 4.6.0.RELEASE
- Upgrade to Spring CredHub 2.1.1.RELEASE
- Permissions stored in CredHub are now cleaned up on unbind #202
- Backing app environment is updated on upgrade #349
- If specified, the
routes
property now takes precedence over thehost
,hosts
,domain
anddomains
properties - Adds service instance logging endpoints to support the service instance logs CF CLI plugin
- Fixed an issue where configured backing services were not being deleted #344
- Fixed an issue with deletion of permissions from CredHub #368
- Adds a new logging starter
- Logging updates to ensure potentially sensitive configuration data is only logged in debug mode
- Updates
BackingAppManagementService
to support management operations without the requirement for thecloud_controller.admin
authority - Documentation on how to create a custom Target
Gradle:
repositories {
maven {
url "https://repo.spring.io/milestone"
}
}
implementation("org.springframework.cloud:spring-cloud-starter-app-broker-cloudfoundry:1.1.0.RC1")
Maven:
<repository>
<id>spring-milestones</id>
<url>https://repo.spring.io/milestone</url>
</repository>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-app-broker-cloudfoundry</artifactId>
<version>1.1.0.RC1</version>
</dependency>