All notable changes to this project will be documented in this file.
5.17.0 - 2026-07-23
- Raise the minimum supported iOS deployment target to 15.0. Xcode 27 only supports building for iOS 15.0 or later, and LINE app itself no longer runs on iOS 14 or earlier. #257
5.16.1 - 2026-04-30
- Expose
reset()on the Objective-CLineSDKLoginManagerwrapper so ObjC consumers can reset the SDK. #254
5.16.0 - 2026-04-03
- The Xcode project now builds with Swift 6 language mode by default. #252
- Fixed data race errors in NotificationCenter observer handlers by replacing
unowned selfcaptures withweak selfto comply with Swift 6 strict concurrency. #252
5.15.0 - 2026-03-19
- The messaging and sharing APIs (
PostSendMessagesRequest,PostMultisendMessagesRequest,GetShareMessageActionListRequest, etc.) and related UI components (ShareViewController,ShareViewControllerDelegate) are now deprecated and will return adeprecatedAPIerror when called. #249 - The corresponding Objective-C wrappers for messaging and sharing APIs are also deprecated.
- The messaging and sharing related UI entries and test files have been removed from the sample app.
5.14.0 - 2025-10-30
- A
resetmethod forLoginManagerto cancel ongoing login processes and clean up internal state. It allows you using multiple channels in a single app. #243
- LoginManager reset functionality now properly retains and cancels ongoing processes on the main actor for better thread safety.
5.13.0 - 2025-06-19
- Swift 6 and Swift Concurrency support. Now the project is compatible with Swift 6 and takes advantage of Swift Concurrency features. #224
- Some APIs are converted to the async signature, so you can use the async/await syntax to call these APIs. Check the API reference for more.
- Some outdated usage and compiler version checks are removed due to new iOS SDK requirements. #222
5.12.0 - 2025-01-15
- A new
initialWebAuthenticationMethodoption in the login parameters allows specifying the initial web authentication method. Setting this to.qrCodedisplays the QR code login as the default authentication method on the login page. #219 - The
LoginProcessobject now includes aloginRoutevalue, indicating the path taken during login. This helps track whether the user logged in via the LINE app or through a web page. #215
- An issue where SPM build for iOS was not working. We have also updated the project settings to the latest Xcode and Swift versions. #216
5.11.2 - 2024-09-26
- Some compiler warning when building with Xcode 16.0. #214
5.11.1 - 2024-05-22
- Now the
xcframeworkbinaries do not contain bit code anymore. #210
5.11.0 - 2023-11-01
- Add digital signature to the xcframework artifacts. Now the xcframework binaries are signed with certificate of LINE Developer team. #199
- Add the privacy manifest file to the resource bundle. #200
5.10.1 - 2023-10-02
- Update license holder name in all source code files. Now LY Corporation is the license holder of LINE SDK Swift. The license content and terms itself is not changed so you can still use the SDK under the same condition as before. #193
- As the removal of general support of iOS 12 and earlier in Xcode, now LINE SDK Swift also drops support for iOS 12 and earlier. #190
- An option
promptBotIDto append related query for internal partner use. #188.
5.9.1 - 2023-06-08
- Append
IDTokenRawproperty to ObjC'sLineSDKAccessTokenclass. This allows retrieve the raw value of the received ID token when using the Objective-C wrapper. #185
5.9.0 - 2022-09-20
This version drops supports for iOS 10 since Xcode 14 is not supporting 32-bit devices anymore. For more information, please refer to 32-bit app support has been discontinued in Xcode 14.
- SwiftUI sample app. If you are using SwiftUI and want to integrate LINE SDK Swift into your SwiftUI project, please refer to the SwiftUI sample app to get started. #177
- Support for Xcode 14 and iOS 16. #178
- Drops iOS 10 support. Now LINE SDK Swift requires iOS 11 or later. If you have to continue to support iOS 10, use LINE SDK Swift 5.8.2.
5.8.2 - 2022-05-24
- Xcode 13.4 support. Fixed an issue that when built with Xcode 13.4, there is a chance that linking fails due to reference cycle. #174
- Modernize the project to the latest Xcode and Swift version.
- Now the xcframework contains debug symbols (dSYMs and bitcode map) in the framework. Integrating LINE SDK by xcframework now provides easier setup steps. #175
5.8.1 - 2021-11-17
- Upgrade project settings for Xcode 13 and other tool dependencies. #170
5.8.0 - 2021-08-19
- New permissions in
LoginPermissionfor Open Chat Plug features. #168
5.7.0 - 2020-09-16
- Xcode 12 support. The new Swift Package Manager support. Now the built-in UI of LINE SDK is also available when integrated with SPM. #161
5.6.2 - 2020-08-14
- Auto retry
NSURLErrorNetworkConnectionLosterror once when exchanging token. This is a workaround for a long-last iOS bug discussed here. #159
5.6.1 - 2020-08-05
- The completion handler for logging out was not called for HTTP status code 400. It now should be always called and not causing a hanging. #158
5.6.0 - 2020-06-11
- Open Chat support. You can create an Open Chat room with LINE SDK for Swift now. There are also some other public APIs to help checking room availability or user's memebership for a given Open Chat room. Check the official documentation and API reference of
OpenChatCreatingControllerfor more information. #132
- Lots of improvement of reference and documentation comment.
5.5.2 - 2020-04-30
- Now explicitly log in with web view does not trigger the "LINE is not installed" warning on the login screen page.
5.5.1 - 2020-02-27
- Use standard parameter names from PKCE for OAuth 2.0 to replace the original One-Time-Password mechanism. #133
- An issue that some symbols cannot be found in XCFramework binary for Objective-C wrapper. #140
- Fix several dangling pointer warning for Xcode 11.4. #141
- Improve security for
stateandnoncegenerating to use a better random generator from Security.framework. #137
5.5.0 - 2019-12-17
- Add the
displayNameOverriddenanddisplayNameOriginalproperties toUserwhen getting friends list. Currently theUser.displayNameis a combination ofdisplayNameOverriddenanddisplayNameOriginal. It is a preferred version of user's name for displaying and searching. #125 - Support for
xcframework. Now you can download binary format of LINE SDK and LINE SDK Objective-C wrapper asxcframework, as well as the related dSYMs and symbol map files from the release page. To implement this feature, we modified a bit for the exposed Objective-C wrapper module, to make sure the binary compatibility not broken in future releases. #126
- A missing localization for pt-BR when searching in sharing list panel. #127
5.4.0 - 2019-11-29
- Sharing UI support. Now you can request
.oneTimeSharepermission and present aShareViewControllerto let users select messages and share these messages to their friends or groups. LINE SDK provides a pre-defined UI for sharing messages. You can also build your own UI based on public methods in the SDK. #79 - Properties in
FriendandGroupto retrieve the "large" version and "small" version of a profile image. #30 - A new
relationsort option to get graph list sorted by relationship between current user and friends. #30 - Support for macCatalyst as a build target. #123
- Support for building against Swift Package Manager. Currently SPM does not support adding resource, so all UI related parts (such as
LoginButtonandShareViewController) are eliminated from SPM build. #70 - Replace
LoginManagerOptionswithLoginManager.Parametersfor flexible parameter configuration while login. #119 - Provide a way to set customized
IDTokenNonceas thenoncevalue in ID Token. #119 - Now message payload setting provides more public setter. You can create a customized message payload much easier. #90
APIErrorDetailis now public, so you can get the detail error information when a.invalidHTTPStatusAPIErrorerror happens. #115- Dark mode is supported now for iOS 13 or later. Although all parts of LINE SDK is compatible with the dark mode, the login page and consent pages are not yet. They will be prepared eventually without a native SDK release. #105
- Now
resource_bundlesis used instead ofresourceswhen integrated by CocoaPods. #77
LoginManagerOptionsand the related login method is deprecated. UseLoginManager.Parametersinstead. #119preferredWebPageLanguageis deprecated. Use the property with the same name inLoginManager.Parametersinstead. #119- The general error type (
Error) version of error handling delegate method inLoginButtonDelegateis deprecated. Use the specificLineSDKErrorversion instead. #120 - All token related APIs in
APIare now deprecated. They are moved toAPI.Authto distinguish from the normal public APIs. Not likeAPI, methods inAPI.Authwill not try to automatically refresh your access token. #118
5.3.1 - 2019-10-25
- Web page preference language for Japanese now works properly with correct language code. #113
5.3.0 - 2019-09-17
- Add
IDTokenNoncetoLoginResult. This value can be used against the ID token verification API as a parameter.
- Some improvement in documentation spelling and grammar.
5.2.4 - 2019-08-23
- Source application validation is removed. Login with LINE app now works correctly on iOS 13. #97
5.2.3 - 2019-08-01
- An issue that the stored ID Token will be overwritten when a refreshed token is issued. #88
5.2.2 - 2019-07-29
- When verifying token, get the provider metadata
issuerfrom open ID discovery document, instead of a fixed value. #86
5.2.1 - 2019-07-19
- Align the behavior of
LineSDKLoginButton(wrapper class) to LoginButton, when user click login, will only return if login process is ongoing. #78
5.2.0 - 2019-06-12
- Support for customizing the language used when login through web page. Set
preferredWebPageLanguageofLoginManagerto apply the required language. The default behavior (using the system language on user's device) is not changed. #61 - Support for accessing AMR (Authentication Methods References) value in ID Token. #63
- Now you can use either Swift 4.2 or Swift 5.0 when integrating LINE SDK with CocoaPods. #60
- The
refreshTokeninAccessTokenis now marked asprivate. We do not encourage you to use or store the refresh token yourself. Instead, always use the refresh token API from client when you want to get a new access token.
5.1.2 - 2019-04-15
- Logging out a user now revokes refresh token and its corresponding access tokens, instead of the current access token only. #45
5.1.1 - 2019-03-28
- Allow additional application bundle ID of LINE apps to grant authorization code.
5.1.0 - 2019-02-26
- Some model types also support
Encodablenow for easier serialization. - Support JSON conversion for Objective-C model wrapper classes for future features.
- Now you can get the raw ID Token value for server verification purpose.
- Add compatibility for Swift 5.0 and Xcode 10.2.
5.0.3 - 2019-01-17
- Build LineSDKObjC with Carthage now works properly with all targets included. #13
5.0.2 - 2018-12-18
- A compiling crash when using Swift 5.0 tool chain to compile LINE SDK. #6, SR-9375, Swift #21296
- An internal improvement on JWK handling.
- Improvement on documentation spelling and grammar. #9
5.0.1 - 2018-11-29
- Improve ID Token signature verifying code to use latest Security framework API. #4
- Hide an implementation detail in the sample app. #2
5.0.0 - 2018-11-20
Initial release of LINE SDK Swift. Now the LINE SDK is an open source project.
LINE SDK version 5 is not compatible with version 4.x. To upgrade to version 5, check the Migration Guide.
- Support LINE Login v2.1, which provide a fine-tuned authorization permissions and more safety authorizing flow. See LINE Login v2.1 for more about it.
Warning: Tokens from LINE Login v2.0 will be invalidated and your users will be logged out once you upgrade your SDK integration from version 4.x or earlier.
- ID Token with ECDSA verification based on OpenID protocol. It provides a secure way to verify user information.
- You can use a predefined login button to let your users login now. The button follows LINE Login button design guideline. It provides a quick way to integrate LINE Login to your app. See
LoginButtonfor more.
- A potential issue which causes authorizing from LINE app may fail on devices with iOS 12.
- The automatically token refreshing should now work properly when receives a token expiring error from LINE Login Server.