Skip to content

Commit e80b870

Browse files
committed
Add changelog for EOS 2026.04.08
1 parent 5059db0 commit e80b870

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import NodeRef from "@site/src/components/NodeRef";
2+
3+
### 2026.04.08
4+
5+
:::danger Breaking Change
6+
The "Recent" and "Blocked" enumeration values on "Redpoint Friend List Entry Invite Status" for friend list binding have been removed, and replaced with separate "Is Blocked" and "Is Recent Player" boolean values on friend list entries. This is because friends and pending inbound/outbound invites can _also_ be recent players or blocked players, independently of their invite status.
7+
8+
If you are using [friend list widget binding](/docs/framework/bind_friends_list.mdx) and querying the invite status of friend list entries, you will need to update your blueprints.
9+
:::
10+
11+
This release simplifies dedicated server configuration and fixes several issues:
12+
13+
- Dedicated servers no longer require a public/private key pair to be generated in Project Settings. Instead, dedicated servers now generate a unique encryption key when they first start. The public key is automatically stored as a session attribute and included in the connection string for clients.
14+
- You must get the connection string for dedicated servers by calling [`GetResolvedConnectString` on the session search result](/docs/setup/networking/server_travel.mdx#connecting-to-the-game-server), as this includes the `?PublicKey=` option necessary for connecting to the dedicated server.
15+
- Android now uses the new Credential Manager library for signing into Google Play, to mitigate issues on some devices when using the older authentication library.
16+
- Fixed an issue where friends would not appear in the "recent players" or "blocked players" section of [bound UMG widgets](/docs/framework/bind_friends_list.mdx). This required the breaking change outlined above, and recent and blocked states are now provided separately to the invite status of friend list entries.
17+
- Fixed an issue where changes to parties would never complete, when multiple party operations are started immediately in response to party events.
18+
- Fixed an issue when accepting a friend request from someone who already has the other player as a friend, or who has removed that player from their friends list since they sent the original invite.
19+
- Fixed an issue in the latest Xcode where Clang 21 would error on `-Wallocator-wrappers` when compiling for macOS.
20+
- Fixed an issue where proximity voice chat could prevent play-in-editor from starting correctly.
21+
- Fixed an issue where the game would crash if attempting to display Steam friends in the cross-platform friends list, where those Steam friends have not yet played the game.
22+
- Reduced log severity of presence logs when the game is exiting.

docs/changelog/2026/_index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
import R0408 from "./04.08/_index.mdx";
12
import R0317 from "./03.17/_index.mdx";
23
import R0306 from "./03.06/_index.mdx";
34
import R0221 from "./02.21/_index.mdx";
45
import R0212 from "./02.12/_index.mdx";
56
import R0119 from "./01.19/_index.mdx";
67

8+
<R0408 />
79
<R0317 />
810
<R0306 />
911
<R0221 />

0 commit comments

Comments
 (0)