@glrs-dev/assume 0.6.4 → 0.6.6
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 +12 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @glrs-dev/assume
|
|
2
2
|
|
|
3
|
+
## 0.6.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#54](https://github.com/iceglober/glrs/pull/54) [`54cf566`](https://github.com/iceglober/glrs/commit/54cf5667b65d9701f9fccff283d5f0d0b0a03346) Thanks [@iceglober](https://github.com/iceglober)! - Add daemon auto-restart for exec/credential_process commands. When the daemon dies (e.g., macOS kills it during sleep), the next credential request now silently restarts it without blocking (~1ms overhead). Also adds a containerized test harness with 13 deterministic tests covering the full daemon refresh lifecycle.
|
|
8
|
+
|
|
9
|
+
## 0.6.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#35](https://github.com/iceglober/glrs/pull/35) [`1bcd92c`](https://github.com/iceglober/glrs/commit/1bcd92c55c15b5c5947f445ec75e8afb12b4cd1f) Thanks [@iceglober](https://github.com/iceglober)! - Remove standalone invocation guard that blocked direct gsa/gs-assume usage with exit(1). Replace with a non-blocking nudge toward npm install. Fix release workflow to upload platform binaries with correct filenames.
|
|
14
|
+
|
|
3
15
|
## 0.6.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glrs-dev/assume",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
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.6.
|
|
55
|
-
"@glrs-dev/assume-darwin-x64": "0.6.
|
|
56
|
-
"@glrs-dev/assume-linux-x64": "0.6.
|
|
57
|
-
"@glrs-dev/assume-linux-arm64": "0.6.
|
|
54
|
+
"@glrs-dev/assume-darwin-arm64": "0.6.6",
|
|
55
|
+
"@glrs-dev/assume-darwin-x64": "0.6.6",
|
|
56
|
+
"@glrs-dev/assume-linux-x64": "0.6.6",
|
|
57
|
+
"@glrs-dev/assume-linux-arm64": "0.6.6"
|
|
58
58
|
}
|
|
59
59
|
}
|