@glrs-dev/assume 0.12.0 → 0.12.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.
- package/CHANGELOG.md +8 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @glrs-dev/assume
|
|
2
2
|
|
|
3
|
+
## 0.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#288](https://github.com/iceglober/glrs/pull/288) [`3050092`](https://github.com/iceglober/glrs/commit/30500922b3d5aa6108fd13a667a3fee3adad5e3f) Thanks [@iceglober](https://github.com/iceglober)! - Surface a needs-relogin provider even when its refresh token hasn't timestamp-expired.
|
|
8
|
+
|
|
9
|
+
GCP stamps its refresh token with a 10-year expiry, so when Google rejects a background refresh — e.g. an org reauth challenge (`invalid_grant` / `invalid_rapt`) — the dead-session banner stayed silent and the raw token-endpoint JSON leaked through. The daemon now writes a per-provider `needs-login` marker whenever a refresh is genuinely rejected; the banner fires on that marker (not only on the timestamp), and any successful token store clears it. The hint wording now covers both AWS SSO expiry and GCP reauth: "session needs re-authentication — run: gsa login <provider>".
|
|
10
|
+
|
|
3
11
|
## 0.12.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glrs-dev/assume",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"typescript": "^5"
|
|
52
52
|
},
|
|
53
53
|
"optionalDependencies": {
|
|
54
|
-
"@glrs-dev/assume-darwin-arm64": "0.12.
|
|
55
|
-
"@glrs-dev/assume-darwin-x64": "0.12.
|
|
56
|
-
"@glrs-dev/assume-linux-x64": "0.12.
|
|
57
|
-
"@glrs-dev/assume-linux-arm64": "0.12.
|
|
54
|
+
"@glrs-dev/assume-darwin-arm64": "0.12.1",
|
|
55
|
+
"@glrs-dev/assume-darwin-x64": "0.12.1",
|
|
56
|
+
"@glrs-dev/assume-linux-x64": "0.12.1",
|
|
57
|
+
"@glrs-dev/assume-linux-arm64": "0.12.1"
|
|
58
58
|
}
|
|
59
59
|
}
|