File: 2.91.0.org

package info (click to toggle)
magit 2.90.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,212 kB
  • sloc: lisp: 22,004; makefile: 476; sh: 16
file content (38 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
* Magit v2.91.0 Release Notes (unreleased)
** Breaking changes
** Changes since v2.90.0

- Added ~bug-reference-mode~ to ~git-commit-setup-hook~.  e19e8fb1e

- The "Version" column in ~magit-submodule-list-mode~ and
  ~magit-repolist-mode~ buffers now shows when a repository is dirty.
  0b86dbfd6

- Added new command ~magit-log-merged~.  This command requires
  ~git-when-merged~ (https://github.com/mhagger/git-when-merged).  It
  isn't bound in ~magit-log-popup~ by default.  To add it, you can use
  something like

  #+BEGIN_SRC emacs-lisp
    (magit-define-popup-action 'magit-log-popup
      ?m "Log commit's merge" 'magit-log-merged)
  #+END_SRC

  #3657

- The option ~magit-repository-directories~ defaults to ~nil~ again
  because the non-nil default added in v2.90.0 lead to surprising
  changes in behavior.  Related to that, ~magit-status~'s documentation
  was made less ambigious.  #3673

** Fixes since v2.90.0

- Bumped the minimal required version of ~git-commit~ to the correct
  version.  e9bd33758

- Dropped the new "v" prefix that we started to add to release tags
  starting with the previous release in places where that prefix is
  undesirable.  f441cf6d7

- Staging and unstaging submodules while ~diff.submodule~'s value is ~log~
  broke shortly before the v2.90.0 release.  #3654