Mirror

#1 Open Source Unity Networking Library

MIT License

Stars
4.9K
Committers
123

Bot releases are visible (Hide)

Mirror - v42.2.1

Published by github-actions[bot] over 3 years ago

42.2.1 (2021-06-22)

Bug Fixes

  • Don't call FinishLoadScene when customHandling (#2794) (92334ba)
Mirror - v42.2.0

Published by github-actions[bot] over 3 years ago

42.2.0 (2021-06-20)

Bug Fixes

  • Batcher 'MaxBatchSize' changed to 'Threshold' to support larger messages too. They simply become large batches, while smaller ones are still fitted into 'Threshold'. fixes data race where larger messages would be sent immediately, while smaller ones would be sent at the end of the frame. prepares for timestamp batching which assumes a timestamp prefix for ALL batches (including larger ones, which previously would be treated as not a batch) (#2787) (2a563b9)
Mirror - v42.1.0

Published by github-actions[bot] over 3 years ago

42.1.0 (2021-06-16)

Mirror - v42.0.2

Published by github-actions[bot] over 3 years ago

42.0.2 (2021-06-15)

Bug Fixes

Mirror - v42.0.1

Published by github-actions[bot] over 3 years ago

42.0.1 (2021-06-15)

Bug Fixes

  • NetworkClient.Shutdown now clears OnDis/ConnectedEvents (e827c6c)
  • NetworkServer.Shutdown now clears OnDis/ConnectedEvents (68a4a06)
Mirror - v42.0.0

Published by github-actions[bot] over 3 years ago

42.0.0 (2021-06-15)

Bug Fixes

  • #2651 scene changing with batching would cause errors because we wouldn't stop the batch processing after a scene message (#2774) (c5e8614)
  • #2744 KcpTransport statistics changed to long to avoid int overflows (6eea1e7)
  • #2778 SpawnObjects SetActive(true) would not initialize NetworkIdentity if the parent is inactive because Unity would not call Awake() (2c2581f)
  • clientAuthority access (#2779) (d2ee497)
  • NetworkClient.OnTransportData header size is now checked before every message unpacking again like before batching. (e6b379f)
  • NetworkServer.OnTransportData header size is now checked before every message unpacking again like before batching. (bdb410e)

Performance Improvements

Mirror - v41.0.0

Published by github-actions[bot] over 3 years ago

41.0.0 (2021-06-09)

Mirror - v40.0.10

Published by github-actions[bot] over 3 years ago

40.0.10 (2021-06-08)

Performance Improvements

  • kcp2k V1.11 - where-allocation - 25x reduction in Socket.SendTo/ReceiveFrom allocations (#2759) (f84c012)
Mirror - v40.0.9

Published by github-actions[bot] over 3 years ago

40.0.9 (2021-06-02)

Bug Fixes

Mirror - v40.0.8

Published by github-actions[bot] over 3 years ago

40.0.8 (2021-06-02)

Bug Fixes

Mirror - v40.0.7

Published by github-actions[bot] over 3 years ago

40.0.7 (2021-05-29)

Bug Fixes

  • Fixed PlauerUI Text in Basic Example (9fc5e0c)
Mirror - v40.0.6

Published by github-actions[bot] over 3 years ago

40.0.6 (2021-05-28)

Bug Fixes

  • NetworkIdentity default execution order set to -1. guarantees Awake() initializing all NetworkBehaviours before their Awake is called. [imer, FakeByte] (3efc917)
Mirror - v40.0.5

Published by github-actions[bot] over 3 years ago

40.0.5 (2021-05-28)

Bug Fixes

Mirror - v40.0.4

Published by github-actions[bot] over 3 years ago

40.0.4 (2021-05-27)

Bug Fixes

  • NetworkClient.Disconnect NullReferenceException if connection was null (e6b27cf)
Mirror - v40.0.3

Published by github-actions[bot] over 3 years ago

40.0.3 (2021-05-27)

Performance Improvements

  • NetworkServer.Broadcast serialization lookup removed. serializations are now cached and rebuilt in NetworkIdentity based on timestamp. (089e5bb)
Mirror - v40.0.2

Published by github-actions[bot] over 3 years ago

40.0.2 (2021-05-26)

Performance Improvements

  • Extensions.CopyTo foreach allocation removed (7af1156)
  • Pool initial capacity. allocates writers during initialization so we have fewer allocations in the first few frames (15b13c9)
Mirror - v40.0.1

Published by github-actions[bot] over 3 years ago

40.0.1 (2021-05-25)

Bug Fixes

  • Stop Discovery when client gets into Connected state (26a7a2f)
Mirror - v40.0.0

Published by github-actions[bot] over 3 years ago

40.0.0 (2021-05-24)

Mirror - v39.2.2

Published by github-actions[bot] over 3 years ago

39.2.2 (2021-05-23)

Bug Fixes

  • #2739: NetworkServer.Update now operates on a copy of connections so transports can call OnTransportDisconnected from within send. avoids 'collection can't be modified while iterating' exception (c815629)
Mirror - v39.2.1

Published by github-actions[bot] over 3 years ago

39.2.1 (2021-05-20)

Bug Fixes

  • fixing NetworkDiagnostics receive for batching (#2700) (aee7c82)