Skip to content

Connectivity 6.1.0

Compare
Choose a tag to compare
@rwbutler rwbutler released this 12 Sep 22:05
· 17 commits to main since this release
fb94c54

[6.1.0] - 2023-09-12

Added

  • Connectivity property connectivityURLs: [URL] swapped to connectivityURLRequests: [URLRequest]. The framework now uses URLRequest primarily throughout. Suggestion by @brunomiguens - #67.
  • URLRequest objects used for connectivity checks may not be configured via configuration initialiser or via the fluent configuration API e.g.
    ConnectivityConfiguration()
    .configureConnectivity(urlRequests: [
    URLRequest(...)
    ])
  • URL objects may still be used rather than URLRequesd objects via the fluent configuration API only e.g.
    ConnectivityConfiguration()
    .configureConnectivity(urls: [
    URL(...)
    ])
     
    

Changed

  • Changed the default framework used to monitor network interface changes to .network. To continue using the System Configuration (Apple's Reachability) framework for monitoring network interface changes set the framework property to .systemConfiguration.
  • Fixed a typo in ConnectivityConfiguration. validationMode was incorrectly spelt as validatioMode.