Skip to content

Commit d2cbe13

Browse files
authored
fix: fix sign-out revoke endpoint bug (#41)
1 parent ce1911d commit d2cbe13

File tree

7 files changed

+226
-142
lines changed

7 files changed

+226
-142
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,11 @@ iOS, Android
2424

2525
- Support RBAC
2626
- Add `LogtoClient.getUserInfo` to get authenticated user info
27+
28+
## 1.1.0
29+
30+
- fix Logto sign-out bug, the token revoke endpoint was misconfigured
31+
- bump version to support Flutter 3.10
32+
- bump the http dependency to the latest version
33+
- bump the flutter_web_auth dependency to the latest version
34+
- bump the flutter_secure_storage dependency to the latest version

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 50;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -222,10 +222,12 @@
222222
};
223223
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
224224
isa = PBXShellScriptBuildPhase;
225+
alwaysOutOfDate = 1;
225226
buildActionMask = 2147483647;
226227
files = (
227228
);
228229
inputPaths = (
230+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
229231
);
230232
name = "Thin Binary";
231233
outputPaths = (
@@ -236,6 +238,7 @@
236238
};
237239
9740EEB61CF901F6004384FC /* Run Script */ = {
238240
isa = PBXShellScriptBuildPhase;
241+
alwaysOutOfDate = 1;
239242
buildActionMask = 2147483647;
240243
files = (
241244
);

example/ios/Runner/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,7 @@
5252
<key>NSAllowsArbitraryLoadsInWebContent</key>
5353
<true/>
5454
</dict>
55+
<key>UIApplicationSupportsIndirectInputEvents</key>
56+
<true/>
5557
</dict>
5658
</plist>

0 commit comments

Comments
 (0)