gh-manager-cli 1.19.0 → 1.19.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 +7 -0
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.19.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.19.0...v1.19.1) (2025-09-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* clear repository list immediately on context switch ([73c75af](https://github.com/wiiiimm/gh-manager-cli/commit/73c75afd725fa2640acc03e8381c4bc0598c6bf1))
|
|
7
|
+
|
|
1
8
|
# [1.19.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.18.1...v1.19.0) (2025-09-02)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ var require_package = __commonJS({
|
|
|
28
28
|
"package.json"(exports, module) {
|
|
29
29
|
module.exports = {
|
|
30
30
|
name: "gh-manager-cli",
|
|
31
|
-
version: "1.19.
|
|
31
|
+
version: "1.19.1",
|
|
32
32
|
private: false,
|
|
33
33
|
description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
|
|
34
34
|
license: "MIT",
|
|
@@ -1446,6 +1446,10 @@ function RepoList({ token, maxVisibleRows, onLogout, viewerLogin, onOrgContextCh
|
|
|
1446
1446
|
setOwnerContext(newContext);
|
|
1447
1447
|
setCursor(0);
|
|
1448
1448
|
setOrgSwitcherOpen(false);
|
|
1449
|
+
setItems([]);
|
|
1450
|
+
setSearchItems([]);
|
|
1451
|
+
setTotalCount(0);
|
|
1452
|
+
setSearchTotalCount(0);
|
|
1449
1453
|
setVisibilityFilter("all");
|
|
1450
1454
|
const newAffiliations = newContext === "personal" ? ["OWNER"] : ["ORGANIZATION_MEMBER"];
|
|
1451
1455
|
setOwnerAffiliations(newAffiliations);
|