Skip to content

Releases: Henauxg/bevy_quinnet

v0.13.0

02 Dec 17:47
Compare
Choose a tag to compare

Version 0.13.0 (2024-12-02)

  • Renamed client Connection to ClientSideConnection and server ClientConnection to ServerSideConnection
  • Added get_connection and get_connection_mut on Endpoint to retrieve a ServerSideConnection
  • Added connection_stats to ServerSideConnection
  • Renamed connection_stats on Endpoint to get_connection_stats
  • Added received_bytes_count, clear_received_bytes_count, sent_bytes_count and clear_sent_bytes_count to both ClientSideConnection and ServerSideConnection
  • Changed try_send_payload, try_send_payload_on, send_payload_on, send_payload, send_message, send_message_on, try_send_message, try_send_message_on on ClientSideConnection to take &mut self
  • Changed ..._send_message_..., ..._send_group_message_..., ..._broadcast_... methods on Endpoint to take &mut self

v0.12.0

01 Dec 10:16
Compare
Choose a tag to compare

Version 0.12.0 (2024-12-01)

v0.11.0

30 Nov 22:45
Compare
Choose a tag to compare

Version 0.11.0 (2024-11-30)

  • Updated rustls to 0.23 and quinn to 0.11 (thanks to Cyannide, PR #28)
  • Changed doc & examples to use IPv6 by default (thanks to MyZeD, PR #29)
  • Changed some errors logs to be warnnings
  • Fixed: channels send tasks won't try to flush anymore if we know that the peer connection is closed/lost: less warnings logs emitted.

v0.10.0

09 Sep 09:32
Compare
Choose a tag to compare

Version 0.10.0 (2024-09-09)

  • Add client & server features.

v0.9.0

05 Jul 15:04
Compare
Choose a tag to compare

Version 0.9.0 (2024-07-05)

  • Update to use Bevy 0.14

v0.8.0

12 May 21:42
Compare
Choose a tag to compare

Version 0.8.0 (2024-05-12)

  • Added a new crate bevy_replicon_quinnet with tests and examples, providing an integration of bevy_quinnet as a replicon back-end.
  • Added a shared-client-id cargo feature: server sends the client id to the client, client wait for it before being “connected”
  • Added #![warn(missing_docs)]
  • Channels:
    • Changed ChannelId to be a u8
    • Some channels can be preconfigured to be opened on a client or server connection by using ChannelsConfiguration
    • Channels payloads now contain the channel_id
    • When receiving a message, the message's channel_id is now available
    • You can now have only up to 256 channels opened simultaneously
    • You can now have more than 1 Unreliable or UnorderedReliable channel
  • Client:
    • Renamed Client to QuinnetClient
    • In QuinnetClient::Connection
      • Changed disconnect function to be pub (was previously only accessible through Client::close_connection)
      • Added reconnect function
      • Added a new bevy event ConnectionFailedEvent raised when a connection fails
        • Added a QuinnetConnectionError type
      • Renamed ConnectionId to ConnectionLocalId
      • State:
        • Removed is_connected
        • Renamed internal ConnectionState to InternalConnectionState
        • Added a new ConnectionState
        • Added state function
    • Changed update_sync_client system to be pub
    • Added client_connecting, client_connected, client_just_connected and client_just_disconnected ergonomic system conditions
  • Server:
    • Renamed Server to QuinnetServer
    • Added Debug, Copy, Clone traits to the server's bevy events
    • Changed update_sync_server system to be pub
    • Added server_listening, server_just_opened and server_just_closed ergonomic system conditions
    • Removed unnecessary Clone requirement from broadcast methods
  • Tests:
    • Updated to use the new channel API
    • Added a reconnection test
  • Moved QuinnetError to shared::error

v0.7.0

17 Feb 23:23
Compare
Choose a tag to compare

Version 0.7.0 (2024-02-18)

  • Update plugins, tests & examples to use Bevy 0.13
  • Update Tokio to 1.36
  • Update Bytes to 1.5
  • Update ring to 0.17.7
  • Update rcgen to 0.12.1
  • Fix breakout example UI (by protofarer)
  • Fix minor code documentation

v0.6.0

04 Nov 20:48
Compare
Choose a tag to compare

Version 0.6.0 (2023-11-04)

  • Update plugins, tests & examples to use Bevy 0.12

v0.5.0

11 Jul 17:50
Compare
Choose a tag to compare

Version 0.5.0 (2023-07-11)

  • Update plugins, tests & examples to use Bevy 0.11
  • Update quinn & rustls
  • Update other dependencies: tokio, bytes, rcgen
  • [example:breakout] Reduce the collision sound volume

v0.4.0

07 Mar 14:56
Compare
Choose a tag to compare

Version 0.4.0 (2023-03-07)

  • Update Bevy to 0.10
  • [client]: Add missing try_send_message_on and try_send_payload_on in connection
  • Internal improvements to channels and server's send_group_message
  • AsyncRuntime is now pub
  • [client & server] In order to have more control over plugin initialization and only do the strict necessary, which is registering systems and events in the Bevy schedule, .add_plugin(QuinnetClient/ServerPlugin { initialize_later: true }) can now be used, which will not create the Client/Server Resource immediately.
    • A command such as commands.init_resource::<Client/Server>(); can be used later on when needed.
    • Client & server plugins systems are scheduled to only run if their respective resource exists.
    • Their respective Resource can be removed through a command at runtime.
  • [client]: Fix IPv6 handling.
    • Remove ConnectionConfiguration::new
    • Add ConnectionConfiguration::from_strings, ConnectionConfiguration::from_ips and ConnectionConfiguration::from_addrs
  • [server]: Fix IPv6 handling.
    • Rename ServerConfigurationData to ServerConfiguration.
    • Remove ServerConfiguration::new
    • Add ServerConfiguration::from_string, ServerConfiguration::from_ip and ServerConfiguration::from_addr
    • Add server_hostname to CertificateRetrievalMode::GenerateSelfSigned and CertificateRetrievalMode::LoadFromFileOrGenerateSelfSigned