[Issue #1049] Improving CHANGES for 1.3.0 release

This commit is contained in:
Mattt Thompson 2013-06-03 08:26:48 -07:00
parent 5c7414032e
commit ac32fea9ae

42
CHANGES
View file

@ -1,5 +1,27 @@
= 1.3.0 (2013-06-01)
* Change in `AFURLConnectionOperation` `NSURLConnection` authentication delegate methods and associated block setters. If `_AFNETWORKING_PIN_SSL_CERTIFICATES_` is defined, `-setWillSendRequestForAuthenticationChallengeBlock:` will be available, and `-connection:willSendRequestForAuthenticationChallenge:` will be implemented. Otherwise, `-setAuthenticationAgainstProtectionSpaceBlock:` & `-setAuthenticationChallengeBlock:` will be available, and `-connection:canAuthenticateAgainstProtectionSpace:` & `-connection:didReceiveAuthenticationChallenge:` will be implemented instead (Oliver Letterer)
* Change in AFNetworking podspec to include Security framework (Kevin Harwood, Oliver Letterer, Sam Soffes)
* Change in AFHTTPClient to @throw exception when non-designated intializer is
used (Kyle Fuller)
* Change in behavior of connection:didReceiveAuthenticationChallenge: to not
use URL-encoded credentials, which should already have been applied (@xjdrew)
* Change to set AFJSONRequestOperation error when unable to decode response
string (Chris Pickslay, Geoff Nix)
* Change AFURLConnectionOperation to lazily initialize outputStream property
(@fumoboy007)
* Change instances of (CFStringRef)NSRunLoopCommonModes to
kCFRunLoopCommonModes
* Change #warning to #pragma message for dynamic framework linking warnings
(@michael_r_may)
* Add unit testing and continuous integration system (Blake Watters, Oliver
Letterer, Kevin Harwood, Cédric Luthi, Adam Fraser, Carson McDonald, Mattt
Thompson)
@ -42,26 +64,6 @@ Mattt Thompson)
* Fix use of object subscripting to avoid incompatibility with iOS < 6 and OS
X < 10.8 (Paul Melnikow)
* Change behavior of
* Change in AFHTTPClient to @throw exception when non-designated intializer is
used (Kyle Fuller)
* Change in behavior of connection:didReceiveAuthenticationChallenge: to not
use URL-encoded credentials, which should already have been applied (@xjdrew)
* Change to set AFJSONRequestOperation error when unable to decode response
string (Chris Pickslay, Geoff Nix)
* Change AFURLConnectionOperation to lazily initialize outputStream property
(@fumoboy007)
* Change instances of (CFStringRef)NSRunLoopCommonModes to
kCFRunLoopCommonModes
* Change #warning to #pragma message for dynamic framework linking warnings
(@michael_r_may)
* Various fixes to reverted multipart stream provider implementation (Yaron
Inger, Alex Burgel)