gh-manager-cli 1.19.0 → 1.19.2

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,3 +1,17 @@
1
+ ## [1.19.2](https://github.com/wiiiimm/gh-manager-cli/compare/v1.19.1...v1.19.2) (2025-09-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * clear search filter when switching organization context ([a5df0bf](https://github.com/wiiiimm/gh-manager-cli/commit/a5df0bf5f23e08019bd5225d847d68288a62a74f))
7
+
8
+ ## [1.19.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.19.0...v1.19.1) (2025-09-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * clear repository list immediately on context switch ([73c75af](https://github.com/wiiiimm/gh-manager-cli/commit/73c75afd725fa2640acc03e8381c4bc0598c6bf1))
14
+
1
15
  # [1.19.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.18.1...v1.19.0) (2025-09-02)
2
16
 
3
17
 
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.0",
31
+ version: "1.19.2",
32
32
  private: false,
33
33
  description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
34
34
  license: "MIT",
@@ -1446,6 +1446,12 @@ 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);
1453
+ setFilter("");
1454
+ setFilterMode(false);
1449
1455
  setVisibilityFilter("all");
1450
1456
  const newAffiliations = newContext === "personal" ? ["OWNER"] : ["ORGANIZATION_MEMBER"];
1451
1457
  setOwnerAffiliations(newAffiliations);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gh-manager-cli",
3
- "version": "1.19.0",
3
+ "version": "1.19.2",
4
4
  "private": false,
5
5
  "description": "Interactive CLI to manage your GitHub repos (personal) with Ink",
6
6
  "license": "MIT",