Releases: SAP/cf-java-client-sap
Releases · SAP/cf-java-client-sap
2.1.1
2.1.0
- Optimize requests for retrieving a user's roles in a CF space. As a result of this change the following methods were removed in favor of
getUserRoleBySpaceGuidAndUserGuid(UUID spaceGuid, UUID userGuid)
:getSpaceAuditors()
getSpaceAuditors(String spaceName)
getSpaceAuditors(String organizationName, String spaceName)
getSpaceAuditors(UUID spaceGuid)
getSpaceDevelopers()
getSpaceDevelopers(String spaceName)
getSpaceDevelopers(String organizationName, String spaceName)
getSpaceDevelopers(UUID spaceGuid)
getSpaceManagers()
getSpaceManagers(String spaceName)
getSpaceManagers(String organizationName, String spaceName)
getSpaceManagers(UUID spaceGuid)
2.0.1
2.0.0
Note: Don't use this release! Use 2.0.1 instead, as it changes the artifact ID to something consistent with the official CF Java client (see 6499070).
- Merge the parent and child modules into a single Maven module:
cloudfoundry-java-client-facade
- Rename Java packages to avoid classpath conflicts with the official CF Java client:
org.cloudfoundry.client.lib
->com.sap.cloudfoundry.client.facade
- Remove workaround for /v2/apps/:guid/summary issue (#176).
Previous artifacts:
<dependency>
<groupId>com.sap.cloud.lm.sl</groupId>
<artifactId>cf-java-client</artifactId>
<version>...</version>
</dependency>
<dependency>
<groupId>com.sap.cloud.lm.sl</groupId>
<artifactId>cloudfoundry-client-lib</artifactId>
<version>...</version>
</dependency>
New artifact:
<dependency>
<groupId>com.sap.cloud.lm.sl</groupId>
<artifactId>cloudfoundry-client-facade</artifactId>
<version>...</version>
</dependency>