All Versions
180
Latest Version
Avg Release Cycle
32 days
Latest Release
692 days ago

Changelog History
Page 16

  • v0.3.14 Changes

    April 18, 2015

    ๐Ÿ› Bug Fixes

    • http: Adjust httparse Request and Response lifetimes. (76550fdb)
  • v0.3.13 Changes

    April 17, 2015

    ๐Ÿ› Bug Fixes

    • server: JoinHandle type parameter (c694b138)

    ๐Ÿ”‹ Features

    • debug: add Debug impls for StatusClass, Server, and Listening (0fb92ee7)
  • v0.3.12 Changes

    April 15, 2015

    ๐Ÿ› Bug Fixes

    • server:
      • handle keep-alive closing (d9187713, closes #437)
      • join on thread when Listening drops (68d4d63c, closes #447)
      • Use thread::spawn instead of thread::scoped. (e8649567)

    ๐Ÿ”‹ Features

    • http: Implement Debug for HttpReader/Writer. (2f606c88)
    • ๐ŸŒฒ log: clean up logging (4f09b002)
    • net: make HttpStream implement Debug (7b7f9c25)
  • v0.3.11 Changes

    April 15, 2015

    ๐Ÿ› Bug Fixes

    • headers: Content-Encoding needs a hyphen. (ca2815ef)

    ๐Ÿ”‹ Features

    • client: remove generic parameter for Connector (139a51f1, closes #379)

    ๐Ÿ’ฅ Breaking Changes

    • AccessControlAllowHeaders and AccessControlRequestHeaders values are case insensitive now. AccessControlAllowOrigin variants are now Any and Value to match the other headers.

    (94f38950)

    • If-Match, If-None-Match and Vary item variant name changed to Items

    (38d297b1)

    • Etag header field is now ETag header field

    (4434ea6a)

    • 0๏ธโƒฃ For people using the default HttpConnector and Client, everything should continue to just work. If the Client has been used with a generic parameter, it should be removed.

      However, there were some breaking changes to the internals of NetworkConnectors. Specifically, they no longer return a NetworkStream, but instead a Into>. All implementations of NetworkStream should continue to just work, however.

      Possible breakages could come from the stricter usage of Send throughout the Client API.

    (139a51f1)

  • v0.3.10 Changes

    April 06, 2015

    ๐Ÿ› Bug Fixes

    • README: Update to compile example against Rust beta (341f19d3)
  • v0.3.9 Changes

    April 03, 2015

    ๐Ÿ› Bug Fixes

    • headers: Add CowStr as a temporary hack to build on beta. (8e065563)
  • v0.3.8 Changes

    April 02, 2015

    ๐Ÿ› Bug Fixes

    • rustup: update to rust beta (0f5858f3)

    ๐Ÿ’ฅ Breaking Changes

    • Removed impl_header!() and impl_list_header!() macros, ๐Ÿ‘‰ use new header!() macro.

    (262c450f)

  • v0.3.7 Changes

    March 31, 2015

    ๐Ÿ› Bug Fixes

    • buffer: zero out new capacity when buffer grows (cfdabd70)

    ๐Ÿ”‹ Features

    • entitytag: Add EntityTag comparison, make EntityTag safe to use (9c21f7f9)
  • v0.3.6 Changes

    March 30, 2015

    ๐Ÿ› Bug Fixes

    • buffer: get_buf to not return consumed part of buffer (04e3b565, closes #406)
    • rustup: get rid of slice pattern, add Reflect bounds (c9f2c841)
  • v0.3.5 Changes

    March 28, 2015

    ๐Ÿ› Bug Fixes

    • http: read more before triggering TooLargeError (cb59f609, closes #389)