13
No changes from 0.13rc
24
* New command ``bzr remove-tree`` allows the removal of the working
28
* urllib uses shared keep-alive connections, so HTTP operations are substantially faster.
29
(Vincent Ladeuil, #53654)
31
* ``bzr export`` allows an optional branch parameter, to export a bzr
32
tree from some other URL. For example:
33
``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
36
* Added ``bzr help topics`` to the bzr help system. This gives a
37
location for general information, outside of a specific command.
38
This includes updates for ``bzr help revisionspec`` the first topic
39
included. (Goffredo Baroncelli, John Arbash Meinel, #42714)
41
* WSGI-compatible HTTP smart server. See ``doc/http_smart_server.txt``.
44
* Knit files will now cache full texts only when the size of the
45
deltas is as large as the size of the fulltext. (Or after 200
46
deltas, whichever comes first). This has the most benefit on large
47
files with small changes, such as the inventory for a large project.
48
(eg For a project with 2500 files, and 7500 revisions, it changes
49
the size of inventory.knit from 11MB to 5.4MB) (John Arbash Meinel)
54
* New -D option given before the command line turns on debugging output
55
for particular areas. -Derror shows tracebacks on all errors.
58
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
59
and remove benchmarks that take longer than 10min to run.
62
* Use ``time.time()`` instead of ``time.clock()`` to decide on
63
progress throttling. Because ``time.clock()`` is actually CPU time,
64
so over a high-latency connection, too many updates get throttled.
67
* ``MemoryTransport.list_dir()`` would strip the first character for
68
files or directories in root directory. (John Arbash Meinel)
70
* New method ``get_branch_reference`` on 'BzrDir' allows the detection of
71
branch references - which the smart server component needs.
73
* New ``ChrootTransportDecorator``, accessible via the ``chroot+`` URL
74
prefix. It disallows any access to locations above a set URL. (Andrew
80
* Now ``_KnitIndex`` properly decode revision ids when loading index data.
81
And optimize the knit index parsing code.
82
(Dmitry Vasiliev, John Arbash Meinel)
84
* ``bzrlib/bzrdir.py`` was directly referencing ``bzrlib.workingtree``,
85
without importing it. This prevented ``bzr upgrade`` from working
86
unless a plugin already imported ``bzrlib.workingtree``
87
(John Arbash Meinel, #70716)
89
* Suppress the traceback on invalid URLs (Vincent Ladeuil, #70803).
91
* Give nicer error message when an HTTP server returns a 403
92
error code. (Vincent Ladeuil, #57644).
94
* When a multi-range HTTP GET request fails, try a single
95
range one. If it fails too, forget about ranges. Remember that until
96
the death of the transport and propagates that to the clones.
97
(Vincent Ladeuil, #62276, #62029).
99
* Handles user/passwords supplied in URL from command
100
line (for the urllib implementation). Don't request already
101
known passwords (Vincent Ladeuil, #42383, #44647, #48527)
103
* ``_KnitIndex.add_versions()`` dictionary compresses revision ids as they
104
are added. This fixes bug where fetching remote revisions records
105
them as full references rather than integers.
106
(John Arbash Meinel, #64789)
108
* ``bzr ignore`` strips trailing slashes in patterns.
109
Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
111
* ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
113
* mv correctly handles paths that traverse symlinks.
114
(Aaron Bentley, #66964)
116
* Give nicer looking error messages when failing to connect over SSH.
117
(John Arbash Meinel, #49172)
119
* Pushing to a remote branch does not currently update the remote working
120
tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
121
machine now show that the working tree is out of date.
122
(Cheuksan Edward Wang #48136)
124
* Use patiencediff instead of difflib for determining deltas to insert
125
into knits. This avoids the O(N^3) behavior of difflib. Patience
126
diff should be O(N^2). (Cheuksan Edward Wang, #65714)
128
* Running ``bzr log`` on nonexistent file gives an error instead of the
129
entire log history. (Cheuksan Edward Wang #50793)
131
* ``bzr cat`` can look up contents of removed or renamed files. If the
132
pathname is ambiguous, i.e. the files in the old and new trees have
133
different id's, the default is the file in the new tree. The user can
134
use "--name-from-revision" to select the file in the old tree.
135
(Cheuksan Edward Wang, #30190)
140
* TestingHTTPRequestHandler really handles the Range header
141
(previously it was ignoring it and returning the whole file,).
145
vim: tw=74 ft=rst ff=unix