diff --git a/CHANGELOG.md b/CHANGELOG.md index 0576fcb11..9820c23f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased -[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v17.0.1...HEAD) +[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v17.0.2...HEAD) + +## 17.0.2 + +### Fixed +- Improved invalid access token issues +- Fixed ATE value issues when status is unspecified + +[2024-05-22](https://github.com/facebook/facebook-ios-sdk/releases/tag/v17.0.2) | +[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v17.0.1...v17.0.2) ## 17.0.1 diff --git a/Configurations/Version.xcconfig b/Configurations/Version.xcconfig index 8e2f09d8f..35f28d6f8 100644 --- a/Configurations/Version.xcconfig +++ b/Configurations/Version.xcconfig @@ -5,4 +5,4 @@ // LICENSE file in the root directory of this source tree. // The version for FBSDK -FBSDK_PROJECT_VERSION=17.0.1 +FBSDK_PROJECT_VERSION=17.0.2 diff --git a/FBAEMKit/FBAEMKit/AEMNetworker.swift b/FBAEMKit/FBAEMKit/AEMNetworker.swift index a7270319c..dafac62be 100644 --- a/FBAEMKit/FBAEMKit/AEMNetworker.swift +++ b/FBAEMKit/FBAEMKit/AEMNetworker.swift @@ -19,7 +19,7 @@ final class AEMNetworker: NSObject, AEMNetworking, URLSessionDataDelegate { private enum Values { static let newline = "\r\n" - static let versionString = "17.0.1" + static let versionString = "17.0.2" static let defaultGraphAPIVersion = "v17.0" static let SDK = "ios" static let userAgentBase = "FBiOSAEM" diff --git a/FBSDKCoreKit/FBSDKCoreKit/include/FBSDKCoreKitVersions.h b/FBSDKCoreKit/FBSDKCoreKit/include/FBSDKCoreKitVersions.h index dbbd85741..633f7e9e7 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/include/FBSDKCoreKitVersions.h +++ b/FBSDKCoreKit/FBSDKCoreKit/include/FBSDKCoreKitVersions.h @@ -6,5 +6,5 @@ * LICENSE file in the root directory of this source tree. */ -#define FBSDK_VERSION_STRING @"17.0.1" +#define FBSDK_VERSION_STRING @"17.0.2" #define FBSDK_DEFAULT_GRAPH_API_VERSION @"v17.0" diff --git a/FBSDKCoreKit/FBSDKCoreKitTests/AppLinkNavigationTests.swift b/FBSDKCoreKit/FBSDKCoreKitTests/AppLinkNavigationTests.swift index 702589818..1001fd4a6 100644 --- a/FBSDKCoreKit/FBSDKCoreKitTests/AppLinkNavigationTests.swift +++ b/FBSDKCoreKit/FBSDKCoreKitTests/AppLinkNavigationTests.swift @@ -44,7 +44,7 @@ final class AppLinkNavigationTests: XCTestCase { eventPoster = TestMeasurementEvent() resolver = TestAppLinkResolver() settings = TestSettings() - settings.sdkVersion = "17.0.1" + settings.sdkVersion = "17.0.2" urlOpener = URLOpener(canOpenURL: true) AppLinkNavigation.defaultResolver = resolver diff --git a/FBSDKCoreKit_Basics/FBSDKCoreKit_Basics/FBSDKCrashHandler.m b/FBSDKCoreKit_Basics/FBSDKCoreKit_Basics/FBSDKCrashHandler.m index 14e000b93..4cbb45aab 100644 --- a/FBSDKCoreKit_Basics/FBSDKCoreKit_Basics/FBSDKCrashHandler.m +++ b/FBSDKCoreKit_Basics/FBSDKCoreKit_Basics/FBSDKCrashHandler.m @@ -22,7 +22,7 @@ #define FBSDK_MAX_CRASH_LOGS 5 #define FBSDK_CRASH_PATH_NAME @"instrument" #ifndef FBSDK_VERSION_STRING - #define FBSDK_VERSION_STRING @"17.0.1" + #define FBSDK_VERSION_STRING @"17.0.2" #endif static NSUncaughtExceptionHandler *previousExceptionHandler = NULL;