Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [7.2.0](https://github.com/GetStream/stream-sdk-java/compare/7.1.0...7.2.0) (2026-04-30)

## [7.1.0](https://github.com/GetStream/stream-sdk-java/compare/7.0.0...7.1.0) (2026-04-10)


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=7.1.0
version=7.2.0
11 changes: 8 additions & 3 deletions src/test/java/io/getstream/FeedIntegrationTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -1626,24 +1626,29 @@ void test39_FollowRequestsWithFollowersVisibility() throws Exception {
"visibility-follower-a-" + RandomStringUtils.randomAlphanumeric(8);
String rejectedFollowerUserId =
"visibility-follower-r-" + RandomStringUtils.randomAlphanumeric(8);
String uniqueNameSuffix = RandomStringUtils.randomAlphanumeric(8);

// snippet-start: JavaFollowersVisibilityFollowRequests
Map<String, UserRequest> users = new HashMap<>();
users.put(
ownerUserId,
UserRequest.builder().id(ownerUserId).name("Visibility Owner").role("user").build());
UserRequest.builder()
.id(ownerUserId)
.name("Visibility Owner " + uniqueNameSuffix)
.role("user")
.build());
users.put(
acceptedFollowerUserId,
UserRequest.builder()
.id(acceptedFollowerUserId)
.name("Accepted Follower")
.name("Accepted Follower " + uniqueNameSuffix)
.role("user")
.build());
users.put(
rejectedFollowerUserId,
UserRequest.builder()
.id(rejectedFollowerUserId)
.name("Rejected Follower")
.name("Rejected Follower " + uniqueNameSuffix)
.role("user")
.build());
client.updateUsers(UpdateUsersRequest.builder().users(users).build()).execute();
Expand Down
Loading