Skip to content

Releases: SAP/cf-java-client-sap

2.1.1

05 Nov 15:38
Compare
Choose a tag to compare
  • WebClient instances created by RestUtil will now be able to handle bigger response bodies (up to 1 MB).

2.1.0

05 Nov 15:29
Compare
Choose a tag to compare
  • 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

19 Oct 09:03
Compare
Choose a tag to compare
  • Change Maven artifact ID to something consistent with the official CF Java client: cloudfoundry-client-facade
    Note: The README.md was updated after the release with (f3873a9).

2.0.0

19 Oct 08:58
Compare
Choose a tag to compare

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>