~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Andrew Bennetts
  • Date: 2010-05-03 04:08:50 UTC
  • mfrom: (4797.43.8 2.1)
  • mto: This revision was merged to the branch mainline in revision 5199.
  • Revision ID: andrew.bennetts@canonical.com-20100503040850-wm4v7qx6wx3u7ns1
Merge lp:bzr/2.1 into lp:bzr, including fix for #528041.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
* Don't mention --no-strict when we just issue the warning about unclean trees.
53
53
  (Vincent Ladeuil, #401599)
54
54
 
 
55
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
 
56
  versions before 1.6.
 
57
  (Andrew Bennetts, #528041)
 
58
 
55
59
* Reduce peak memory by one copy of compressed text.
56
60
  (John Arbash Meinel, #566940)
57
61
 
95
99
Internals
96
100
*********
97
101
 
 
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
 
98
109
* Permit bzr to run under ``python -OO`` which reduces the size of bytecode
99
110
  files loaded from disk. To ensure docstrings needed for help are never
100
111
  stripped, the prefix ``__doc__ =`` should now be used.
512
523
  happens, and another warning will be written if the log file could not
513
524
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
514
525
 
 
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
 
515
558
bzr 2.1.1
516
559
#########
517
560
 
545
588
  problems importing bzrlib from a non-main thread.
546
589
  (Elliot Murphy, #521989)
547
590
 
 
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
 
548
597
* Standardize the error handling when creating a new ``StaticTuple``
549
598
  (problems will raise TypeError). (Matt Nordhoff, #457979)
550
599