Skip to content

Commit 763e736

Browse files
authored
chore: Bump version to pre.8 (RC) and update changelog (#1913)
1 parent a8d2ba6 commit 763e736

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

com.unity.netcode.gameobjects/CHANGELOG.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com).
8-
## Unreleased
98

10-
### Added
9+
## [1.0.0-pre.8] - 2022-04-27
1110

1211
### Changed
1312

1413
- `unmanaged` structs are no longer universally accepted as RPC parameters because some structs (i.e., structs with pointers in them, such as `NativeList<T>`) can't be supported by the default memcpy struct serializer. Structs that are intended to be serialized across the network must add `INetworkSerializeByMemcpy` to the interface list (i.e., `struct Foo : INetworkSerializeByMemcpy`). This interface is empty and just serves to mark the struct as compatible with memcpy serialization. For external structs you can't edit, you can pass them to RPCs by wrapping them in `ForceNetworkSerializeByMemcpy<T>`. (#1901)
1514

1615
### Removed
16+
- Removed `SIPTransport` (#1870)
1717

1818
- Removed `ClientNetworkTransform` from the package samples and moved to Boss Room's Utilities package which can be found [here](https://github.com/Unity-Technologies/com.unity.multiplayer.samples.coop/blob/main/Packages/com.unity.multiplayer.samples.coop/Utilities/Net/ClientAuthority/ClientNetworkTransform.cs).
1919

@@ -24,13 +24,6 @@ Additional documentation and release notes are available at [Multiplayer Documen
2424
- Fixed issue during client synchronization if 'ValidateSceneBeforeLoading' returned false it would halt the client synchronization process resulting in a client that was approved but not synchronized or fully connected with the server. (#1883)
2525
- Fixed an issue where UNetTransport.StartServer would return success even if the underlying transport failed to start (#854)
2626
- Passing generic types to RPCs no longer causes a native crash (#1901)
27-
28-
## [Unreleased]
29-
30-
### Removed
31-
- Removed `SIPTransport` (#1870)
32-
33-
### Fixed
3427
- Fixed an issue where calling `Shutdown` on a `NetworkManager` that was already shut down would cause an immediate shutdown the next time it was started (basically the fix makes `Shutdown` idempotent). (#1877)
3528

3629
## [1.0.0-pre.7] - 2022-04-06
@@ -79,8 +72,6 @@ Additional documentation and release notes are available at [Multiplayer Documen
7972
- NetworkAnimator now properly synchrhonizes all animation layers as well as runtime-adjusted weighting between them (#1765)
8073
- Added first set of tests for NetworkAnimator - parameter syncing, trigger set / reset, override network animator (#1735)
8174

82-
### Changed
83-
8475
### Fixed
8576
- Fixed an issue where sometimes the first client to connect to the server could see messages from the server as coming from itself. (#1683)
8677
- Fixed an issue where clients seemed to be able to send messages to ClientId 1, but these messages would actually still go to the server (id 0) instead of that client. (#1683)

com.unity.netcode.gameobjects/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "com.unity.netcode.gameobjects",
33
"displayName": "Netcode for GameObjects",
44
"description": "Netcode for GameObjects is a high-level netcode SDK that provides networking capabilities to GameObject/MonoBehaviour workflows within Unity and sits on top of underlying transport layer.",
5-
"version": "1.0.0-pre.7",
5+
"version": "1.0.0-pre.8",
66
"unity": "2020.3",
77
"dependencies": {
88
"com.unity.nuget.mono-cecil": "1.10.1",

0 commit comments

Comments
 (0)