From ac32fea9aeb818672c2edf47255ab8b31f9c2d67 Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Mon, 3 Jun 2013 08:26:48 -0700 Subject: [PATCH] [Issue #1049] Improving CHANGES for 1.3.0 release --- CHANGES | 42 ++++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/CHANGES b/CHANGES index 5d71b01..8b1a0de 100644 --- a/CHANGES +++ b/CHANGES @@ -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)