-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.3.2] - 2023-03-09 ### Fixes * Fixed issue where UWP Xbox builds were crashing because the split buffer fix was not including UWP defines. * Fixed an issue where `IPCNetworkInterface` would perform useless work for each packet received. * Fixed an issue where `ReliableSequencedPipelineStage` could end up duplicating packets when sending reliable packets while the send queue is full.
- Loading branch information
Unity Technologies
committed
Mar 9, 2023
1 parent
7854e5e
commit 620351c
Showing
8 changed files
with
136 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "com.unity.transport", | ||
"displayName": "Unity Transport", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"unity": "2020.3", | ||
"unityRelease": "0f1", | ||
"description": "Unity network transport layer - the low-level interface for sending UDP data", | ||
|
@@ -11,16 +11,16 @@ | |
"com.unity.mathematics": "1.2.6" | ||
}, | ||
"_upm": { | ||
"changelog": "### Changes\n* It is now possible to set a window size of up to 64 for `ReliableSequencedPipelineStage` (use `NetworkSettings.WithReliableStageParameters` to modify the value). Doing so increases the packet header size by 4 bytes though, so the default value remains at 32.\n\n### Fixes\n* Fixed an issue where if one end of a reliable pipeline stopped sending any traffic and its latest ACK message was lost, then the other end would stall.\n* Fixed a crash when using DTLS if an update was delayed for long enough that both the disconnection and heartbeat timeouts expire." | ||
"changelog": "### Fixes\n* Fixed issue where UWP Xbox builds were crashing because the split buffer fix was not including UWP defines.\n* Fixed an issue where `IPCNetworkInterface` would perform useless work for each packet received.\n* Fixed an issue where `ReliableSequencedPipelineStage` could end up duplicating packets when sending reliable packets while the send queue is full." | ||
}, | ||
"upmCi": { | ||
"footprint": "d5689bea7cfc3808f75e8306def417c52e04f307" | ||
"footprint": "98182eeaea2fd3b091f4a2b16b9c9471598db23b" | ||
}, | ||
"documentationUrl": "https://docs.unity3d.com/Packages/[email protected]/manual/index.html", | ||
"repository": { | ||
"url": "https://github.cds.internal.unity3d.com/unity/com.unity.transport.git", | ||
"type": "git", | ||
"revision": "80ac568c7067b2af506786cefbe8a71e4025d032" | ||
"revision": "21ae74bd7af3124f937100ff2cf8d2130fcd9307" | ||
}, | ||
"samples": [ | ||
{ | ||
|