/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
  IMPROVEMENTS:
4
4
 
 
5
    * New command ``bzr remove-tree`` allows the removal of the working
 
6
      tree from a branch.
 
7
      (Daniel Silverstone)
 
8
 
5
9
    * ``bzr export`` allows an optional branch parameter, to export a bzr
6
10
      tree from some other url. For example:
7
11
      ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
8
12
      (Daniel Silverstone)
9
13
 
 
14
    * Added ``bzr help topics`` to the bzr help system. This gives a
 
15
      location for general information, outside of a specific command.
 
16
      This includes updates for ``bzr help revisionspec`` the first topic
 
17
      included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
 
18
      
10
19
    * WSGI-compatible HTTP smart server.  See ``doc/http_smart_server.txt``.
11
20
      (Andrew Bennetts)
12
21
 
13
22
  INTERNALS:
14
23
 
 
24
    * New -D option given before the command line turns on debugging output
 
25
      for particular areas.  -Derror shows tracebacks on all errors.
 
26
      (Martin Pool)
 
27
 
15
28
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
16
29
      and remove benchmarks that take longer than 10min to run.
17
30
      (John Arbash Meinel)
 
31
 
 
32
    * Use ``time.time()`` instead of ``time.clock()`` to decide on
 
33
      progress throttling. Because ``time.clock()`` is actually CPU time,
 
34
      so over a high-latency connection, too many updates get throttled.
 
35
      (John Arbash Meinel)
 
36
 
 
37
    * ``MemoryTransport.list_dir()`` would strip the first character for
 
38
      files or directories in root directory. (John Arbash Meinel)
18
39
  
 
40
    * New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
 
41
      prefix.  It disallows any access to locations above a set URL.  (Andrew
 
42
      Bennetts)
 
43
 
19
44
  BUG FIXES:
20
45
 
 
46
    * ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
 
47
      without importing it. This prevented ``bzr upgrade`` from working
 
48
      unless a plugin already imported ``bzrlib.workingtree``
 
49
      (John Arbash Meinel, #70716)
 
50
 
 
51
    * _KnitIndex.add_versions() dictionary compresses revision ids as they
 
52
      are added. This fixes bug where fetching remote revisions records
 
53
      them as full references rather than integers. (John Arbash Meinel,
 
54
      #64789)
 
55
 
21
56
    * ``bzr ignore`` strips trailing slashes in patterns.
22
57
      Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
23
58
 
104
139
      ``--no-plugins`` parameter to ensure test reproducability, and avoid
105
140
      problems with system-wide installed plugins. (John Arbash Meinel)
106
141
 
107
 
<<<<<<< TREE
108
 
    * New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
109
 
      prefix.  It disallows any access to locations above a set URL.  (Andrew
110
 
      Bennetts)
111
 
 
112
 
=======
113
142
    * Unique tree root ids are now supported. Newly created trees still
114
143
      use the common root id for compatibility with bzr versions before 0.12.
115
144
      (Aaron Bentley)
133
162
    * ``LogFormatter.show_merge`` is deprecated in favour of
134
163
      ``LogFormatter.show_merge_revno``. (Robert Collins)
135
164
 
136
 
>>>>>>> MERGE-SOURCE
137
165
  BUG FIXES:
138
166
 
139
167
    * Avoid circular imports by creating a deprecated function for
168
196
 
169
197
    * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
170
198
 
 
199
    * If a commit fails, the commit message is stored in a file at the root of
 
200
      the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
201
      #32054)
 
202
 
171
203
  TESTING:
172
204
 
173
205
    * New test base class TestCaseWithMemoryTransport offers memory-only