/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

- prepare for 0.0.9 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr 0.0.9 2005-09-23
 
2
 
 
3
  BUG FIXES:
 
4
 
 
5
    * Fixed "branch -r" option.
 
6
 
 
7
    * Fix remote access to branches containing non-compressed history.
 
8
      (Robert Collins).
 
9
 
 
10
    * Better reliability of http server tests.  (John Arbash-Meinel)
 
11
 
 
12
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
13
   
 
14
  IMPROVEMENTS:
 
15
 
 
16
    * Status now accepted a -r argument to give status between chosen
 
17
      revisions. Contributed by Heikki Paajanen.
 
18
 
 
19
    * Revision arguments no longer use +/-/= to control ranges, instead
 
20
      there is a 'before' namespace, which limits the successive namespace.
 
21
      For example '$ bzr log -r date:yesterday..before:date:today' will
 
22
      select everything from yesterday and before today. Contributed by
 
23
      Robey Pointer
 
24
 
 
25
bzr 0.0.8 2005-09-20
 
26
 
 
27
  IMPROVEMENTS:
 
28
 
 
29
    * Adding a file whose parent directory is not versioned will
 
30
      implicitly add the parent, and so on up to the root. This means
 
31
      you should never need to explictly add a directory, they'll just
 
32
      get added when you add a file in the directory.  Contributed by
 
33
      Michael Ellerman.
 
34
 
 
35
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
36
      Nir Soffer.
 
37
 
 
38
    * If you set BZR_EDITOR in the environment, it is checked in
 
39
      preference to EDITOR and the config file for the interactive commit
 
40
      editing program. Related to this is a bugfix where a missing program
 
41
      set in EDITOR would cause editing to fail, now the fallback program
 
42
      for the operating system is still tried.
 
43
 
 
44
    * Files that are not directories/symlinks/regular files will no longer
 
45
      cause bzr to fail, it will just ignore them by default. You cannot add
 
46
      them to the tree though - they are not versionable.
 
47
 
 
48
 
 
49
  INTERNALS:
 
50
 
 
51
    * Refactor xml packing/unpacking.
 
52
 
 
53
 
 
54
  BUG FIXES: 
 
55
 
 
56
    * Fixed 'bzr mv' by Ollie Rutherfurd.
 
57
 
 
58
    * Fixed strange error when trying to access a nonexistent http
 
59
      branch.
 
60
 
 
61
    * Make sure that the hashcache gets written out if it can't be
 
62
      read.
 
63
 
 
64
 
 
65
  PORTABILITY:
 
66
 
 
67
    * Various Windows fixes from Ollie Rutherfurd.
 
68
 
 
69
    * Quieten warnings about locking; patch from Matt Lavin.
 
70
 
 
71
 
 
72
bzr-0.0.7 2005-09-02
 
73
 
 
74
  NEW FEATURES:
 
75
 
 
76
    * ``bzr shell-complete`` command contributed by Clint Adams to
 
77
      help with intelligent shell completion.
 
78
 
 
79
    * New expert command ``bzr find-merge-base`` for debugging merges.
 
80
 
 
81
 
 
82
  ENHANCEMENTS:
 
83
 
 
84
    * Much better merge support.
 
85
 
 
86
    * merge3 conflicts are now reported with markers like '<<<<<<<'
 
87
      (seven characters) which is the same as CVS and pleases things
 
88
      like emacs smerge.
 
89
 
 
90
 
 
91
  BUG FIXES:
 
92
 
 
93
    * ``bzr upgrade`` no longer fails when trying to fix trees that
 
94
      mention revisions that are not present.
 
95
 
 
96
    * Fixed bugs in listing plugins from ``bzr plugins``.
 
97
 
 
98
    * Fix case of $EDITOR containing options for the editor.
 
99
 
 
100
    * Fix log -r refusing to show the last revision.
 
101
      (Patch from Goffredo Baroncelli.)
 
102
 
 
103
 
 
104
  CHANGES:
 
105
 
 
106
    * ``bzr log --show-ids`` shows the revision ids of all parents.
 
107
 
 
108
    * Externally provided commands on your $BZRPATH no longer need
 
109
      to recognize --bzr-usage to work properly, and can just handle
 
110
      --help themselves.
 
111
 
 
112
 
 
113
  LIBRARY:
 
114
 
 
115
    * Changed trace messages to go through the standard logging
 
116
      framework, so that they can more easily be redirected by
 
117
      libraries.
 
118
 
 
119
 
 
120
 
 
121
bzr-0.0.6 2005-08-18
 
122
 
 
123
  NEW FEATURES:
 
124
 
 
125
    * Python plugins, automatically loaded from the directories on
 
126
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
 
127
 
 
128
    * New 'bzr mkdir' command.
 
129
 
 
130
    * Commit mesage is fetched from an editor if not given on the
 
131
      command line; patch from Torsten Marek.
 
132
 
 
133
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
 
134
      FOO.
 
135
      
 
136
    * ``bzr add`` with no arguments adds everything under the current directory.
 
137
 
 
138
    * ``bzr mv`` does move or rename depending on its arguments, like
 
139
      the Unix command.
 
140
 
 
141
    * ``bzr missing`` command shows a summary of the differences
 
142
      between two trees.  (Merged from John Arbash-Meinel.)
 
143
 
 
144
    * An email address for commits to a particular tree can be
 
145
      specified by putting it into .bzr/email within a branch.  (Based
 
146
      on a patch from Heikki Paajanen.)
 
147
 
 
148
 
 
149
  ENHANCEMENTS:
 
150
 
 
151
    * Faster working tree operations.
 
152
 
 
153
 
 
154
  CHANGES:
 
155
 
 
156
    * 3rd-party modules shipped with bzr are copied within the bzrlib
 
157
      python package, so that they can be installed by the setup
 
158
      script without clashing with anything already existing on the
 
159
      system.  (Contributed by Gustavo Niemeyer.)
 
160
 
 
161
    * Moved plugins directory to bzrlib/, so that there's a standard
 
162
      plugin directory which is not only installed with bzr itself but
 
163
      is also available when using bzr from the development tree.
 
164
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
 
165
      standard plugins directory.
 
166
 
 
167
    * When exporting to a tarball with ``bzr export --format tgz``, put 
 
168
      everything under a top directory rather than dumping it into the
 
169
      current directory.   This can be overridden with the ``--root`` 
 
170
      option.  Patch from William Dodé and John Meinel.
 
171
 
 
172
    * New ``bzr upgrade`` command to upgrade the format of a branch,
 
173
      replacing ``bzr check --update``.
 
174
 
 
175
    * Files within store directories are no longer marked readonly on
 
176
      disk.
 
177
 
 
178
    * Changed ``bzr log`` output to a more compact form suggested by
 
179
      John A Meinel.  Old format is available with the ``--long`` or
 
180
      ``-l`` option, patched by William Dodé.
 
181
 
 
182
    * By default the commit command refuses to record a revision with
 
183
      no changes unless the ``--unchanged`` option is given.
 
184
 
 
185
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
 
186
      line options must come before the command name because they 
 
187
      affect what commands are available; all other options must come 
 
188
      after the command name because their interpretation depends on
 
189
      it.
 
190
 
 
191
    * ``branch`` and ``clone`` added as aliases for ``branch``.
 
192
 
 
193
    * Default log format is back to the long format; the compact one
 
194
      is available with ``--short``.
 
195
      
 
196
      
 
197
  BUG FIXES:
 
198
  
 
199
    * Fix bugs in committing only selected files or within a subdirectory.
 
200
 
 
201
 
 
202
bzr-0.0.5  2005-06-15
 
203
  
 
204
  CHANGES:
 
205
 
 
206
    * ``bzr`` with no command now shows help rather than giving an
 
207
      error.  Suggested by Michael Ellerman.
 
208
 
 
209
    * ``bzr status`` output format changed, because svn-style output
 
210
      doesn't really match the model of bzr.  Now files are grouped by
 
211
      status and can be shown with their IDs.  ``bzr status --all``
 
212
      shows all versioned files and unknown files but not ignored files.
 
213
 
 
214
    * ``bzr log`` runs from most-recent to least-recent, the reverse
 
215
      of the previous order.  The previous behaviour can be obtained
 
216
      with the ``--forward`` option.
 
217
        
 
218
    * ``bzr inventory`` by default shows only filenames, and also ids
 
219
      if ``--show-ids`` is given, in which case the id is the second
 
220
      field.
 
221
 
 
222
 
 
223
  ENHANCEMENTS:
 
224
 
 
225
    * New 'bzr whoami --email' option shows only the email component
 
226
      of the user identification, from Jo Vermeulen.
 
227
 
 
228
    * New ``bzr ignore PATTERN`` command.
 
229
 
 
230
    * Nicer error message for broken pipe, interrupt and similar
 
231
      conditions that don't indicate an internal error.
 
232
 
 
233
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
234
 
 
235
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
 
236
      either read or write mode.
 
237
 
 
238
    * New option ``bzr log --show-ids`` shows revision and file ids.
 
239
 
 
240
    * New usage ``bzr log FILENAME`` shows only revisions that
 
241
      affected that file.
 
242
 
 
243
    * Changed format for describing changes in ``bzr log -v``.
 
244
 
 
245
    * New option ``bzr commit --file`` to take a message from a file,
 
246
      suggested by LarstiQ.
 
247
 
 
248
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
 
249
      Oler.  File may be in a branch other than the working directory.
 
250
 
 
251
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
 
252
      a filename.
 
253
 
 
254
    * Commands can now be defined by external programs or scripts
 
255
      in a directory on $BZRPATH.
 
256
 
 
257
    * New "stat cache" avoids reading the contents of files if they 
 
258
      haven't changed since the previous time.
 
259
 
 
260
    * If the Python interpreter is too old, try to find a better one
 
261
      or give an error.  Based on a patch from Fredrik Lundh.
 
262
 
 
263
    * New optional parameter ``bzr info [BRANCH]``.
 
264
 
 
265
    * New form ``bzr commit SELECTED`` to commit only selected files.
 
266
 
 
267
    * New form ``bzr log -r FROM:TO`` shows changes in selected
 
268
      range; contributed by John A Meinel.
 
269
 
 
270
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
 
271
      options through to an external GNU diff.
 
272
 
 
273
    * New option ``bzr add --no-recurse`` to add a directory but not
 
274
      their contents.
 
275
 
 
276
    * ``bzr --version`` now shows more information if bzr is being run
 
277
      from a branch.
 
278
 
 
279
  
 
280
  BUG FIXES:
 
281
 
 
282
    * Fixed diff format so that added and removed files will be
 
283
      handled properly by patch.  Fix from Lalo Martins.
 
284
 
 
285
    * Various fixes for files whose names contain spaces or other
 
286
      metacharacters.
 
287
 
 
288
 
 
289
  TESTING:
 
290
 
 
291
    * Converted black-box test suites from Bourne shell into Python;
 
292
      now run using ``./testbzr``.  Various structural improvements to
 
293
      the tests.
 
294
 
 
295
    * testbzr by default runs the version of bzr found in the same
 
296
      directory as the tests, or the one given as the first parameter.
 
297
 
 
298
    * testbzr also runs the internal tests, so the only command
 
299
      required to check is just ``./testbzr``.
 
300
 
 
301
    * testbzr requires python2.4, but can be used to test bzr running
 
302
      under a different version.
 
303
 
 
304
    * Tests added for many other changes in this release.
 
305
 
 
306
 
 
307
  INTERNAL:
 
308
 
 
309
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
 
310
 
 
311
    * Refactor command functions into Command objects based on HCT by
 
312
      Scott James Remnant.
 
313
 
 
314
    * Better help messages for many commands.
 
315
 
 
316
    * Expose bzrlib.open_tracefile() to start the tracefile; until
 
317
      this is called trace messages are just discarded.
 
318
 
 
319
    * New internal function find_touching_revisions() and hidden
 
320
      command touching-revisions trace the changes to a given file.
 
321
 
 
322
    * Simpler and faster compare_inventories() function.
 
323
 
 
324
    * bzrlib.open_tracefile() takes a tracefilename parameter.
 
325
 
 
326
    * New AtomicFile class.
 
327
 
 
328
    * New developer commands ``added``, ``modified``.
 
329
 
 
330
 
 
331
  PORTABILITY:
 
332
 
 
333
    * Cope on Windows on python2.3 by using the weaker random seed.
 
334
      2.4 is now only recommended.
 
335
 
 
336
 
 
337
bzr-0.0.4  2005-04-22
 
338
 
 
339
  ENHANCEMENTS:
 
340
 
 
341
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
 
342
      basic.  Patch from QuantumG.
 
343
 
 
344
    * More default ignore patterns.
 
345
 
 
346
    * New 'bzr log --verbose' shows a list of files changed in the
 
347
      changeset.  Patch from Sebastian Cote.
 
348
 
 
349
    * Roll over ~/.bzr.log if it gets too large.
 
350
 
 
351
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
 
352
      by Jason Diamon.
 
353
 
 
354
    * New 'bzr help commands' based on a patch from Denys Duchier.
 
355
 
 
356
 
 
357
  CHANGES:
 
358
 
 
359
    * User email is determined by looking at $BZREMAIL or ~/.bzr.email
 
360
      or $EMAIL.  All are decoded by the locale preferred encoding.
 
361
      If none of these are present user@hostname is used.  The host's
 
362
      fully-qualified name is not used because that tends to fail when
 
363
      there are DNS problems.
 
364
 
 
365
    * New 'bzr whoami' command instead of username user-email.
 
366
 
 
367
 
 
368
  BUG FIXES: 
 
369
 
 
370
    * Make commit safe for hardlinked bzr trees.
 
371
 
 
372
    * Some Unicode/locale fixes.
 
373
 
 
374
    * Partial workaround for difflib.unified_diff not handling
 
375
      trailing newlines properly.
 
376
 
 
377
 
 
378
  INTERNAL:
 
379
 
 
380
    * Allow docstrings for help to be in PEP0257 format.  Patch from
 
381
      Matt Brubeck.
 
382
 
 
383
    * More tests in test.sh.
 
384
 
 
385
    * Write profile data to a temporary file not into working
 
386
      directory and delete it when done.
 
387
 
 
388
    * Smaller .bzr.log with process ids.
 
389
 
 
390
 
 
391
  PORTABILITY:
 
392
 
 
393
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
 
394
      Bennetts.
 
395
 
 
396
    * Some improvements in handling paths on Windows, based on a patch
 
397
      from QuantumG.
 
398
 
 
399
 
 
400
bzr-0.0.3  2005-04-06
 
401
 
 
402
  ENHANCEMENTS:
 
403
 
 
404
    * New "directories" internal command lists versioned directories
 
405
      in the tree.
 
406
 
 
407
    * Can now say "bzr commit --help".
 
408
 
 
409
    * New "rename" command to rename one file to a different name
 
410
      and/or directory.
 
411
 
 
412
    * New "move" command to move one or more files into a different
 
413
      directory.
 
414
 
 
415
    * New "renames" command lists files renamed since base revision.
 
416
 
 
417
    * New cat command contributed by janmar.
 
418
 
 
419
  CHANGES:
 
420
 
 
421
    * .bzr.log is placed in $HOME (not pwd) and is always written in
 
422
      UTF-8.  (Probably not a completely good long-term solution, but
 
423
      will do for now.)
 
424
 
 
425
  PORTABILITY:
 
426
 
 
427
    * Workaround for difflib bug in Python 2.3 that causes an
 
428
      exception when comparing empty files.  Reported by Erik Toubro
 
429
      Nielsen.
 
430
 
 
431
  INTERNAL:
 
432
 
 
433
    * Refactored inventory storage to insert a root entry at the top.
 
434
 
 
435
  TESTING:
 
436
 
 
437
    * Start of shell-based black-box testing in test.sh.
 
438
 
 
439
 
 
440
bzr-0.0.2.1
 
441
 
 
442
  PORTABILITY:
 
443
 
 
444
    * Win32 fixes from Steve Brown.
 
445
 
 
446
 
 
447
bzr-0.0.2  "black cube"  2005-03-31
 
448
 
 
449
  ENHANCEMENTS:
 
450
 
 
451
    * Default ignore list extended (see bzrlib/__init__.py).
 
452
 
 
453
    * Patterns in .bzrignore are now added to the default ignore list,
 
454
      rather than replacing it.
 
455
 
 
456
    * Ignore list isn't reread for every file.
 
457
 
 
458
    * More help topics.
 
459
 
 
460
    * Reinstate the 'bzr check' command to check invariants of the
 
461
      branch.
 
462
 
 
463
    * New 'ignored' command lists which files are ignored and why;
 
464
      'deleted' lists files deleted in the current working tree.
 
465
 
 
466
    * Performance improvements.
 
467
 
 
468
    * New global --profile option.
 
469
    
 
470
    * Ignore patterns like './config.h' now correctly match files in
 
471
      the root directory only.
 
472
 
 
473
 
 
474
bzr-0.0.1  2005-03-26
 
475
 
 
476
  ENHANCEMENTS:
 
477
 
 
478
    * More information from info command.
 
479
 
 
480
    * Can now say "bzr help COMMAND" for more detailed help.
 
481
 
 
482
    * Less file flushing and faster performance when writing logs and
 
483
      committing to stores.
 
484
 
 
485
    * More useful verbose output from some commands.
 
486
 
 
487
  BUG FIXES:
 
488
 
 
489
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
 
490
 
 
491
  PORTABILITY:
 
492
 
 
493
    * Include a subset of ElementTree-1.2.20040618 to make
 
494
      installation easier.
 
495
 
 
496
    * Fix time.localtime call to work with Python 2.3 (the minimum
 
497
      supported).
 
498
 
 
499
 
 
500
bzr-0.0.0.69  2005-03-22
 
501
 
 
502
  ENHANCEMENTS:
 
503
 
 
504
    * First public release.
 
505
 
 
506
    * Storage of local versions: init, add, remove, rm, info, log,
 
507
      diff, status, etc.