16
* ``bzr help global-options`` describes the global options. (Aaron Bentley)
21
* Skip documentation generation tests if the tools to do so are not
22
available. Fixes running selftest for installled copies of bzr.
23
(John Arbash Meinel, #80330)
25
* Fix the code that discovers whether bzr is being run from it's
26
working tree to handle the case when it isn't but the directory
27
it is in is below a repository. (James Westby, #77306)
38
* New connection: ``bzr+http://`` which supports tunnelling the smart
39
protocol over an HTTP connection. If writing is enabled on the bzr
40
server, then you can write over the HTTP connection.
41
(Andrew Bennetts, John Arbash Meinel)
43
* Aliases now support quotation marks, so they can contain whitespace
46
* PyCurlTransport now use a single curl object. By specifying explicitly
47
the 'Range' header, we avoid the need to use two different curl objects
48
(and two connections to the same server). (Vincent Ladeuil)
50
* ``bzr commit`` does not prompt for a message until it is very likely to
51
succeed. (Aaron Bentley)
53
* ``bzr conflicts`` now takes --text to list pathnames of text conflicts
56
* Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
57
of a list while checking if a revision id was requested. Takes 10s
58
off of the ``fileids_affected_by_revision_ids`` time, which is 10s
59
of the ``bzr branch`` time. Also improve ``fileids_...`` time by
60
filtering lines with a regex rather than multiple ``str.find()``
61
calls. (saves another 300ms) (John Arbash Meinel)
63
* Policy can be set for each configuration key. This allows keys to be
64
inherited properly across configuration entries. For example, this
65
should enable you to do::
68
push_location = sftp://host/srv/project/
69
push_location:policy = appendpath
71
And then a branch like ``/home/user/project/mybranch`` should get an
72
automatic push location of ``sftp://host/srv/project/mybranch``.
75
* Added ``bzr status --short`` to make status report svn style flags
76
for each file. For example::
84
* 'bzr selftest --clean-output' allows easily clean temporary tests
85
directories without running tests. (Alexander Belchenko)
87
* ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley)
89
* ``bzr merge`` now has an option ``--pull`` to fall back to pull if
90
local is fully merged into remote. (Jan Hudec)
92
* ``bzr help formats`` describes available directory formats. (Aaron Bentley)
97
* A few tweaks directly to ``fileids_affected_by_revision_ids`` to
98
help speed up processing, as well allowing to extract unannotated
99
lines. Between the two ``fileids_affected_by_revision_ids`` is
100
improved by approx 10%. (John Arbash Meinel)
102
* Change Revision serialization to only write out millisecond
103
resolution. Rather than expecting floating point serialization to
104
preserve more resolution than we need. (Henri Weichers, Martin Pool)
106
* Test suite ends cleanly on Windows. (Vincent Ladeuil)
108
* When ``encoding_type`` attribute of class Command is equal to 'exact',
109
force sys.stdout to be a binary stream on Windows, and therefore
110
keep exact line-endings (without LF -> CRLF conversion).
111
(Alexander Belchenko)
113
* Single-letter short options are no longer globally declared. (Martin
116
* Before using detected user/terminal encoding bzr should check
117
that Python has corresponding codec. (Alexander Belchenko)
119
* Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley)
124
* ``bzr missing --verbose`` was showing adds/removals in the wrong
125
direction. (John Arbash Meinel)
127
* ``bzr annotate`` now defaults to showing dotted revnos for merged
128
revisions. It cuts them off at a depth of 12 characters, but you can
129
supply ``--long`` to see the full number. You can also use
130
``--show-ids`` to display the original revision ids, rather than
131
revision numbers and committer names. (John Arbash Meinel, #75637)
133
* bzr now supports Win32 UNC path (e.g. ``\HOST\path``.
134
(Alexander Belchenko, #57869)
136
* Win32-specific: output of cat, bundle and diff commands don't mangle
137
line-endings (Alexander Belchenko, #55276)
139
* Replace broken fnmatch based ignore pattern matching with custom pattern
141
(Kent Gibson, Jan Hudec #57637)
143
* pycurl and urllib can detect short reads at different places. Update
144
the test suite to test more cases. Also detect HTTP error code 416
145
which was raised for that specific bug. Also enhance the urllib
146
robustness by detecting invalid ranges (and pycurl's one by detecting
147
short reads during the initial GET). (Vincent Ladeuil, #73948)
149
* The urllib connection sharing interacts badly with urllib2
150
proxy setting (the connections didn't go thru the proxy
151
anymore). Defining a proper ProxyHandler solves the
152
problem. (Vincent Ladeuil, #74759)
154
* Use urlutils to generate relative URLs, not osutils
155
(Aaron Bentley, #76229)
157
* ``bzr status`` in a readonly directory should work without giving
158
lots of errors. (John Arbash Meinel, #76299)
160
* Mention the revisionspec topic for the revision option help.
161
(Wouter van Heyst, #31663)
163
* Allow plugins import from zip archives.
164
(Alexander Belchenko, #68124)
168
vim: tw=74 ft=rst ff=unix