19
* ``bzr ignore`` now supports a ``--default-rules`` option that displays
20
the default ignore rules used by bzr. The flag ``--old-default-rules``
21
is no longer supported by ``ignore``.
22
(Parth Malwankar, #538703)
24
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
25
can save disk space by deleting obsolete pack files created during the
27
(Parth Malwankar, #304320)
32
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
33
(Vincent Ladeuil, #566670)
35
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
36
(Vincent Ladeuil, #563997)
22
38
* Reduce peak memory by one copy of compressed text.
23
39
(John Arbash Meinel, #566940)
44
* ``append_revisions_only`` will no be interpreted as a boolean and a
45
warning emitted if illegal values are used. Note that for projects
46
that needs to maintain compatibility with previsous bzr versions,
47
only 'True' and 'False' strings must be used (previous versions of
48
bzr will interpret all strings differing from 'True'
49
(case-sensitive) as false.
50
(Brian de Alwis, Vincent Ladeuil)
52
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
53
be interpreted as a boolean.
63
91
* ``bzr diff`` now supports a --format option, which can be used to
64
92
select alternative diff formats. (Jelmer Vernooij, #555994)
66
* ``bzr ignore`` now supports a ``--default-rules`` option that displays
67
the default ignore rules used by bzr. The flag ``--old-default-rules``
68
is no longer supported by ``ignore``.
69
(Parth Malwankar, #538703)
71
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
72
can save disk space by deleting obsolete pack files created during the
74
(Parth Malwankar, #304320)
91
109
into the master branch will no longer claim that old commits have become
92
110
pending merges. (Robert Collins, #562079)
94
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
95
(Vincent Ladeuil, #566670)
97
112
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
98
113
config as in previous versions of bzrlib. (Robert Collins)
100
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
101
(Vincent Ladeuil, #563997)
103
115
* Fix glitch in the warning about unclean trees display.
104
116
(Vincent Ladeuil, #562665)
115
127
which is not installed any more" error.
116
128
(Martin Pool, James Westby, #528114)
118
* Repositories accessed via a smart server now reject being stacked on a
119
repository in an incompatible format, as is the case when accessing them
120
via other methods. This was causing fetches from those repositories via
121
a smart server (e.g. using ``bzr branch``) to receive invalid data.
122
(Andrew Bennetts, #562380)
124
130
* Reset ``siginterrupt`` flag to False every time we handle a signal
125
131
installed with ``set_signal_handler(..., restart_syscall=True)`` (from
126
132
``bzrlib.osutils``. Reduces the likelihood of "Interrupted System Call"
579
* ``append_revisions_only`` will no be interpreted as a boolean and a
580
warning emitted if illegal values are used. Note that for projects
581
that needs to maintain compatibility with previsous bzr versions,
582
only 'True' and 'False' strings must be used (previous versions of
583
bzr will interpret all strings differing from 'True'
584
(case-sensitive) as false.
585
(Brian de Alwis, Vincent Ladeuil)
587
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
588
be interpreted as a boolean.
591
585
* Fetching into experimental formats will now print a warning. (Jelmer
912
906
permissions as ``.bzr`` directory on a POSIX OS.
913
907
(Parth Malwankar, #262450)
909
* Repositories accessed via a smart server now reject being stacked on a
910
repository in an incompatible format, as is the case when accessing them
911
via other methods. This was causing fetches from those repositories via
912
a smart server (e.g. using ``bzr branch``) to receive invalid data.
913
(Andrew Bennetts, #562380)