lex-identity-entra 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bebdd4c4aa004549f0263c8556d2ff39ce4f187f945341021033d510d23d4fb2
|
|
4
|
+
data.tar.gz: 10144fbe3fb835731c30ee97d3e874bc921fd5e8084e054e93aedc5375f1bbdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88137e50c75426f3306ab2427e4f1bb81e630d3453186cab9667884f7e17322277c5c77097bdee5d332ea84097854a1424f19d82f528076d49890021411a62d8
|
|
7
|
+
data.tar.gz: de2187f7d7eb71435e70dc6de3eb4ceb8d817f979c5df9cfa1f6e3680aa9b59ca0ce5160c721766b2e33317c0f070d41b07303399de5d04595521254062d662d
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.3.1] - 2026-05-15
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- `refresh_token` returned `from_local_data` after saving, which is nil when vault succeeded and deleted the disk file. Now returns `from_memory` so the caller always gets the refreshed token without triggering a redundant browser re-auth on restart.
|
|
9
|
+
|
|
5
10
|
## [0.3.0] - 2026-05-14
|
|
6
11
|
|
|
7
12
|
### Added
|
|
@@ -237,7 +237,7 @@ module Legion
|
|
|
237
237
|
scopes: fetch_key(body, :scope) || auth[:scopes],
|
|
238
238
|
tenant_id: auth[:tenant_id],
|
|
239
239
|
client_id: auth[:client_id])
|
|
240
|
-
|
|
240
|
+
from_memory(qualifier)
|
|
241
241
|
rescue StandardError => e
|
|
242
242
|
handle_exception(e, level: :error, operation: 'token_manager.refresh_token',
|
|
243
243
|
qualifier: qualifier)
|