Skip to content

Commit

Permalink
Update change log (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-gibson authored Sep 2, 2024
1 parent e1d25dc commit 6ab68ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,18 @@

## Unreleased

- Fix BitBucket cloud URL generation when the remote contains scm (#333)
- Remove dash character from GitLab URLs (#328)
- Add actions to the Git History tool window (#336)
- Support branch substitution in commit templates (#337)
- Improve Azure support (#334)
- Fix deprecations and warnings.

## 4.4.0 - 2023-12-02
- Add sourcehut support

## 4.3.6 - 2023-08-30
- Fix Azure URL generation for remotes contaning company name
- Fix Azure URL generation for remotes containing company name

## 4.3.5 - 2023-07-16
- Fix Azure commit URL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import uk.co.ben_gibson.git.link.git.File
import uk.co.ben_gibson.git.link.ui.LineSelection

sealed interface UrlOptions {
class UrlOptionsCommit(val commit: Commit, val currentBranch: String,) : UrlOptions
class UrlOptionsCommit(val commit: Commit, val currentBranch: String) : UrlOptions
class UrlOptionsFileAtCommit(val file: File, val currentBranch: String, val commit: Commit, val lineSelection: LineSelection? = null) : UrlOptions
class UrlOptionsFileAtBranch(val file: File, val branch: String, val lineSelection: LineSelection? = null) : UrlOptions
}

0 comments on commit 6ab68ff

Please sign in to comment.