@glrs-dev/assume 0.10.2 → 0.10.3
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 +13 -0
- package/README.md +3 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @glrs-dev/assume
|
|
2
2
|
|
|
3
|
+
## 0.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#271](https://github.com/iceglober/glrs/pull/271) [`1853420`](https://github.com/iceglober/glrs/commit/18534203443cd7e7415ae85ce9d87cbc43df1315) Thanks [@iceglober](https://github.com/iceglober)! - docs(assume): lead the quick start with `gsa init`
|
|
8
|
+
|
|
9
|
+
The `gsa --help` quick start (and the README usage block) still told new users to
|
|
10
|
+
run `gsa login` / `gsa use` first — but those commands now refuse until `gsa init`
|
|
11
|
+
completes (init gate). Reordered both to start with `gsa init`, show that
|
|
12
|
+
`aws s3 ls` then works off the default context, and present `gsa use` as the
|
|
13
|
+
per-shell override. Also notes the pre-init allowlist. (docs-site/assume.md
|
|
14
|
+
"How it works" + "Contexts" updated to match.)
|
|
15
|
+
|
|
3
16
|
## 0.10.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -17,9 +17,9 @@ Or standalone: `npm i -g @glrs-dev/assume` (then `gsa init`).
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
gsa
|
|
21
|
-
|
|
22
|
-
aws
|
|
20
|
+
gsa init # one-time setup (required first — see Install)
|
|
21
|
+
aws s3 ls # credentials served locally (default context)
|
|
22
|
+
gsa use aws dev # switch this shell to another context (fuzzy match)
|
|
23
23
|
gsa status # token expiry, daemon health
|
|
24
24
|
gsa contexts # list available contexts
|
|
25
25
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glrs-dev/assume",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
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.10.
|
|
55
|
-
"@glrs-dev/assume-darwin-x64": "0.10.
|
|
56
|
-
"@glrs-dev/assume-linux-x64": "0.10.
|
|
57
|
-
"@glrs-dev/assume-linux-arm64": "0.10.
|
|
54
|
+
"@glrs-dev/assume-darwin-arm64": "0.10.3",
|
|
55
|
+
"@glrs-dev/assume-darwin-x64": "0.10.3",
|
|
56
|
+
"@glrs-dev/assume-linux-x64": "0.10.3",
|
|
57
|
+
"@glrs-dev/assume-linux-arm64": "0.10.3"
|
|
58
58
|
}
|
|
59
59
|
}
|