Skip to content

Latest commit

 

History

History
69 lines (46 loc) · 2.28 KB

File metadata and controls

69 lines (46 loc) · 2.28 KB

0.7.0

  • Raise MSRV to 1.88.0. See PR 6273.

0.6.0

  • Change Event::NewExternalAddr and Event::ExpiredExternalAddr from tuple variants to struct variants that include both local and external addresses. This allows users to correlate which local listen address was mapped to which external address.

    • Event::NewExternalAddr now contains local_addr and external_addr fields
    • Event::ExpiredExternalAddr now contains local_addr and external_addr fields See PR 6121.
  • Skip port mapping when an active port mapping is present. Previously, the behavior would skip creating new mappings if any mapping (active or inactive or pending) existed for the same port. Now it correctly only checks active mappings on the gateway. See PR 6127.

  • Fix excessive retry attempts for failed port mappings by implementing exponential backoff. Failed mappings now retry up to 5 times with increasing delays (30s to 480s) before giving up. This prevents continuous retry loops. See PR 6128.

0.5.0

  • update igd-next to 0.16.1 See PR 5944.

  • Fix panic during a shutdown process. See PR 5998.

0.4.0

  • update igd-next to 0.15.1. See PR XXXX.

0.3.0

0.2.2

  • Fix a panic caused when upnp::Gateway is dropped and its events queue receiver is no longer available. See PR 5273.

0.2.1

  • Fix a panic caused when dropping upnp::Behaviour such as when used together with Toggle. See PR 5096.

0.2.0

0.1.1

  • Fix high CPU usage due to repeated generation of failure events. See PR 4569.

  • Fix port mapping protocol used for a UDP multiaddress. See PR 4542.

0.1.0

  • Initial version