~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2008-04-29 15:20:14 UTC
  • mfrom: (3380.3.3 cleanup)
  • mto: This revision was merged to the branch mainline in revision 3392.
  • Revision ID: aaron@aaronbentley.com-20080429152014-wdr2jy5xw1nk1yov
merge with cleanup

Show diffs side-by-side

added added

removed removed

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