Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More, but more subdued, rampaging for next release #3064

Merged
merged 11 commits into from
Apr 19, 2020
Merged

Commits on Apr 19, 2020

  1. mispec: don't use %f

    The additional reporting, while nice, prevents the use of mispec on
    integer-only builds
    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    5552fdb View commit details
    Browse the repository at this point in the history
  2. mispec: don't use uart.write

    Prefer print everywhere.
    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    1c8dd6a View commit details
    Browse the repository at this point in the history
  3. mqtt: remove dead store

    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    fe9f2d6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0daef0a View commit details
    Browse the repository at this point in the history
  5. lua_examples/lfs/HTTP_OTA: move :connect() after :on()

    IMHO, it's generally good style to register the callbacks first.
    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    132dccd View commit details
    Browse the repository at this point in the history
  6. file: raise error on .on() with non-function/nil

    Seems more polite than quietly accepting other types as nil.
    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    c79ba4e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    810d60d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    627bd5d View commit details
    Browse the repository at this point in the history
  9. net.dns: don't calloc a single int

    Removes yet another unchecked allocation point in our C libraries.
    
    While here, fix potential reference leaks on error paths
    
    Also while here, remove some stale documentation.  There can be as many
    DNS requests in flight as LwIP has room for in its table
    (DNS_TABLE_SIZE, which defaults to 4).
    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    766ab59 View commit details
    Browse the repository at this point in the history
  10. tls: fix new verification API

    Because the old API was inactive, we were setting
    MBEDTLS_SSL_VERIFY_NONE even after we'd parsed the certificate.
    
    tls tests now include a deliberate certificate mismatch; this was
    discovered by moving the mqtt tests over to the new API.
    nwf committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    bd7695f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    04ab7d7 View commit details
    Browse the repository at this point in the history