gh-manager-cli 1.45.0 → 1.46.0
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 +14 -0
- package/README.md +7 -0
- package/dist/index.js +1564 -551
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.46.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.45.1...v1.46.0) (2026-06-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Bulk Select mode with bulk star, archive/unarchive, visibility, and delete operations (SWR-353) ([#54](https://github.com/wiiiimm/gh-manager-cli/issues/54)) ([9245324](https://github.com/wiiiimm/gh-manager-cli/commit/924532494c7222393415bea14bf5553435c2abb2))
|
|
7
|
+
|
|
8
|
+
## [1.45.1](https://github.com/wiiiimm/gh-manager-cli/compare/v1.45.0...v1.45.1) (2026-06-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* ignore modal input while async actions are in flight, add guard tests (SWR-368) [semantic pr title] ([#64](https://github.com/wiiiimm/gh-manager-cli/issues/64)) ([97d2e4e](https://github.com/wiiiimm/gh-manager-cli/commit/97d2e4e25fc5d10cd2305ffb3f594b3f0b094e20)), closes [#65](https://github.com/wiiiimm/gh-manager-cli/issues/65)
|
|
14
|
+
|
|
1
15
|
# [1.45.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.44.0...v1.45.0) (2026-06-07)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -93,6 +93,13 @@ On first run, you'll be prompted to authenticate with GitHub (OAuth recommended)
|
|
|
93
93
|
- Change repository visibility (`Ctrl+V`) - Switch between Public, Private, and Internal (enterprise only)
|
|
94
94
|
- Star/unstar repositories (`Ctrl+S`) - Toggle star status for any repository
|
|
95
95
|
- Sync forks with upstream (`Ctrl+F`) with ahead/behind counts and automatic conflict detection
|
|
96
|
+
- **Bulk Operations** (`B` to enter Bulk Select mode):
|
|
97
|
+
- Select multiple repositories with `Space`; `X` unselects all (while every other shortcut is disabled in bulk mode)
|
|
98
|
+
- Bulk actions reuse the global shortcuts: `Ctrl+S` star/unstar, `Ctrl+A` archive/unarchive, `Ctrl+V` visibility, `Del` delete
|
|
99
|
+
- Star and archive auto-detect a safe toggle; if the selection is mixed, an intent modal asks the explicit target. Visibility always prompts for the destination (Public / Private / Internal for enterprise orgs)
|
|
100
|
+
- Selections persist across search, filter, and sort changes (select from different searches, then bulk-act)
|
|
101
|
+
- Confirmation flow: review list with ability to unselect → count prompt → (delete only) a 4-character verification code
|
|
102
|
+
- Per-repo progress reporting with partial-failure summary
|
|
96
103
|
|
|
97
104
|
### User Interface & Experience
|
|
98
105
|
- **Keyboard Navigation**: Full keyboard control (arrow keys, PageUp/Down, `Ctrl+G`/`G`)
|