~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Vincent Ladeuil
  • Date: 2010-04-23 14:15:23 UTC
  • mfrom: (5179.2.1 various)
  • mto: This revision was merged to the branch mainline in revision 5182.
  • Revision ID: v.ladeuil+lp@free.fr-20100423141523-r0loszwxgtdms9jm
Fix NEWS entries incorrectly attributed to 2.2b2 instead of 2.0.6 or 2.2b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
New Features
17
17
************
18
18
 
 
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)
 
23
 
 
24
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
 
25
  can save disk space by deleting obsolete pack files created during the
 
26
  pack operation.
 
27
  (Parth Malwankar, #304320)
 
28
 
19
29
Bug Fixes
20
30
*********
21
31
 
 
32
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
 
33
  (Vincent Ladeuil, #566670)
 
34
 
 
35
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
 
36
  (Vincent Ladeuil, #563997)
 
37
 
22
38
* Reduce peak memory by one copy of compressed text.
23
39
  (John Arbash Meinel, #566940)
24
40
 
25
41
Improvements
26
42
************
27
43
 
 
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)
 
51
 
 
52
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
 
53
  be interpreted as a boolean.
 
54
  (Vincent Ladeuil)
 
55
 
28
56
Documentation
29
57
*************
30
58
 
63
91
* ``bzr diff`` now supports a --format option, which can be used to 
64
92
  select alternative diff formats. (Jelmer Vernooij, #555994)
65
93
 
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)
70
 
 
71
 
* ``bzr pack`` now supports a ``--clean-obsolete-packs`` option that
72
 
  can save disk space by deleting obsolete pack files created during the
73
 
  pack operation.
74
 
  (Parth Malwankar, #304320)
75
 
 
76
94
Bug Fixes
77
95
*********
78
96
 
91
109
  into the master branch will no longer claim that old commits have become
92
110
  pending merges. (Robert Collins, #562079)
93
111
 
94
 
* ``bzr selftest --parallel=fork`` wait for its children avoiding zombies.
95
 
  (Vincent Ladeuil, #566670)
96
 
 
97
112
* ``bzrlib.mutabletree.MutableTree.commit`` will now support a passed in
98
113
  config as in previous versions of bzrlib. (Robert Collins)
99
114
 
100
 
* ``bzr selftest`` should not use ui.note() since it's not unicode safe.
101
 
  (Vincent Ladeuil, #563997)
102
 
 
103
115
* Fix glitch in the warning about unclean trees display.
104
116
  (Vincent Ladeuil, #562665)
105
117
 
115
127
  which is not installed any more" error.
116
128
  (Martin Pool, James Westby, #528114)
117
129
 
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)
123
 
 
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"
576
582
Improvements
577
583
************
578
584
 
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)
586
 
 
587
 
* ``Config.get_user_option_as_bool`` will now warn if a value cannot
588
 
  be interpreted as a boolean.
589
 
  (Vincent Ladeuil)
590
 
 
591
585
* Fetching into experimental formats will now print a warning. (Jelmer
592
586
  Vernooij)
593
587
 
912
906
  permissions as ``.bzr`` directory on a POSIX OS.
913
907
  (Parth Malwankar, #262450)
914
908
 
 
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)
915
914
 
916
915
bzr 2.0.5
917
916
#########