@glrs-dev/assume 0.10.1 → 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 CHANGED
@@ -1,5 +1,37 @@
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
+
16
+ ## 0.10.2
17
+
18
+ ### Patch Changes
19
+
20
+ - [#269](https://github.com/iceglober/glrs/pull/269) [`b5467c0`](https://github.com/iceglober/glrs/commit/b5467c0697a5ef57d283f49c4de9b2dcd767273f) Thanks [@iceglober](https://github.com/iceglober)! - fix(assume): `gsa upgrade` checked the wrong repo and never updated
21
+
22
+ `gsa upgrade` still pointed at the pre-rename repo (`iceglober/glorious`, tag
23
+ prefix `assume-v`), which froze at ~0.6.x. It reported that stale release as
24
+ "latest version: 0.6.4" and — since the installed 0.10.x is numerically newer —
25
+ declared "already up to date", so it could never actually upgrade.
26
+
27
+ - Point at the current repo and changesets tag format: `iceglober/glrs`,
28
+ `@glrs-dev/assume@<version>`.
29
+ - Select the highest-semver matching release (not the first in list order) in
30
+ both the gh-CLI and REST paths.
31
+ - npm installs now upgrade via `npm i -g @glrs-dev/assume@latest` instead of a
32
+ GitHub binary-swap into node_modules, which would desync the binary from the
33
+ package manifest.
34
+
3
35
  ## 0.10.1
4
36
 
5
37
  ### 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 login aws # authenticate (opens browser)
21
- gsa use aws dev # switch context (fuzzy match)
22
- aws s3 ls # credentials served locally
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.1",
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.1",
55
- "@glrs-dev/assume-darwin-x64": "0.10.1",
56
- "@glrs-dev/assume-linux-x64": "0.10.1",
57
- "@glrs-dev/assume-linux-arm64": "0.10.1"
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
  }