Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ install and upgrade each module on its own.

| Module | Description | Version |
|---|---|---|
| [Shmuelie.Git](modules.md#shmuelie-git) | Git worktrees, layout, status, completion, and prediction | 0.2.0 |
| [Shmuelie.Copilot](modules.md#shmuelie-copilot) | Copilot CLI sessions, plugins, marketplaces, MCP, and launcher | 0.1.1 |
| [Shmuelie.Node](modules.md#shmuelie-node) | Node.js, nvm-windows, npm, and ADO npm credentials | 0.1.0 |
| [Shmuelie.Utilities](modules.md#shmuelie-utilities) | .NET, Python, VS Code, Terminal, services, and WPR | 0.2.0 |
| [Shmuelie.Git](modules.md#shmuelie-git) | Git worktrees, layout, status, completion, and prediction | 0.3.0 |
| [Shmuelie.Copilot](modules.md#shmuelie-copilot) | Copilot CLI sessions, plugins, marketplaces, MCP, and launcher | 0.1.2 |
| [Shmuelie.Node](modules.md#shmuelie-node) | Node.js, nvm-windows, npm, and ADO npm credentials | 0.1.1 |
| [Shmuelie.Utilities](modules.md#shmuelie-utilities) | .NET, Python, VS Code, Terminal, services, and WPR | 0.2.1 |

## Quick start

Expand Down
8 changes: 4 additions & 4 deletions docs/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Each module is self-contained and independently versioned.
## Shmuelie.Git

Git repository, worktree, status, completion, and PSReadLine prediction helpers.
**Version 0.2.0.**
**Version 0.3.0.**
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Git/README.md)

Highlights:
Expand All @@ -25,7 +25,7 @@ Highlights:
## Shmuelie.Copilot

GitHub Copilot CLI sessions, plugins, marketplaces, MCP servers, and the
`Start-Copilot` launcher. **Version 0.1.1.**
`Start-Copilot` launcher. **Version 0.1.2.**
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Copilot/README.md)

Highlights:
Expand All @@ -45,7 +45,7 @@ Highlights:
## Shmuelie.Node

Node.js, nvm-windows, npm package, and Azure DevOps npm credential helpers.
**Version 0.1.0.**
**Version 0.1.1.**
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Node/README.md)

Highlights:
Expand All @@ -57,7 +57,7 @@ Highlights:
## Shmuelie.Utilities

General developer utilities for PowerShell, .NET tools, Python packages, VS
Code, Windows Terminal, services, applications, and WPR. **Version 0.2.0.**
Code, Windows Terminal, services, applications, and WPR. **Version 0.2.1.**
[README](https://github.com/shmuelie/powershell-modules/blob/main/modules/Shmuelie.Utilities/README.md)

Highlights:
Expand Down
2 changes: 2 additions & 0 deletions modules/Shmuelie.Copilot/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Versions change only when a release is cut; unreleased work stays under

## [Unreleased]

## [0.1.2] - 2026-08-14

### Fixed
- Copilot session and MCP config lookups now resolve the home directory
cross-platform instead of using Windows-only `$env:USERPROFILE`.
Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Copilot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
GitHub Copilot CLI session, plugin, marketplace, and MCP helpers, plus the
`Start-Copilot` launcher. Depends only on the public `copilot` executable.

**Version:** 0.1.1
**Version:** 0.1.2

## Install

Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Copilot/Shmuelie.Copilot.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'Shmuelie.Copilot.psm1'
ModuleVersion = '0.1.1'
ModuleVersion = '0.1.2'
GUID = 'f7928388-cc43-454f-8265-a7e1664422dd'
Author = 'Shmueli Englard'
CompanyName = 'Shmuelie'
Expand Down
8 changes: 4 additions & 4 deletions modules/Shmuelie.Git/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ Versions change only when a release is cut; unreleased work stays under

## [Unreleased]

### Fixed
- `Get-GitStatusSummary -Path` now fails fast when the target path cannot be
entered and only calls `Pop-Location` after a successful `Push-Location`, so a
bad path cannot corrupt the caller's location stack.
## [0.3.0] - 2026-08-14

### Added
- `Sync-GitRemote` is now GitHub-account-aware. When more than one account is
Expand All @@ -30,6 +27,9 @@ Versions change only when a release is cut; unreleased work stays under
to `Sync-GitRemote`.

### Fixed
- `Get-GitStatusSummary -Path` now fails fast when the target path cannot be
entered and only calls `Pop-Location` after a successful `Push-Location`, so a
bad path cannot corrupt the caller's location stack.
- `Update-Worktrees` now serializes dirty worktrees that need `git stash`
push/pop while still fast-forwarding clean worktrees in parallel, preventing
concurrent workers from popping each other's shared repository stash.
Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Git repository, worktree, status, completion, and PSReadLine prediction helpers.

**Version:** 0.2.0
**Version:** 0.3.0

## Install

Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Git/Shmuelie.Git.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'Shmuelie.Git.psm1'
ModuleVersion = '0.2.0'
ModuleVersion = '0.3.0'
GUID = 'c94a90e6-22f7-44b9-9db0-fdf51f245693'
Author = 'Shmueli Englard'
CompanyName = 'Shmuelie'
Expand Down
2 changes: 2 additions & 0 deletions modules/Shmuelie.Node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Versions change only when a release is cut; unreleased work stays under

## [Unreleased]

## [0.1.1] - 2026-08-14

### Security
- Harden `Update-AdoNpmToken` temporary `.npmrc` handling on Windows with
owner-only ACLs and best-effort overwrite before deletion.
Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Node.js, nvm-windows, npm package, and Azure DevOps npm credential helpers.

**Version:** 0.1.0
**Version:** 0.1.1

## Install

Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Node/Shmuelie.Node.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'Shmuelie.Node.psm1'
ModuleVersion = '0.1.0'
ModuleVersion = '0.1.1'
GUID = 'c2fc780d-9f68-49ec-997a-f15809c8b642'
Author = 'Shmueli Englard'
CompanyName = 'Shmuelie'
Expand Down
2 changes: 2 additions & 0 deletions modules/Shmuelie.Utilities/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Versions change only when a release is cut; unreleased work stays under

## [Unreleased]

## [0.2.1] - 2026-08-14

### Security
- Validate VS Code CLI wrapper arguments before forwarding names, IDs, and path
values to the `code` shim, and pass open paths after an option separator.
Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Utilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ General developer utilities for PowerShell, .NET tools, Python packages, VS
Code, Windows Terminal, Windows services, installed applications, and WPR
tracing.

**Version:** 0.2.0
**Version:** 0.2.1

## Install

Expand Down
2 changes: 1 addition & 1 deletion modules/Shmuelie.Utilities/Shmuelie.Utilities.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'Shmuelie.Utilities.psm1'
ModuleVersion = '0.2.0'
ModuleVersion = '0.2.1'
GUID = 'ebba55f0-7da9-4b2b-811f-e325c1124bdb'
Author = 'Shmueli Englard'
CompanyName = 'Shmuelie'
Expand Down