Skip to content

Releases: sheldonhull/az-pr

v0.5.1

11 Apr 20:56
1d3ff07
Compare
Choose a tag to compare

v0.5.1 - 2024-04-11

🔨 Refactor

  • SSH support was weak.
    While it would detect the upstream branch, the detection logic for repository name and project don't work on SSH cloned repos.
    Now the project name and repo name will be extracted for repos that follow the normal dev.azure.com structure.
    No support for visualstudio.com based references since you can use dev.azure.com style format with those anyway.

v0.5.0

27 Mar 20:18
0e0767b
Compare
Choose a tag to compare

v0.5.0 - 2024-03-27

🎉 Feature

  • Use huh charm library for an interactive terminal form that allows field navigation. This should let you tab through and edit values instead of restarting command if an error is made.

v0.3.1

18 Sep 23:19
Compare
Choose a tag to compare

v0.3.1 - 2023-09-18

🔨 Refactor

  • Adjust the sort order to more commonly chosen values to the commit type top of the list.
  • Behavior might have changed in Azure Repos, as noticed PR's didn't seem to honor the title of the PR during merge now. By setting --merge-commit-message my test shows it correctly sets. Note this means the Merged # prefix is no longer set upon merge.

v0.3.0

08 Jul 20:51
Compare
Choose a tag to compare

v0.3.0 - 2023-07-08

🎉 Feature

  • When using SSH, a target branch can't be automatically detected for the pull request creation.
    This will automatically evaluate for main/master and set for SSH as before. However, now when using https type clones, the target branch isn't set by default, which will create the pull request targeted at the default upstream branch.
    Eliminates any issues with repos that don't use main as convention (for example dev/develop/trunk as the main development branch).
  • Occasionally tools like this run into issues... obviously not my code... 👀 When
    working through those, I'd have to keep rerunning the PR process. This now outputs
    the escaped shell command that should reasonably work on windows/linux/mac on error
    (or debug). Should be a good quality of life for anyone using and running into a failure.

v0.2.4

10 May 23:33
Compare
Choose a tag to compare

v0.2.4 - 2023-05-10

🐛 Bug Fix

  • Fix string formatting issue with installAzureCLI.

v0.2.3

10 May 23:30
Compare
Choose a tag to compare

v0.2.3 - 2023-05-10

🔨 Refactor

  • Don't install azure-cli if it is already found in path.

v0.2.2

10 May 23:23
Compare
Choose a tag to compare

v0.2.2 - 2023-05-10

🐛 Bug Fix

  • Add back code that was used.
    #ShouldHaveHadUnitTests
    #TDDWouldHaveSolvedThis

v0.2.1

10 May 23:14
Compare
Choose a tag to compare

v0.2.1 - 2023-05-10

🔨 Refactor

  • Remove embedded bubbletea confetti call and just use the great confetty github project cli directly.

v0.2.0

17 Feb 01:16
Compare
Choose a tag to compare

v0.2.0 - 2023-02-16

🎉 Feature

  • When running az-pr by itself, it uses boa (powered by Bubbletea from Charm) to allow exploration of the subcommands and help content.
    This might be replaced later, but is a nice experiment for better user exploration without running --help on every level of subcommand.
  • Link workitems via az-pr new.
    This runs a post step after creation due to limitations on the azure-cli to associate work-items on a created pull request.
    Whatever is linked will be automatically set to complete once the pull request is merged.
    Additionally, allow selection of draft true/false when creating.
  • Enter into confetty mode after running. Rough work in progress, so press ctrl+c to exit after it triggers.
    Why? The world needs more confetty and tacos.

v0.1.3

13 Feb 21:46
Compare
Choose a tag to compare

v0.1.3 - 2023-02-13

🔨 Refactor

  • The output from the azure-cli is now captured and parsed to construct a clickable url in the terminal output for the pull request. This helps support cases where the environment doesn't work with the azure-cli --open flag, such as devcontainers, remote ssh, and other remote environments.

🐛 Bug Fix

  • Fix output formatting that was using println without formatting directive in init() command.