~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Andrew Bennetts
  • Date: 2008-04-28 06:24:16 UTC
  • mfrom: (3385 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3386.
  • Revision ID: andrew.bennetts@canonical.com-20080428062416-f7niegy7ekq4oftx
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
      (Robert Collins, Aaron Bentley, #212908)
37
37
 
38
38
    * Fix error about "attempt to add line-delta in non-delta knit".
39
 
      (Andrew Bennetts, #205156)
 
39
      (Andrew Bennetts, #217701)
40
40
 
41
41
    * Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
42
42
      rebinding the socket when starting the server a second time.
70
70
      (Aaron Bentley)
71
71
 
72
72
 
 
73
bzr 1.4rc2 2008-04-21
 
74
---------------------
 
75
 
 
76
  BUG FIXES:
 
77
 
 
78
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
79
      for ``revision_id=None`` which was not a string.
 
80
      (John Arbash Meinel, #211661)
 
81
 
 
82
    * Fixed a bug in handling ghost revisions when logging changes in a 
 
83
      particular file.  (John Arbash Meinel, #209948)
 
84
 
 
85
    * Fix error about "attempt to add line-delta in non-delta knit".
 
86
      (Andrew Bennetts, #205156)
 
87
 
 
88
    * Fixed performance degradation in fetching from knit repositories to
 
89
      knits and packs due to parsing the entire revisions.kndx on every graph
 
90
      walk iteration fixed by using the Repository.get_graph API.  There was
 
91
      another regression in knit => knit fetching which re-read the index for
 
92
      every revision each side had in common.
 
93
      (Robert Collins, John Arbash Meinel)
 
94
 
 
95
 
 
96
bzr 1.4rc1 2008-04-11
 
97
---------------------
 
98
 
 
99
 
 
100
 
73
101
bzr 1.4rc1 2008-04-11
74
102
---------------------
75
103
 
152
180
      one is present.  You can use the new ``nosmart+`` transport decorator
153
181
      to get the old behaviour.  (Andrew Bennetts)
154
182
 
155
 
     * Various operations with revision specs and commands that calculate
156
 
       revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
183
    * The ``version`` command takes a ``--short`` option to print just the
 
184
      version number, for easier use in scripts.  (Martin Pool)
 
185
 
 
186
    * Various operations with revision specs and commands that calculate
 
187
      revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
157
188
 
158
189
  BUGFIXES:
159
190
 
330
361
      had already failed, and should not be relied upon by code. 
331
362
      (Martin Pool, #109520)
332
363
 
 
364
    * ``make dist`` target to build a release tarball, and also 
 
365
      ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
366
 
333
367
    * The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
334
368
      classes will now raise ``UnknownSmartMethod`` when appropriate, so that
335
369
      callers don't need to try distinguish unknown request errors from other