~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: mbp at sourcefrog
  • Date: 2005-03-30 22:27:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050330222717-027b5837127b938d
experiment with new nested inventory file format
not used by default yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.7 2005-09-02
2
 
 
3
 
  NEW FEATURES:
4
 
 
5
 
    * ``bzr shell-complete`` command contributed by Clint Adams to
6
 
      help with intelligent shell completion.
7
 
 
8
 
    * New expert command ``bzr find-merge-base`` for debugging merges.
9
 
 
10
 
 
11
 
  ENHANCEMENTS:
12
 
 
13
 
    * Much better merge support.
14
 
 
15
 
    * merge3 conflicts are now reported with markers like '<<<<<<<'
16
 
      (seven characters) which is the same as CVS and pleases things
17
 
      like emacs smerge.
18
 
 
19
 
 
20
 
  BUG FIXES:
21
 
 
22
 
    * ``bzr upgrade`` no longer fails when trying to fix trees that
23
 
      mention revisions that are not present.
24
 
 
25
 
    * Fixed bugs in listing plugins from ``bzr plugins``.
26
 
 
27
 
    * Fix case of $EDITOR containing options for the editor.
28
 
 
29
 
    * Fix log -r refusing to show the last revision.
30
 
      (Patch from Goffredo Baroncelli.)
31
 
 
32
 
 
33
 
  CHANGES:
34
 
 
35
 
    * ``bzr log --show-ids`` shows the revision ids of all parents.
36
 
 
37
 
    * Externally provided commands on your $BZRPATH no longer need
38
 
      to recognize --bzr-usage to work properly, and can just handle
39
 
      --help themselves.
40
 
 
41
 
 
42
 
  LIBRARY:
43
 
 
44
 
    * Changed trace messages to go through the standard logging
45
 
      framework, so that they can more easily be redirected by
46
 
      libraries.
47
 
 
48
 
 
49
 
 
50
 
bzr-0.0.6 2005-08-18
51
 
 
52
 
  NEW FEATURES:
53
 
 
54
 
    * Python plugins, automatically loaded from the directories on
55
 
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
56
 
 
57
 
    * New 'bzr mkdir' command.
58
 
 
59
 
    * Commit mesage is fetched from an editor if not given on the
60
 
      command line; patch from Torsten Marek.
61
 
 
62
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
63
 
      FOO.
64
 
      
65
 
    * ``bzr add`` with no arguments adds everything under the current directory.
66
 
 
67
 
    * ``bzr mv`` does move or rename depending on its arguments, like
68
 
      the Unix command.
69
 
 
70
 
    * ``bzr missing`` command shows a summary of the differences
71
 
      between two trees.  (Merged from John Arbash-Meinel.)
72
 
 
73
 
    * An email address for commits to a particular tree can be
74
 
      specified by putting it into .bzr/email within a branch.  (Based
75
 
      on a patch from Heikki Paajanen.)
76
 
 
77
 
 
78
 
  ENHANCEMENTS:
79
 
 
80
 
    * Faster working tree operations.
81
 
 
82
 
 
83
 
  CHANGES:
84
 
 
85
 
    * 3rd-party modules shipped with bzr are copied within the bzrlib
86
 
      python package, so that they can be installed by the setup
87
 
      script without clashing with anything already existing on the
88
 
      system.  (Contributed by Gustavo Niemeyer.)
89
 
 
90
 
    * Moved plugins directory to bzrlib/, so that there's a standard
91
 
      plugin directory which is not only installed with bzr itself but
92
 
      is also available when using bzr from the development tree.
93
 
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
94
 
      standard plugins directory.
95
 
 
96
 
    * When exporting to a tarball with ``bzr export --format tgz``, put 
97
 
      everything under a top directory rather than dumping it into the
98
 
      current directory.   This can be overridden with the ``--root`` 
99
 
      option.  Patch from William Dodé and John Meinel.
100
 
 
101
 
    * New ``bzr upgrade`` command to upgrade the format of a branch,
102
 
      replacing ``bzr check --update``.
103
 
 
104
 
    * Files within store directories are no longer marked readonly on
105
 
      disk.
106
 
 
107
 
    * Changed ``bzr log`` output to a more compact form suggested by
108
 
      John A Meinel.  Old format is available with the ``--long`` or
109
 
      ``-l`` option, patched by William Dodé.
110
 
 
111
 
    * By default the commit command refuses to record a revision with
112
 
      no changes unless the ``--unchanged`` option is given.
113
 
 
114
 
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
115
 
      line options must come before the command name because they 
116
 
      affect what commands are available; all other options must come 
117
 
      after the command name because their interpretation depends on
118
 
      it.
119
 
 
120
 
    * ``branch`` and ``clone`` added as aliases for ``branch``.
121
 
 
122
 
    * Default log format is back to the long format; the compact one
123
 
      is available with ``--short``.
124
 
      
125
 
      
126
 
  BUG FIXES:
127
 
  
128
 
    * Fix bugs in committing only selected files or within a subdirectory.
129
 
 
130
 
 
131
 
bzr-0.0.5  2005-06-15
132
 
  
133
 
  CHANGES:
134
 
 
135
 
    * ``bzr`` with no command now shows help rather than giving an
136
 
      error.  Suggested by Michael Ellerman.
137
 
 
138
 
    * ``bzr status`` output format changed, because svn-style output
139
 
      doesn't really match the model of bzr.  Now files are grouped by
140
 
      status and can be shown with their IDs.  ``bzr status --all``
141
 
      shows all versioned files and unknown files but not ignored files.
142
 
 
143
 
    * ``bzr log`` runs from most-recent to least-recent, the reverse
144
 
      of the previous order.  The previous behaviour can be obtained
145
 
      with the ``--forward`` option.
146
 
        
147
 
    * ``bzr inventory`` by default shows only filenames, and also ids
148
 
      if ``--show-ids`` is given, in which case the id is the second
149
 
      field.
150
 
 
151
 
 
152
 
  ENHANCEMENTS:
153
 
 
154
 
    * New 'bzr whoami --email' option shows only the email component
155
 
      of the user identification, from Jo Vermeulen.
156
 
 
157
 
    * New ``bzr ignore PATTERN`` command.
158
 
 
159
 
    * Nicer error message for broken pipe, interrupt and similar
160
 
      conditions that don't indicate an internal error.
161
 
 
162
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
163
 
 
164
 
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
165
 
      either read or write mode.
166
 
 
167
 
    * New option ``bzr log --show-ids`` shows revision and file ids.
168
 
 
169
 
    * New usage ``bzr log FILENAME`` shows only revisions that
170
 
      affected that file.
171
 
 
172
 
    * Changed format for describing changes in ``bzr log -v``.
173
 
 
174
 
    * New option ``bzr commit --file`` to take a message from a file,
175
 
      suggested by LarstiQ.
176
 
 
177
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
178
 
      Oler.  File may be in a branch other than the working directory.
179
 
 
180
 
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
181
 
      a filename.
182
 
 
183
 
    * Commands can now be defined by external programs or scripts
184
 
      in a directory on $BZRPATH.
185
 
 
186
 
    * New "stat cache" avoids reading the contents of files if they 
187
 
      haven't changed since the previous time.
188
 
 
189
 
    * If the Python interpreter is too old, try to find a better one
190
 
      or give an error.  Based on a patch from Fredrik Lundh.
191
 
 
192
 
    * New optional parameter ``bzr info [BRANCH]``.
193
 
 
194
 
    * New form ``bzr commit SELECTED`` to commit only selected files.
195
 
 
196
 
    * New form ``bzr log -r FROM:TO`` shows changes in selected
197
 
      range; contributed by John A Meinel.
198
 
 
199
 
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
200
 
      options through to an external GNU diff.
201
 
 
202
 
    * New option ``bzr add --no-recurse`` to add a directory but not
203
 
      their contents.
204
 
 
205
 
    * ``bzr --version`` now shows more information if bzr is being run
206
 
      from a branch.
207
 
 
208
 
  
209
 
  BUG FIXES:
210
 
 
211
 
    * Fixed diff format so that added and removed files will be
212
 
      handled properly by patch.  Fix from Lalo Martins.
213
 
 
214
 
    * Various fixes for files whose names contain spaces or other
215
 
      metacharacters.
216
 
 
217
 
 
218
 
  TESTING:
219
 
 
220
 
    * Converted black-box test suites from Bourne shell into Python;
221
 
      now run using ``./testbzr``.  Various structural improvements to
222
 
      the tests.
223
 
 
224
 
    * testbzr by default runs the version of bzr found in the same
225
 
      directory as the tests, or the one given as the first parameter.
226
 
 
227
 
    * testbzr also runs the internal tests, so the only command
228
 
      required to check is just ``./testbzr``.
229
 
 
230
 
    * testbzr requires python2.4, but can be used to test bzr running
231
 
      under a different version.
232
 
 
233
 
    * Tests added for many other changes in this release.
234
 
 
235
 
 
236
 
  INTERNAL:
237
 
 
238
 
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
239
 
 
240
 
    * Refactor command functions into Command objects based on HCT by
241
 
      Scott James Remnant.
242
 
 
243
 
    * Better help messages for many commands.
244
 
 
245
 
    * Expose bzrlib.open_tracefile() to start the tracefile; until
246
 
      this is called trace messages are just discarded.
247
 
 
248
 
    * New internal function find_touching_revisions() and hidden
249
 
      command touching-revisions trace the changes to a given file.
250
 
 
251
 
    * Simpler and faster compare_inventories() function.
252
 
 
253
 
    * bzrlib.open_tracefile() takes a tracefilename parameter.
254
 
 
255
 
    * New AtomicFile class.
256
 
 
257
 
    * New developer commands ``added``, ``modified``.
258
 
 
259
 
 
260
 
  PORTABILITY:
261
 
 
262
 
    * Cope on Windows on python2.3 by using the weaker random seed.
263
 
      2.4 is now only recommended.
264
 
 
265
 
 
266
 
bzr-0.0.4  2005-04-22
267
 
 
268
 
  ENHANCEMENTS:
269
 
 
270
 
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
271
 
      basic.  Patch from QuantumG.
272
 
 
273
 
    * More default ignore patterns.
274
 
 
275
 
    * New 'bzr log --verbose' shows a list of files changed in the
276
 
      changeset.  Patch from Sebastian Cote.
277
 
 
278
 
    * Roll over ~/.bzr.log if it gets too large.
279
 
 
280
 
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
281
 
      by Jason Diamon.
282
 
 
283
 
    * New 'bzr help commands' based on a patch from Denys Duchier.
284
 
 
285
 
 
286
 
  CHANGES:
287
 
 
288
 
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
289
 
      or $EMAIL.  All are decoded by the locale preferred encoding.
290
 
      If none of these are present user@hostname is used.  The host's
291
 
      fully-qualified name is not used because that tends to fail when
292
 
      there are DNS problems.
293
 
 
294
 
    * New 'bzr whoami' command instead of username user-email.
295
 
 
296
 
 
297
 
  BUG FIXES: 
298
 
 
299
 
    * Make commit safe for hardlinked bzr trees.
300
 
 
301
 
    * Some Unicode/locale fixes.
302
 
 
303
 
    * Partial workaround for difflib.unified_diff not handling
304
 
      trailing newlines properly.
305
 
 
306
 
 
307
 
  INTERNAL:
308
 
 
309
 
    * Allow docstrings for help to be in PEP0257 format.  Patch from
310
 
      Matt Brubeck.
311
 
 
312
 
    * More tests in test.sh.
313
 
 
314
 
    * Write profile data to a temporary file not into working
315
 
      directory and delete it when done.
316
 
 
317
 
    * Smaller .bzr.log with process ids.
318
 
 
319
 
 
320
 
  PORTABILITY:
321
 
 
322
 
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
323
 
      Bennetts.
324
 
 
325
 
    * Some improvements in handling paths on Windows, based on a patch
326
 
      from QuantumG.
327
 
 
328
 
 
329
 
bzr-0.0.3  2005-04-06
330
 
 
331
 
  ENHANCEMENTS:
332
 
 
333
 
    * New "directories" internal command lists versioned directories
334
 
      in the tree.
335
 
 
336
 
    * Can now say "bzr commit --help".
337
 
 
338
 
    * New "rename" command to rename one file to a different name
339
 
      and/or directory.
340
 
 
341
 
    * New "move" command to move one or more files into a different
342
 
      directory.
343
 
 
344
 
    * New "renames" command lists files renamed since base revision.
345
 
 
346
 
    * New cat command contributed by janmar.
347
 
 
348
 
  CHANGES:
349
 
 
350
 
    * .bzr.log is placed in $HOME (not pwd) and is always written in
351
 
      UTF-8.  (Probably not a completely good long-term solution, but
352
 
      will do for now.)
353
 
 
354
 
  PORTABILITY:
355
 
 
356
 
    * Workaround for difflib bug in Python 2.3 that causes an
357
 
      exception when comparing empty files.  Reported by Erik Toubro
358
 
      Nielsen.
359
 
 
360
 
  INTERNAL:
361
 
 
362
 
    * Refactored inventory storage to insert a root entry at the top.
363
 
 
364
 
  TESTING:
365
 
 
366
 
    * Start of shell-based black-box testing in test.sh.
367
 
 
368
 
 
369
 
bzr-0.0.2.1
370
 
 
371
 
  PORTABILITY:
372
 
 
373
 
    * Win32 fixes from Steve Brown.
374
 
 
375
 
 
376
 
bzr-0.0.2  "black cube"  2005-03-31
 
1
bzr-0.0.2  "black cube"  NOT RELEASED YET
377
2
 
378
3
  ENHANCEMENTS:
379
4
 
397
22
    * New global --profile option.
398
23
    
399
24
    * Ignore patterns like './config.h' now correctly match files in
400
 
      the root directory only.
401
 
 
402
 
 
 
25
      the root directory only.
403
26
bzr-0.0.1  2005-03-26
404
27
 
405
28
  ENHANCEMENTS:
426
49
      supported).
427
50
 
428
51
 
 
52
 
429
53
bzr-0.0.0.69  2005-03-22
430
54
 
431
55
  ENHANCEMENTS: