Skip to content

Latest commit

Β 

History

History
88 lines (58 loc) Β· 3.46 KB

CHANGELOG.md

File metadata and controls

88 lines (58 loc) Β· 3.46 KB

Changelog

2.2.0

  • Add log messages
  • Fix for conflict handling, get the state correctly (PR 88)
  • Drop support for Python 3.7 (PR 90)

2.1.0

  • Mix fixes: #28, #29, #31, #32, #33, #34, #36

2.0.0

  • Support the main branch by default (PR 23). To use a different default branch, please configure it in the .cherry-picker.toml file.

  • Renamed cherry-picker's own default branch to main

1.3.2

  • Use --no-tags option when fetching upstream (PR 319)

1.3.1

  • Modernize cherry_picker's pyproject.toml file (PR #316)

  • Remove the BACKPORT_COMPLETE state. Unset the states when backport is completed (PR #315)

  • Run Travis CI test on Windows (PR #311)

1.3.0

  • Implement state machine and storing reference to the config used at the beginning of the backport process using commit sha and a repo-local Git config. (PR #295)

1.2.2

  • Relaxed click dependency (PR #302)

1.2.1

  • Validate the branch name to operate on with --continue and fail early if the branch could not have been created by cherry_picker (PR #266)

  • Bugfix: Allow --continue to support version branches that have dashes in them. This is a bugfix of the additional branch versioning schemes introduced in 1.2.0. (PR #265).

  • Bugfix: Be explicit about the branch name on the remote to push the cherry pick to. This allows cherry_picker to work correctly when the user has a git push strategy other than the default configured (PR #264).

1.2.0

  • Add default_branch configuration item. The default is master, which is the default branch for CPython. It can be configured to other branches like, devel, or develop. The default branch is the branch cherry_picker will return to after backporting (PR #254 and Issue #250).

  • Support additional branch versioning schemes, such as something-X.Y, or X.Y-somethingelse. (PR #253 and Issue #251).

1.1.1

  • Change the calls to subprocess to use lists instead of strings. This fixes the bug that affects users in Windows (PR #238).

1.1.0

  • Add fix_commit_msg configuration item. Setting fix_commit_msg to true will replace the issue number in the commit message, from # to GH-. This is the default behavior for CPython. Other projects can opt out by setting it to false (PR #233 and aiohttp issue #2853).

1.0.0

  • Support configuration file by using --config-path option, or by adding .cherry-picker.toml file to the root of the project (Issue #225)