1. 19 Apr, 2024 8 commits
  2. 18 Apr, 2024 2 commits
    • Me No Dev's avatar
      IDF release/v5.1 (#9528) · 4070a879
      Me No Dev authored
      * fix(ble): rename esp_ble_gap_ext_adv_report_t
      
      * IDF release/v5.1 d23b7a0361
      
      * IDF release/v5.1 c432c692fa
      4070a879
    • Jan Procházka's avatar
      [CI] Get sizes from push workflow, updated build scripts (#9524) · 0219c213
      Jan Procházka authored
      * Remove event-file from External libs wf
      
      * Add compilation log to the build scripts
      
      * Add 2nd compilation run on base branch
      
      * Fix sketch_utils script
      
      * Update on-push.sh
      
      * Update Push workflow
      
      * Upload pr number in lib.yml
      
      * Fix PR number in publish sizes
      
      * Update external libs results with pr num file
      0219c213
  3. 17 Apr, 2024 3 commits
  4. 15 Apr, 2024 8 commits
  5. 12 Apr, 2024 2 commits
    • Me No Dev's avatar
      IDF release/v5.1 (#9498) · 49b94644
      Me No Dev authored
      * fix(ble): rename esp_ble_gap_ext_adv_report_t
      
      * IDF release/v5.1 d23b7a0361
      49b94644
    • Sly Gryphon's avatar
      fix(dns): Fix IPv6-only network, by checking IPv6 first if you have public address (#9443) · 3a0dd1cb
      Sly Gryphon authored
      Work around because AF_UNSPEC does not check available addresses when
      determining result.
      
      If you have a global scope IPv6 address, then first check for IPv6 DNS result;
      if you don't have an IPv6, or there is no IPv6 result, then check IPv4.
      
      This allows IPv6-only networks to connect to dual-stack destinations, as they
      will get the IPv6 address (rather than the unusable IPv4).
      
      It also means a dual-stack host to a dual-stack destination will preference
      IPv6.
      
      There is no effect if you are on an IPv4-only network, or it is an IPv4-only
      destination.
      3a0dd1cb
  6. 11 Apr, 2024 2 commits
  7. 10 Apr, 2024 4 commits
  8. 09 Apr, 2024 2 commits
  9. 08 Apr, 2024 2 commits
  10. 06 Apr, 2024 1 commit
  11. 05 Apr, 2024 2 commits
  12. 04 Apr, 2024 2 commits
  13. 03 Apr, 2024 2 commits
    • Lucas Saavedra Vaz's avatar
      dcc30766
    • Sly Gryphon's avatar
      Network refactoring - fix some IPv6 DNS issues (#9439) · 64235dc6
      Sly Gryphon authored
      * fix(dns): Handle IPv6 DNS server address results
      
      If the result from esp_netif_get_dns_info is an IPv6 address, then parse to an IPAddress.
      
      * fix(dns): Use getaddrinfo for DNS, to fix some IPv6 issues
      
      Replace hostbyname with getaddrinfo for better IPv6 support. The API is also
      simpler, as it has no callbacks (they are handled internally). Allows
      dual-stack networks to connect to IPv6-only destinations.
      
      Still does not work for IPv6-only networks, as IPv6 DNS is not enabled in the
      pre-built ESP-IDF libraries.
      64235dc6