~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Parth Malwankar
  • Date: 2010-05-03 08:13:32 UTC
  • mfrom: (5199 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5210.
  • Revision ID: parth.malwankar@gmail.com-20100503081332-sccscii0dqslaqu3
merged in changes from trunk and resolved conflict in NEWS.

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
* Heavyweight checkout operation now shows a message to the user indicating
56
60
  history is being copied.
57
61
  (Parth Malwankar, #538868)
99
103
Internals
100
104
*********
101
105
 
 
106
* ``_remember_remote_is_before`` no longer raises AssertionError when
 
107
  suboptimal network behaviour is noticed; instead it just mutters to the
 
108
  log file (and warns the user if they have set the ``hpss`` debug flag).
 
109
  This was causing unnecessary aborts for performance bugs that are minor
 
110
  at worst.
 
111
  (Andrew Bennetts, #528041)
 
112
 
102
113
* Permit bzr to run under ``python -OO`` which reduces the size of bytecode
103
114
  files loaded from disk. To ensure docstrings needed for help are never
104
115
  stripped, the prefix ``__doc__ =`` should now be used.
516
527
  happens, and another warning will be written if the log file could not
517
528
  be closed after retrying 100 times.  (Andrew Bennetts, #531746)
518
529
 
 
530
bzr 2.1.2
 
531
#########
 
532
 
 
533
:2.1.2: NOT RELEASED YET
 
534
 
 
535
Bug Fixes
 
536
*********
 
537
 
 
538
* ``bzr switch`` does not die if a ConfigurableFileMerger is used.
 
539
  (Aaron Bentley, #559436)
 
540
 
 
541
* Fixed ``AssertionError`` when accessing smart servers running Bazaar
 
542
  versions before 1.6.
 
543
  (Andrew Bennetts, #528041)
 
544
 
 
545
* Reset ``siginterrupt`` flag to False every time we handle a signal
 
546
  installed with ``set_signal_handler(..., restart_syscall=True)`` (from
 
547
  ``bzrlib.osutils``.  Reduces the likelihood of "Interrupted System Call"
 
548
  errors after two window resizes.
 
549
  (Andrew Bennetts)
 
550
 
 
551
Internals
 
552
*********
 
553
 
 
554
* ``_remember_remote_is_before`` no longer raises AssertionError when
 
555
  suboptimal network behaviour is noticed; instead it just mutters to the
 
556
  log file (and warns the user if they have set the ``hpss`` debug flag).
 
557
  This was causing unnecessary aborts for performance bugs that are minor
 
558
  at worst.
 
559
  (Andrew Bennetts, #528041)
 
560
 
 
561
 
519
562
bzr 2.1.1
520
563
#########
521
564
 
549
592
  problems importing bzrlib from a non-main thread.
550
593
  (Elliot Murphy, #521989)
551
594
 
 
595
* Repositories accessed via a smart server now reject being stacked on a
 
596
  repository in an incompatible format, as is the case when accessing them
 
597
  via other methods.  This was causing fetches from those repositories via
 
598
  a smart server (e.g. using ``bzr branch``) to receive invalid data.
 
599
  (Andrew Bennetts, #562380)
 
600
 
552
601
* Standardize the error handling when creating a new ``StaticTuple``
553
602
  (problems will raise TypeError). (Matt Nordhoff, #457979)
554
603