-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## <a name="v0.7.0">v0.7.0</a> - 2024-10-02 | ||
|
||
This release contains significant changes to internal state management to prevent corruption. | ||
If you run into any issues, please [report them here](https://github.com/abhinav/git-spice/issues/new). | ||
|
||
### Changed | ||
- branch delete: Accept multiple branches for deletion. | ||
- Branch selection widget is now smarter about prioritizing fuzzy matches. | ||
### Fixed | ||
- branch create: Prevent creation of tracked branches with untracked bases as this leaves the storage in a corrupted state. | ||
- repo init: Don't leave dangling branch references when trunk is changed. | ||
- branch create: Don't commit staged changes if git-spice is unable to save the branch to its internal storage. | ||
- branch onto: Don't rebase the branch if changing its base would corrupt the data store. | ||
- github: Recognize remote URLs in the form `ssh://[email protected]:443/org/repo`. | ||
- repo sync: Fix case when many branches from the same stack are merged, and order of deletion causes a restacking error or conflict. | ||
- repo sync: Reduce the number of redundant operations performed when processing multiple merged branches. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | |
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), | ||
and is generated by [Changie](https://github.com/miniscruff/changie). | ||
|
||
## <a name="v0.7.0">v0.7.0</a> - 2024-10-02 | ||
|
||
This release contains significant changes to internal state management to prevent corruption. | ||
If you run into any issues, please [report them here](https://github.com/abhinav/git-spice/issues/new). | ||
|
||
### Changed | ||
- branch delete: Accept multiple branches for deletion. | ||
- Branch selection widget is now smarter about prioritizing fuzzy matches. | ||
### Fixed | ||
- branch create: Prevent creation of tracked branches with untracked bases as this leaves the storage in a corrupted state. | ||
- repo init: Don't leave dangling branch references when trunk is changed. | ||
- branch create: Don't commit staged changes if git-spice is unable to save the branch to its internal storage. | ||
- branch onto: Don't rebase the branch if changing its base would corrupt the data store. | ||
- github: Recognize remote URLs in the form `ssh://[email protected]:443/org/repo`. | ||
- repo sync: Fix case when many branches from the same stack are merged, and order of deletion causes a restacking error or conflict. | ||
- repo sync: Reduce the number of redundant operations performed when processing multiple merged branches. | ||
|
||
## <a name="v0.6.0">v0.6.0</a> - 2024-09-17 | ||
### Added | ||
- Windows support. | ||
|