- Added a dependency on
System.IO.Hashing
. - Added
SteamKit2.WebUI.Internal
protobufs. - Added
ChatMode
,UIMode
, andIsSteamDeck
toLogOnDetails
. - Added
DepotManifest.Serialize
. - Added
SteamClient.WaitForCallbackAsync
andCallbackManager.RunWaitCallbackAsync
. - Added
cdnAuthToken
parameter toCDN.Client
method for country specific servers that still require it. - Added
SteamAuthTicket
handler. - Added
WebAPI.AsyncInterface.CallAsync
overload that does not require specifyingHttpMethod.Get
. - Added WebSocket as a default enabled protocol, switched to using GetCMListForConnect API.
- Added support for parsing binary keyvalues that have an alternate end byte.
SmartCMServerList
will now attempt to refresh itself over the WebAPI if it was last refreshed over 7 days ago.- Updated Steam enums and protobufs.
- Various performance and memory optimizations.
- Linux machines will now fetch MAC address for the machine id.
BREAKING CHANGES
- SteamKit now targets .NET 8.
SteamUnifiedMessages
are now reflection-free with a new API.- See updated
013_UnifiedMessages
sample for new usage. - Requests are now generated functions like so:
UnifiedMessages.CreateService<Player>().GetGameBadgeLevels( req );
- If you subscribed to
ServiceMethodResponse
, useCallbackManager.SubscribeServiceResponse
instead. - If you subscribed to
ServiceMethodNotification
,CallbackManager.SubscribeServiceNotification
instead. - Response messages are now typed under
Body
property, callingGetDeserializedResponse
was removed. - For incoming messages to be processed and decoded, the service must be registered with
CreateService
first,
which is done for you by using the new subscribe functions on the callback manager.
- See updated
SteamClient
callback queue is now backed byBufferBlock
:FreeLastCallback
andGetAllCallbacks
have been removed.- Calling
GetCallback
andWaitForCallback
now always dequeues a callback, there is no more peek and "freeLast". CallbackManager.RunCallbacks
now returns bool indicating whether a callback was handled.
DepotManifest.ChunkData.Checksum
is now auint
instead ofbyte[4]
.DepotManifest.SaveToFile
now returns void.CDN.Client.DownloadDepotChunkAsync
now requires a mandatory destination buffer.- Returns the number of written bytes to the destination.
- You can rent a buffer like
ArrayPool<byte>.Shared.Rent((int)chunk.UncompressedLength)
DepotChunk
is now a static class that only contains aProcess
method.
- Moved
SteamApps.GetCDNAuthToken
toSteamContent.GetCDNAuthToken
due to a Steam change. IServerListProvider
has a new propertyLastServerListRefresh
which should return an UTC DateTime
last time the server list was refreshed.- Removed obsolete methods and enum values.
- Removed Artifact and Underlords generated protobufs.
- Removed
SteamTrading
handler. - Removed
RSACrypto
class. - Removed all methods from
CryptoHelper
except forSymmetricDecrypt
. - Removed
ICallbackMsg
interface, simply useCallbackMsg
instead. - Removed
CMListCallback
as it was removed by Steam.