diff --git a/CHANGELOG.md b/CHANGELOG.md index 77b78cd..fd6ee88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/main/kotlin/uk/co/ben_gibson/git/link/url/UrlOptions.kt b/src/main/kotlin/uk/co/ben_gibson/git/link/url/UrlOptions.kt index 9c5035d..bf96764 100644 --- a/src/main/kotlin/uk/co/ben_gibson/git/link/url/UrlOptions.kt +++ b/src/main/kotlin/uk/co/ben_gibson/git/link/url/UrlOptions.kt @@ -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 } \ No newline at end of file