5
5
* urllib implements keep-alive connections and share them
6
6
(Vincent Ladeuil, #53654)
8
* ``bzr export`` allows an optional branch parameter, to export a bzr
9
tree from some other url. For example:
10
``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
15
* New -D option given before the command line turns on debugging output
16
for particular areas. -Derror shows tracebacks on all errors.
19
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
20
and remove benchmarks that take longer than 10min to run.
23
* Use ``time.time()`` instead of ``time.clock()`` to decide on
24
progress throttling. Because ``time.clock()`` is actually CPU time,
25
so over a high-latency connection, too many updates get throttled.
28
* ``MemoryTransport.list_dir()`` would strip the first character for
29
files or directories in root directory. (John Arbash Meinel)
12
33
* Give nicer error message when an http server returns a 403
21
42
line (for the urllib implementation). Don't request already
22
43
known passwords (Vincent Ladeuil, #42383, #44647, #48527)
45
* _KnitIndex.add_versions() dictionary compresses revision ids as they
46
are added. This fixes bug where fetching remote revisions records
47
them as full references rather than integers. (John Arbash Meinel,
50
* ``bzr ignore`` strips trailing slashes in patterns.
51
Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
53
* ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
55
* mv correctly handles paths that traverse symlinks.
56
(Aaron Bentley, #66964)
58
* Give nicer looking error messages when failing to connect over ssh.
59
(John Arbash Meinel, #49172)
61
* Pushing to a remote branch does not currently update the remote working
62
tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
63
machine now show that the working tree is out of date.
64
(Cheuksan Edward Wang #48136)
66
* Use patiencediff instead of difflib for determining deltas to insert
67
into knits. This avoids the O(N^3) behavior of difflib. Patience
68
diff should be O(N^2). (Cheuksan Edward Wang, #65714)
70
* Running ``bzr log`` on nonexistent file gives an error instead of the
71
entire log history. (Cheuksan Edward Wang #50793)
73
* ``bzr cat`` can look up contents of removed or renamed files. If the
74
pathname is ambiguous, i.e. the files in the old and new trees have
75
different id's, the default is the file in the new tree. The user can
76
use "--name-from-revision" to select the file in the old tree.
77
(Cheuksan Edward Wang, #30190)
26
81
* TestingHTTPRequestHandler really handles the Range header
27
82
(previously it was ignoring it and returning the whole file,).
89
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
90
and remove benchmarks that take longer than 10min to run.
30
93
bzr 0.12rc1 2006-10-23
131
194
* Leave HttpTransportBase daughter classes decides how they
132
195
implement cloning. (Vincent Ladeuil, #61606)
134
* diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
197
* diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
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,