~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-01-29 06:04:43 UTC
  • mfrom: (3969.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090129060443-6hvfgxb55cd6r527
Add local & remote revision filtering to missing (Marius Kruger)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
IN DEVELOPMENT
8
8
--------------
9
9
 
10
 
  IMPROVEMENTS:
11
 
 
12
 
    * Progress bars now show the rate of activity for some sftp 
13
 
      operations, and they are drawn different.  (Martin Pool, #172741)
14
 
 
15
 
  BUG FIXES:
16
 
 
17
 
    * ``bzr annotate --show-ids`` doesn't give a backtrace on empty files
18
 
      anymore.
19
 
      (Anne Mohsen, Vincent Ladeuil, #314525)
20
 
 
21
 
    * There was a bug in how we handled resolving when a file is deleted
22
 
      in one branch, and modified in the other. If there was a criss-cross
23
 
      merge, we would cause the deletion to conflict a second time.
24
 
      (Vincent Ladeuil, John Arbash Meinel)
25
 
 
26
 
    * There was another bug in how we chose the correct intermediate LCA in
27
 
      criss-cross merges leading to several kind of changes be incorrectly
28
 
      handled.
29
 
      (John Arbash Meinel, Vincent Ladeuil)
30
 
 
31
10
  COMPATIBILITY BREAKS:
32
11
 
33
12
    * By default, ``bzr status`` after a merge now shows just the pending
42
21
 
43
22
  NEW FEATURES:
44
23
 
 
24
    * Add support for filtering `bzr missing` on revisions.  Remote revisions
 
25
      can be filtered using `bzr missing -r -20..-10` and local revisions can
 
26
      be filtered using `bzr missing --my-revision -20..-10`.
 
27
      (Marius Kruger)
 
28
 
45
29
    * ``bzr log -p`` displays the patch diff for each revision.
46
30
      When logging a file, the diff only includes changes to that file.
47
31
      (Ian Clatworthy, #202331, #227335)
57
41
      before the optional ``[merge]`` indicator. For line format,
58
42
      the tags appear after the date. (Ian Clatworthy)
59
43
 
 
44
    * Progress bars now show the rate of activity for some sftp 
 
45
      operations, and they are drawn different.  (Martin Pool, #172741)
 
46
 
60
47
    * Rule-based preferences can now accept multiple patterns for a set of
61
48
      rules.  (Marius Kruger)
62
49
 
66
53
 
67
54
  BUG FIXES:
68
55
 
 
56
    * ``bzr annotate --show-ids`` doesn't give a backtrace on empty files
 
57
      anymore.
 
58
      (Anne Mohsen, Vincent Ladeuil, #314525)
 
59
 
69
60
    * ``bzr log FILE`` now correctly shows mainline revisions merging
70
61
      a change to FILE when the ``--short`` and ``--line`` log formats
71
62
      are used. (Ian Clatworthy, #317417)
82
73
      a new ``until_no_eintr`` helper function in ``bzrlib.osutils``.
83
74
      (Andrew Bennetts)
84
75
 
 
76
    * There was a bug in how we handled resolving when a file is deleted
 
77
      in one branch, and modified in the other. If there was a criss-cross
 
78
      merge, we would cause the deletion to conflict a second time.
 
79
      (Vincent Ladeuil, John Arbash Meinel)
 
80
 
 
81
    * There was another bug in how we chose the correct intermediate LCA in
 
82
      criss-cross merges leading to several kind of changes be incorrectly
 
83
      handled.
 
84
      (John Arbash Meinel, Vincent Ladeuil)
 
85
 
85
86
  DOCUMENTATION:
86
87
 
87
88
    * Improved plugin developer documentation.  (Martin Pool)