All Versions
49
Latest Version
Avg Release Cycle
60 days
Latest Release
1284 days ago

Changelog History
Page 2

  • v5.0.0-beta.3 Changes

    May 17, 2019

    โž• Added

    • Ability to traverse json to any level when using SwiftyJSONDecodable.

    ๐Ÿ”„ Changed

    • ๐Ÿ‘Œ Improved response serializer behavior for cases where requests were stubbed using URLProtocol.
    • TRON 5 requires RxSwift 5 and SwiftyJSON 5
    • 0๏ธโƒฃ Core is now a default subspec for CocoaPods installation method. To use SwiftyJSON, add following to Podfile:
    pod 'TRON/SwiftyJSON'
    
  • v5.0.0-beta.2 Changes

    April 06, 2019

    ๐Ÿ”„ Changed

    • ErrorSerializable protocol changed to have non-optional initializer and to not accept serializedObject. It no longer can be used for additional object validation, but behavior should be more predictable and straightforward - ErrorSerializable should only be created if somebody (URL loading system, Alamofire or Model serialization) actually reported error.
    • codable is now a lazy stored property instead of computed property.
    • CodableSerializer API has been made open to allow easy customization in subclasses.
    • ๐Ÿ”ง NetworkLoggerPlugin now has a constructor that allows to easily configure it's behavior.

    ๐Ÿ’ฅ Breaking

    • Properties that worked with Alamofire.SessionManager have been renamed to session to be in line with Alamofire renaming of SessionManager to Session.

    โœ‚ Removed

    • 0๏ธโƒฃ TRON.defaultAlamofireManager() method. TRON initializer now uses Alamofire.Session.default as a replacement.
    • TRON.processingQueue property
  • v5.0.0-beta.1 Changes

    March 12, 2019

    TRON now requires:

    • Xcode 10
    • Swift 4 and higher
    • iOS/tvOS 10 and higher
    • watchOS 3 and higher
    • ๐ŸŽ macOS 10.12 and higher

    โž• Added

    • ๐Ÿ“š Complete documentation
    • TRONDataResponseSerializer and TRONDownloadResponseSerializer structs to encapsulate serialization of responses using closure.
    • โœ… All test suite now uses StubbingURLProtocol to stop tests from sending network requests. Closes #21.
    • โž• Additional JSONDecodable conformances have been added for arithmetic types such as Int8...Int64, UInt8...64.

    โœ‚ Removed

    • EmptyResponse type was replaced with Alamofire.Empty struct to not interfere with Alamofire.EmptyResponse protocol.
    • TRON.stubbingShouldBeSuccessful property since now each stub directly defines it's behavior instead of global setting
    • Conditional conformance of Array to JSONDecodable
    • Convenience download methods on CodableSerializer and JSONDecodableSerializer
    • AuthorizationRequirement enum. Please use Alamofire.RequestAdapter and Session.adapter property to adapt request, when additional headers are needed.
    • HeaderBuildable protocol and HeaderBuilder types. Please use BaseRequest.headers property of type Alamofire.HTTPHeaders directly.
    • ErrorHandlingDataResponseSerializerProtocol and ErrorHandlingDownloadResponseSerializer protocol. Now, ErrorModel on all requests conforms to ErrorSerializable protocol, that contains initializer that allows to create it directly.
    • ๐Ÿ“œ CodableDownloadParser and JSONDecodableDownloadParser, replacement class DownloadSerializer has been introduced, it allows to create a data model by implementing DownloadResponseSerializerProtocol
    • UploadAPIRequest.performMultipart method, because multipart upload is no longer a special case in Alamofire 5, please use UploadAPIRequest.perform instead.

    ๐Ÿ’ฅ Breaking

    • 0๏ธโƒฃ headers property of BaseRequest now contains HTTPHeaders type instead of [String: String]. Please note that along with HeaderBuilder removal TRON no longer sends 'Accept':'application/json' header by default.
    • APIError is changed to be able to accept SerializedObject and is now a class with nullable initializer. Also, DownloadAPIError type has been introduced for download errors, that do not have Data in them, but have fileURL instead.
    • ๐Ÿ”Œ Plugin methods that previously accepted APIError<ErrorModel> now accept ErrorModel directly. Added didSuccessfullyParseDownloadResponse and didReceiveDownloadResponse methods.
    • ๐Ÿ“œ All concrete implementations of DataResponseSerializerProtocol such as CodableParser and JSONDecodableParser now have only one generic argument - Model and are only parsing model type.
    • ๐Ÿšš JSONDecodableParser and CodableParser now have only one generic argument - Model, since ErrorModel is now moved to ErrorSerializable protocol, that does not depend on any particular serializer.
    • ๐Ÿ”Œ APIStub has been rewritten from scratch to allow injecting only results of network request(URLRequest, HTTPURLResponse, Data, Error and fileURL) as opposed to actual Model and errorModel as well as definition of successful/unsuccessful requests. APIStub now is been attached to Alamofire.Request when stubbing for this particular request has been enabled. Rewrite also allows plugin callbacks to be called more consistently for both stubbed and unstubbed cases.
    • ๐Ÿ”€ rxMultipartResult method on UploadRequest method was removed since UploadRequest for multipart requests in Alamofire 5 is now synchronous and now does not require special handling. You can now call rxResult replacement method instead.
  • v4.2.2 Changes

    April 08, 2019
    • Swift 4.2 version is now specified in podspec for users of CocoaPods 1.6.x.

    ๐Ÿš€ This is the last release that supports Xcode 9 and Swift 3.

  • v4.2.1 Changes

    May 03, 2018

    ๐Ÿ›  Fixed

    • ๐Ÿ”Œ UploadAPIRequest now calls didReceiveDataResponse plugin methods when sending multipart-form requests.
  • v4.2.0 Changes

    April 12, 2018
    • ๐Ÿ‘ Implemented JSONDecodable support for Arrays, whose Element is JSONDecodable. Requires Swift 4.1 to work.
  • v4.1.2 Changes

    February 27, 2018
    • ๐Ÿ‘Œ Improved output of NetworkLoggerPlugin, which now includes status codes, HTTP body contents, and some emojis ๐Ÿš€
  • v4.1.1 Changes

    February 27, 2018
    • ๐Ÿ‘ Allow EmptyResponse to be used with CodableParser when network response does not contain valid JSON.
  • v4.1.0 Changes

    • ๐Ÿ—„ Deprecate TRON level headerBuilder in favor of Alamofire.requestAdapter.
    • ๐Ÿ“œ Loosen CodableParser generic constraints to be able to work with Decodable protocol instead of Codable.
  • v4.0.0 Changes

    • Compiled with Xcode 9.1 / Swift 4.0.2