From d96533a91d7a65d05fbc926e31a214f50b50f6c1 Mon Sep 17 00:00:00 2001 From: Ben Gibson Date: Mon, 2 Sep 2024 20:14:21 +0100 Subject: [PATCH 1/2] Update change log --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 From ec9df031a3e47c7e0eb1292edb09497113d6ef7d Mon Sep 17 00:00:00 2001 From: Ben Gibson Date: Mon, 2 Sep 2024 20:37:50 +0100 Subject: [PATCH 2/2] Remove trailing comma --- src/main/kotlin/uk/co/ben_gibson/git/link/url/UrlOptions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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