Skip to content

Commit

Permalink
[Hotfix] Use base64URLEncoding for RSA modules (#1399) (#1401)
Browse files Browse the repository at this point in the history
* Update Identity core.

* Bump version.

* Update changelog.

* Update common core.

* Fix version.
  • Loading branch information
antrix1989 authored Oct 30, 2021
1 parent b446d91 commit 1ebe14d
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.1.24]
* Use base64URLEncoding for RSA modules (#1399)

## [1.1.23]
* Add helper for cross cloud B2B support in broker (#1370)
* Add support of "create" prompt (#1384)
Expand Down
2 changes: 1 addition & 1 deletion MSAL.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MSAL"
s.version = "1.1.23"
s.version = "1.1.24"
s.summary = "Microsoft Authentication Library (MSAL) Preview for iOS"
s.description = <<-DESC
The MSAL library preview for iOS gives your app the ability to begin using the Microsoft Cloud by supporting Microsoft Azure Active Directory and Microsoft Accounts in a converged experience using industry standard OAuth2 and OpenID Connect. The library also supports Microsoft Azure B2C for those using our hosted identity management service.
Expand Down
2 changes: 1 addition & 1 deletion MSAL/IdentityCore
8 changes: 4 additions & 4 deletions MSAL/MSAL.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4747,7 +4747,7 @@
DEVELOPMENT_TEAM = "";
GCC_OPTIMIZATION_LEVEL = 0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 1.1.23;
MARKETING_VERSION = 1.1.24;
USER_HEADER_SEARCH_PATHS = "$(inherited) $IDCORE_PATH/src/**";
};
name = Debug;
Expand All @@ -4760,7 +4760,7 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEVELOPMENT_TEAM = "";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 1.1.23;
MARKETING_VERSION = 1.1.24;
USER_HEADER_SEARCH_PATHS = "$(inherited) $IDCORE_PATH/src/**";
};
name = Release;
Expand All @@ -4773,7 +4773,7 @@
DEVELOPMENT_TEAM = "";
GCC_OPTIMIZATION_LEVEL = 0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 1.1.23;
MARKETING_VERSION = 1.1.24;
};
name = Debug;
};
Expand All @@ -4784,7 +4784,7 @@
CODE_SIGN_IDENTITY = "-";
DEVELOPMENT_TEAM = "";
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 1.1.23;
MARKETING_VERSION = 1.1.24;
};
name = Release;
};
Expand Down
2 changes: 1 addition & 1 deletion MSAL/resources/ios/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.23</string>
<string>1.1.24</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion MSAL/resources/mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.23</string>
<string>1.1.24</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion MSAL/src/MSAL_Internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#define MSAL_VER_HIGH 1
#define MSAL_VER_LOW 1
#define MSAL_VER_PATCH 23
#define MSAL_VER_PATCH 24

#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
Expand Down

0 comments on commit 1ebe14d

Please sign in to comment.