Skip to content

Commit

Permalink
Audit beta3 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlbyk committed Mar 10, 2019
1 parent 3294be1 commit e74d6e7
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@

- BREAKING: Removed SSH agent functionality from `posh-git` and put into another module focused solely on
Git SSH support. See [posh-sshell](https://github.com/dahlbyk/posh-sshell).
([#338](https://github.com/dahlbyk/posh-git/issues/338))
([PR #585](https://github.com/dahlbyk/posh-git/pull/585))
- BREAKING: Removed `PoshGitTextSpan.CustomAnsi` property - now just put your custom VT sequences in the
`PoshGitTextSpan.Text` property. Be sure to terminate your VT sequences with `"$([char]27)[0m"` or
``` "`e[0m" ``` on PowerShell Core.
([PR #616](https://github.com/dahlbyk/posh-git/pull/616))

### Added

Expand All @@ -20,10 +23,10 @@
([#549](https://github.com/dahlbyk/posh-git/issues/549))
([PR #581](https://github.com/dahlbyk/posh-git/pull/581))
Thanks David Gardiner (@flcdrg)
- Enhance prompt function to show username/hostname in SSH connection. Adds Get-PromptConnectionInfo command.
- Enhance prompt function to show username/hostname in SSH connection. Adds `Get-PromptConnectionInfo` command.
([#591](https://github.com/dahlbyk/posh-git/issues/591))
([PR #595](https://github.com/dahlbyk/posh-git/pull/595))
- Show Rebase Progress (plus |REVERTING).
- Show Rebase Progress (plus `|REVERTING`).
([#102](https://github.com/dahlbyk/posh-git/issues/102))
([PR #599](https://github.com/dahlbyk/posh-git/pull/599))
- Set `$Env:COLUMNS` on prompt if necessary.
Expand All @@ -32,8 +35,10 @@
([PR #620](https://github.com/dahlbyk/posh-git/pull/620))
Thanks Vasily Korytov (@chillum)
- Tab-completion for `git update-git-for-windows` on Windows Git >= 2.16.2.
- New-GitPromptSettings to provide an easy way to create a PoshGitPromptSettings object which can be used to
([PR #642](https://github.com/dahlbyk/posh-git/pull/642))
- `New-GitPromptSettings` to provide an easy way to create a `PoshGitPromptSettings` object which can be used to
reset to the default settings.
([PR #659](https://github.com/dahlbyk/posh-git/pull/659))

### Changed

Expand All @@ -47,17 +52,16 @@

### Fixed

- WindowTitle set by user overwritten by module. No longer updates Window title if WindowTitle setting set to $null.
- `WindowTitle` set by user overwritten by module. No longer updates Window title if `WindowTitle` setting set to `$null`.
([#594](https://github.com/dahlbyk/posh-git/issues/594))
([PR #597](https://github.com/dahlbyk/posh-git/pull/597))
- `Write-VcsStatus` behaving differently. When AnsiConsole -eq $false, Write-VcsStatus must not emit any strings.
- `Write-VcsStatus` behaving differently. When `AnsiConsole -eq $false`, `Write-VcsStatus` must not emit any strings.
([#612](https://github.com/dahlbyk/posh-git/issues/612))
([PR #617](https://github.com/dahlbyk/posh-git/pull/617))
- Skip the ConsoleMode hack for new Windows versions. On Windows PowerShell, defer `Add-Type` until
Set-ConsoleMode executed. On PowerShell Core, do not change console mode at all since PowerShell does this
automatically. This improves module load time.
- On Windows PowerShell, defer `Add-Type` until `Set-ConsoleMode` executed. This improves module load time.
([#637](https://github.com/dahlbyk/posh-git/issues/637))
([PR #638](https://github.com/dahlbyk/posh-git/pull/638))
([PR #662](https://github.com/dahlbyk/posh-git/pull/662))
- How do you manually install this? Added manual instructions for git clone of posh-git to README.md.
([#648](https://github.com/dahlbyk/posh-git/issues/648))
([PR #649](https://github.com/dahlbyk/posh-git/pull/649))
Expand Down

0 comments on commit e74d6e7

Please sign in to comment.