/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Vincent Ladeuil
  • Date: 2010-05-06 20:05:01 UTC
  • mto: (5355.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5356.
  • Revision ID: v.ladeuil+lp@free.fr-20100506200501-ho03kicl06m5lbgg
Some cosmetic tweaks and special char escaping.

* bzrlib/tests/doc_generate/builders/test_texinfo.py:
(TestTextGeneration.test_special_chars): Test all the used special
chars.

* bzrlib/doc_generate/writers/texinfo.py:
(TexinfoTranslator.depart_Text): texinfo requires some special
chars to be protected.
(TexinfoTranslator.depart_table): Leave an empty line after a table.

* bzrlib/doc_generate/builders/texinfo.py:
(TexinfoBuilder.get_target_uri): We really want the finally
produced document.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
New Features
17
17
************
18
18
 
19
 
* ``bzr commit`` accepts ``-p`` (for "patch") as a shorter name for
20
 
  ``--show-diff``.
21
 
  (Parth Malwankar, #571467)
22
 
  
23
19
* ``bzr ignore`` now supports a ``--default-rules`` option that displays
24
20
  the default ignore rules used by bzr. The flag ``--old-default-rules``
25
21
  is no longer supported by ``ignore``.
52
48
* Don't mention --no-strict when we just issue the warning about unclean trees.
53
49
  (Vincent Ladeuil, #401599)
54
50
 
55
 
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
56
 
  versions before 1.6.
57
 
  (Andrew Bennetts, #528041)
58
 
 
59
51
* Reduce peak memory by one copy of compressed text.
60
52
  (John Arbash Meinel, #566940)
61
53
 
81
73
Documentation
82
74
*************
83
75
 
 
76
* First tests defined for sphinx, including a new bzrlib.tests.features.sphinx
 
77
  to make the tests conditional.
 
78
  (Vincent Ladeuil)
 
79
 
84
80
API Changes
85
81
***********
86
82
 
99
95
Internals
100
96
*********
101
97
 
102
 
* ``_remember_remote_is_before`` no longer raises AssertionError when
103
 
  suboptimal network behaviour is noticed; instead it just mutters to the
104
 
  log file (and warns the user if they have set the ``hpss`` debug flag).
105
 
  This was causing unnecessary aborts for performance bugs that are minor
106
 
  at worst.
107
 
  (Andrew Bennetts, #528041)
108
 
 
109
98
* Permit bzr to run under ``python -OO`` which reduces the size of bytecode
110
99
  files loaded from disk. To ensure docstrings needed for help are never
111
100
  stripped, the prefix ``__doc__ =`` should now be used.
188
177
  -rX..Y.
189
178
  (Vincent Ladeuil, #474807)
190
179
 
191
 
* Properly handle ``param_name`` attribute for ``ListOption``.
192
 
  (Martin von Gagern, 387117)
193
 
 
194
180
Improvements
195
181
************
196
182
 
523
509
  happens, and another warning will be written if the log file could not
524
510
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
525
511
 
526
 
bzr 2.1.2
527
 
#########
528
 
 
529
 
:2.1.2: NOT RELEASED YET
530
 
 
531
 
Bug Fixes
532
 
*********
533
 
 
534
 
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
535
 
  (Aaron Bentley, #559436)
536
 
 
537
 
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
538
 
  versions before 1.6.
539
 
  (Andrew Bennetts, #528041)
540
 
 
541
 
* Reset ``siginterrupt`` flag to False every time we handle a signal
542
 
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
543
 
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
544
 
  errors after two window resizes.
545
 
  (Andrew Bennetts)
546
 
 
547
 
Internals
548
 
*********
549
 
 
550
 
* ``_remember_remote_is_before`` no longer raises AssertionError when
551
 
  suboptimal network behaviour is noticed; instead it just mutters to the
552
 
  log file (and warns the user if they have set the ``hpss`` debug flag).
553
 
  This was causing unnecessary aborts for performance bugs that are minor
554
 
  at worst.
555
 
  (Andrew Bennetts, #528041)
556
 
 
557
 
 
558
512
bzr 2.1.1
559
513
#########
560
514
 
588
542
  problems importing bzrlib from a non-main thread.
589
543
  (Elliot Murphy, #521989)
590
544
 
591
 
* Repositories accessed via a smart server now reject being stacked on a
592
 
  repository in an incompatible format, as is the case when accessing them
593
 
  via other methods.  This was causing fetches from those repositories via
594
 
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
595
 
  (Andrew Bennetts, #562380)
596
 
 
597
545
* Standardize the error handling when creating a new ``StaticTuple``
598
546
  (problems will raise TypeError). (Matt Nordhoff, #457979)
599
547