~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2008-04-29 15:14:03 UTC
  • mfrom: (3389 +trunk)
  • mto: (3380.3.3 cleanup)
  • mto: This revision was merged to the branch mainline in revision 3392.
  • Revision ID: aaron@aaronbentley.com-20080429151403-r1ak2ew0mdp30o53
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    * Fetching all revisions from a repository does not cause pack collisions.
42
42
      (Robert Collins, Aaron Bentley, #212908)
43
43
 
 
44
    * Fix error about "attempt to add line-delta in non-delta knit".
 
45
      (Andrew Bennetts, #217701)
 
46
 
44
47
    * Set SO_REUSEADDR on server sockets of ``bzr serve`` to avoid problems
45
48
      rebinding the socket when starting the server a second time.
46
49
      (John Arbash Meinel, Martin Pool, #164288)
73
76
      (Aaron Bentley)
74
77
 
75
78
 
 
79
bzr 1.4rc2 2008-04-21
 
80
---------------------
 
81
 
 
82
  BUG FIXES:
 
83
 
 
84
    * ``bzr log -r ..X bzr://`` was failing, because it was getting a request
 
85
      for ``revision_id=None`` which was not a string.
 
86
      (John Arbash Meinel, #211661)
 
87
 
 
88
    * Fixed a bug in handling ghost revisions when logging changes in a 
 
89
      particular file.  (John Arbash Meinel, #209948)
 
90
 
 
91
    * Fix error about "attempt to add line-delta in non-delta knit".
 
92
      (Andrew Bennetts, #205156)
 
93
 
 
94
    * Fixed performance degradation in fetching from knit repositories to
 
95
      knits and packs due to parsing the entire revisions.kndx on every graph
 
96
      walk iteration fixed by using the Repository.get_graph API.  There was
 
97
      another regression in knit => knit fetching which re-read the index for
 
98
      every revision each side had in common.
 
99
      (Robert Collins, John Arbash Meinel)
 
100
 
 
101
 
 
102
bzr 1.4rc1 2008-04-11
 
103
---------------------
 
104
 
 
105
 
 
106
 
76
107
bzr 1.4rc1 2008-04-11
77
108
---------------------
78
109
 
155
186
      one is present.  You can use the new ``nosmart+`` transport decorator
156
187
      to get the old behaviour.  (Andrew Bennetts)
157
188
 
158
 
     * Various operations with revision specs and commands that calculate
159
 
       revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
 
189
    * The ``version`` command takes a ``--short`` option to print just the
 
190
      version number, for easier use in scripts.  (Martin Pool)
 
191
 
 
192
    * Various operations with revision specs and commands that calculate
 
193
      revnos and revision ids are faster.  (John A. Meinel, Aaron Bentley)
160
194
 
161
195
  BUGFIXES:
162
196
 
333
367
      had already failed, and should not be relied upon by code. 
334
368
      (Martin Pool, #109520)
335
369
 
 
370
    * ``make dist`` target to build a release tarball, and also 
 
371
      ``check-dist-tarball`` and ``dist-upload-escudero``.  (Martin Pool)
 
372
 
336
373
    * The ``read_response_tuple`` method of ``SmartClientRequestProtocol*``
337
374
      classes will now raise ``UnknownSmartMethod`` when appropriate, so that
338
375
      callers don't need to try distinguish unknown request errors from other