~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-20 19:48:22 UTC
  • mfrom: (2474.1.74 dirstate_pyrex)
  • Revision ID: pqm@pqm.ubuntu.com-20070720194822-smqttk05w6efypf0
(John Arbash Meinel) Implement DirState._read_dirblocks() in pyrex

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
  BUGFIXES:
4
4
 
5
 
    * ``bzr init`` should connect to the remote location one time only.  We
6
 
      have been connecting several times because we forget to pass around the
7
 
      Transport object. This modifies ``BzrDir.create_branch_convenience``,
8
 
      so that we can give it the Transport we already have.
9
 
      (John Arbash Meinel, Vincent Ladeuil, #111702)
10
 
 
11
 
    * Get rid of sftp connection cache (get rid of the FTP one too).
12
 
      (Vincent Ladeuil, #43731)
13
 
 
14
 
    * bzr branch {local|remote} remote don't try to create a working tree
15
 
      anymore.
16
 
      (Vincent Ladeuil, #112173)
17
 
 
18
 
    * All identified multiple connections for a single bzr command have been
19
 
      fixed. See bzrlib/tests/commands directory.
20
 
      (Vincent Ladeuil)
21
 
 
22
5
    * ``bzr rm`` now does not insist on ``--force`` to delete files that
23
6
      have been renamed but not otherwise modified.  (Marius Kruger,
24
7
      #111664)
25
8
 
26
 
    * ``bzr selftest --bench`` no longer emits deprecation warnings
27
 
      (Lukáš Lalinský)
28
 
 
29
 
    * ``bzr status`` now honours FILE parameters for conflict lists
30
 
      (Aaron Bentley, #127606)
31
 
 
32
 
    * ``bzr checkout`` now honours -r when reconstituting a working tree.
33
 
      It also honours -r 0.  (Aaron Bentley, #127708)
34
 
 
35
9
  IMPROVEMENTS:
36
10
 
37
11
    * Don't show "dots" progress indicators when run non-interactively, such
80
54
 
81
55
    * Annotate merge now works when there are local changes. (Aaron Bentley)
82
56
 
83
 
    * Commit now only shows the progress in terms of directories instead of
84
 
      entries. (Ian Clatworthy)
85
 
 
86
57
  LIBRARY API BREAKS:
87
58
 
88
59
    * Deprecated dictionary ``bzrlib.option.SHORT_OPTIONS`` removed.
90
61
      comply with the style guide by being one or more sentences with an
91
62
      initial capital and final period. (Martin Pool)
92
63
 
93
 
    * KnitIndex.get_parents now returns tuples. (Robert Collins)
94
 
 
95
64
  INTERNALS:
96
65
 
97
66
    * merge now uses ``iter_changes`` to calculate changes, which makes room for
99
68
      operations that perform comparisons, and reduces reliance on
100
69
      Tree.inventory.  (Aaron Bentley)
101
70
 
102
 
    * Refactoring of transport classes connected to a remote server.
103
 
      ConnectedTransport is a new class that serves as a basis for all
104
 
      transports needing to connect to a remote server.  transport.split_url
105
 
      have been deprecated, use the static method on the object instead. URL
106
 
      tests have been refactored too.
107
 
      (Vincent Ladeuil)
108
 
 
109
 
    * Better connection sharing for ConnectedTransport objects.
110
 
      transport.get_transport() now accepts a 'possible_transports' parameter.
111
 
      If a newly requested transport can share a connection with one of the
112
 
      list, it will.
113
 
      (Vincent Ladeuil)
114
 
 
115
71
    * Most functions now accept ``bzrlib.revision.NULL_REVISION`` to indicate
116
72
      the null revision, and consider using ``None`` for this purpose
117
73
      deprecated.  (Aaron Bentley)
143
99
 
144
100
    * New EmailMessage class to create email messages. (Adeodato Simó)
145
101
 
146
 
    * Unused functions on the private interface KnitIndex have been removed.
147
 
      (Robert Collins)
148
 
 
149
 
    * New ``knit.KnitGraphIndex`` which provides a ``KnitIndex`` layered on top
150
 
      of a ``index.GraphIndex``. (Robert Collins)
151
 
 
152
 
    * New ``knit.KnitVersionedFile.iter_parents`` method that allows querying
153
 
      the parents of many knit nodes at once, reducing round trips to the 
154
 
      underlying index. (Robert Collins)
155
 
 
156
102
  TESTING:
157
103
 
158
104
    * Remove selftest ``--clean-output``, ``--numbered-dirs`` and