All Versions
59
Latest Version
Avg Release Cycle
43 days
Latest Release
1143 days ago

Changelog History
Page 5

  • v8.2.0 Changes

    April 29, 2016
    • Bravado compliant to Fido 3.0.0
    • โฌ‡๏ธ Dropped use of concurrent futures in favor of crochet EventualResult
    • โ†ช Workaround for bypassing a unicode bug in python requests < 2.8.1
  • v8.1.2 Changes

    April 18, 2016
    • Don't unnecessarily constrain the version of twisted when not using python 2.6
  • v8.1.1 Changes

    April 13, 2016
    • โœ‚ Removed logic to build multipart forms. Using python 'requests' instead to build the entire http request.
  • v8.1.0 Changes

    April 04, 2016
    • ๐Ÿ‘Œ Support for YAML Swagger specs - PR #198
    • โœ‚ Remove pytest-mock dependency from requirements-dev.txt. No longer used and it was breaking the build.
    • Requires bravado-core >= 4.2.2
    • ๐Ÿ›  Fix unit test for default values getting sent in the request
  • v8.0.1 Changes

    December 02, 2015
    • ๐Ÿ‘ Require twisted < 15.5.0 since Python 2.6 support was dropped
  • v8.0.0 Changes

    November 25, 2015
    • ๐Ÿ‘Œ Support for recursive $refs
    • ๐Ÿ‘Œ Support for remote $refs e.g. Swagger 2.0 specs that span multiple json files
    • ๐Ÿ‘€ Requires bravado-core 4.0.0 which is not backwards compatible (See its CHANGELOG <http://bravado-core.readthedocs.org/en/latest/changelog.html>_)
    • ๐Ÿ‘€ Transitively requires swagger-spec-validator 2.0.2 which is not backwards compatible (See its CHANGELOG <http://swagger-spec-validator.readthedocs.org/en/latest/changelog.html>_)
  • v7.0.0 Changes

    October 23, 2015
    • Support per-request response_callbacks_ to enable SwaggerClient decorators to instrument an IncomingResponse post-receive. This is a non-backwards compatible change iff you have implemented a custom HttpClient. Consult the changes in signature to HttpClient.request() and HttpFuture's constructor.
    • Config option also_return_response is supported on a per-request basis.

    .. _response_callbacks: configuration.html#per-request-configuration

  • v6.1.1 Changes

    October 19, 2015
    • ๐Ÿ›  Fix IncomingResponse subclasses to provide access to the http headers.
    • Requires bravado-core >= 3.1.0
  • v6.1.0 Changes

    October 19, 2015
    • Clients can now access the HTTP response from a service call to access things like headers and status code. See Advanced Usage_

    .. _Advanced Usage: advanced.html#getting-access-to-the-http-response

  • v6.0.0 Changes

    October 12, 2015
    • ๐Ÿ‘‰ User-defined formats are no longer global. The registration mechanism has changed and is now done via configuration. See Configuration_

    ๐Ÿ”ง .. _Configuration: configuration.html