Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.07 KB

CHANGELOG.md

File metadata and controls

47 lines (31 loc) · 1.07 KB

Mockingjay Changelog

Master

Breaking

  • Responses now use a Download enum instead of an optional NSData. This means you must use the following API:

    .Success(response, .NoContent)
    .Success(response, .Content(data))

    Previously:

    .Success(response, nil)
    .Success(response, data)

Enhancements

  • Adds support for streaming stubbed response data.

    .Success(response, .StreamContent(data, inChunksOf: 1024))

1.2.1 (2016-05-10)

This release fixes a packaging problem in 1.2.0 where the CocoaPod's podspec for Mockingjay did not contain all the sources.

1.2.0 (2016-05-10)

Enhancements

  • Swift 2.2 support has been added.

Bug Fixes

  • Mockingjay will now add it's own protocol to NSURLSessionConfiguration default and ephemeral session configuration on load. This fixes problems when you create a session and then register a stub before we've added the Mockingjay protocol to NSURLSessionConfiguration.
    #50