~bzr-pqm/bzr/bzr.dev

1175 by Martin Pool
- make 0.0.7 release
1
bzr-0.0.7 2005-09-02
1091 by Martin Pool
- new shell-complete command to help zsh completion
2
3
  NEW FEATURES:
4
5
    * ``bzr shell-complete`` command contributed by Clint Adams to
6
      help with intelligent shell completion.
7
1105 by Martin Pool
- expose 'find-merge-base' as a new expert command,
8
    * New expert command ``bzr find-merge-base`` for debugging merges.
9
1091 by Martin Pool
- new shell-complete command to help zsh completion
10
1145 by Martin Pool
- additional fix for bzr plugins
11
  ENHANCEMENTS:
12
13
    * Much better merge support.
14
1148 by Martin Pool
- change conflict markers to suit smerge, etc
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
1145 by Martin Pool
- additional fix for bzr plugins
19
1092 by Martin Pool
- fix bug where bzr upgrade aborts when trying to fix trees that mention revisions
20
  BUG FIXES:
21
22
    * ``bzr upgrade`` no longer fails when trying to fix trees that
23
      mention revisions that are not present.
24
1145 by Martin Pool
- additional fix for bzr plugins
25
    * Fixed bugs in listing plugins from ``bzr plugins``.
26
1168 by Martin Pool
- work properly when $EDITOR contains multiple words
27
    * Fix case of $EDITOR containing options for the editor.
28
1174 by Martin Pool
- fix off-by-one in 'bzr log -r'
29
    * Fix log -r refusing to show the last revision.
30
      (Patch from Goffredo Baroncelli.)
31
1092 by Martin Pool
- fix bug where bzr upgrade aborts when trying to fix trees that mention revisions
32
1138 by Martin Pool
- bzr log --show-ids includes parent ids
33
  CHANGES:
34
35
    * ``bzr log --show-ids`` shows the revision ids of all parents.
36
1174 by Martin Pool
- fix off-by-one in 'bzr log -r'
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
1138 by Martin Pool
- bzr log --show-ids includes parent ids
41
1097 by Martin Pool
- send trace messages out through python logging module
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
1086 by Martin Pool
prepare 0.0.6 release
50
bzr-0.0.6 2005-08-18
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
51
741 by Martin Pool
- default plugin dir is ~/.bzr.conf/plugins
52
  NEW FEATURES:
53
54
    * Python plugins, automatically loaded from the directories on
55
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
56
742 by Martin Pool
- new mkdir command
57
    * New 'bzr mkdir' command.
58
763 by Martin Pool
- Patch from Torsten Marek to take commit messages through an
59
    * Commit mesage is fetched from an editor if not given on the
60
      command line; patch from Torsten Marek.
61
900 by Martin Pool
- patch from john to search for matching commits
62
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
63
      FOO.
971 by Martin Pool
- update news
64
      
65
    * ``bzr add`` with no arguments adds everything under the current directory.
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
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
1074 by Martin Pool
- check for email address in BRANCH_ROOT/.bzr/email, so you can
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
1094 by Martin Pool
- merge aaron's merge improvements 999..1008
77
971 by Martin Pool
- update news
78
  ENHANCEMENTS:
79
80
    * Faster working tree operations.
900 by Martin Pool
- patch from john to search for matching commits
81
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
82
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
83
  CHANGES:
84
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
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
849 by Martin Pool
- Put files inside an exported tarball into a top-level directory rather than
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`` 
971 by Martin Pool
- update news
99
      option.  Patch from William Dodé and John Meinel.
849 by Martin Pool
- Put files inside an exported tarball into a top-level directory rather than
100
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
101
    * New ``bzr upgrade`` command to upgrade the format of a branch,
102
      replacing ``bzr check --update``.
103
714 by Martin Pool
- files within stores are no longer made readonly
104
    * Files within store directories are no longer marked readonly on
105
      disk.
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
106
796 by Martin Pool
- note bzr log changes
107
    * Changed ``bzr log`` output to a more compact form suggested by
808 by Martin Pool
- Note new --long log options
108
      John A Meinel.  Old format is available with the ``--long`` or
109
      ``-l`` option, patched by William Dodé.
796 by Martin Pool
- note bzr log changes
110
885 by Martin Pool
- commit command refuses unless something is changed or --unchanged is given
111
    * By default the commit command refuses to record a revision with
112
      no changes unless the ``--unchanged`` option is given.
987 by Martin Pool
- note changes to command line parsing
113
974.1.26 by aaron.bentley at utoronto
merged mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
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
703 by Martin Pool
- split out a new 'bzr upgrade' command separate from
130
692 by Martin Pool
0.0.5 release
131
bzr-0.0.5  2005-06-15
448 by Martin Pool
- bzr with no command now shows help, not just an error
132
  
133
  CHANGES:
134
135
    * ``bzr`` with no command now shows help rather than giving an
136
      error.  Suggested by Michael Ellerman.
137
465 by Martin Pool
- Move show_status() out of Branch into a new function in
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
527 by Martin Pool
- refactor log command
143
    * ``bzr log`` runs from most-recent to least-recent, the reverse
545 by Martin Pool
- --forward option for log
144
      of the previous order.  The previous behaviour can be obtained
145
      with the ``--forward`` option.
588 by Martin Pool
- change inventory command to not show ids by default
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.
527 by Martin Pool
- refactor log command
150
286 by Martin Pool
- New bzr whoami --email option
151
152
  ENHANCEMENTS:
153
154
    * New 'bzr whoami --email' option shows only the email component
155
      of the user identification, from Jo Vermeulen.
156
420 by Martin Pool
Doc
157
    * New ``bzr ignore PATTERN`` command.
310 by Martin Pool
- new 'bzr ignored' command!
158
318 by Martin Pool
- better error message for Ctrl-c
159
    * Nicer error message for broken pipe, interrupt and similar
160
      conditions that don't indicate an internal error.
317 by Martin Pool
- better error message for broken pipe
161
618 by Martin Pool
- ignore .git files as well
162
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
348 by Martin Pool
- Add vim and RCS ignorefile patterns
163
353 by Martin Pool
- Per-branch locks in read and write modes.
164
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
165
      either read or write mode.
166
384 by Martin Pool
doc
167
    * New option ``bzr log --show-ids`` shows revision and file ids.
367 by Martin Pool
- New --show-ids option for bzr log
168
378 by Martin Pool
- New usage bzr log FILENAME
169
    * New usage ``bzr log FILENAME`` shows only revisions that
170
      affected that file.
171
379 by Martin Pool
- Simpler compare_inventories() to possibly replace diff_trees
172
    * Changed format for describing changes in ``bzr log -v``.
173
389 by Martin Pool
- new commit --file option!
174
    * New option ``bzr commit --file`` to take a message from a file,
175
      suggested by LarstiQ.
176
468 by Martin Pool
- Interpret arguments to bzr status
177
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
178
      Oler.  File may be in a branch other than the working directory.
404 by Martin Pool
- bzr status now optionally takes filenames to check
179
416 by Martin Pool
- bzr log and bzr root now accept an http URL
180
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
181
      a filename.
182
422 by Martin Pool
- External-command patch from mpe
183
    * Commands can now be defined by external programs or scripts
184
      in a directory on $BZRPATH.
185
440 by Martin Pool
doc
186
    * New "stat cache" avoids reading the contents of files if they 
187
      haven't changed since the previous time.
188
443 by Martin Pool
- Patch from Fredrik Lundh to check Python version and
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
472 by Martin Pool
- Optional branch parameter to info command
192
    * New optional parameter ``bzr info [BRANCH]``.
193
491 by Martin Pool
- Selective commit!
194
    * New form ``bzr commit SELECTED`` to commit only selected files.
195
567 by Martin Pool
- New form 'bzr log -r FROM:TO'
196
    * New form ``bzr log -r FROM:TO`` shows changes in selected
197
      range; contributed by John A Meinel.
198
571 by Martin Pool
- new --diff-options to pass options through to external
199
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
200
      options through to an external GNU diff.
201
594 by Martin Pool
- add --no-recurse option for add command
202
    * New option ``bzr add --no-recurse`` to add a directory but not
203
      their contents.
204
607 by Martin Pool
doc
205
    * ``bzr --version`` now shows more information if bzr is being run
206
      from a branch.
207
441 by Martin Pool
- Fix from Lalo for unidiff output of newly added
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
536 by Martin Pool
doc
214
    * Various fixes for files whose names contain spaces or other
215
      metacharacters.
216
404 by Martin Pool
- bzr status now optionally takes filenames to check
217
296 by Martin Pool
- better reports from testbzr when it fails
218
  TESTING:
219
340 by Martin Pool
- more testcase fixes
220
    * Converted black-box test suites from Bourne shell into Python;
221
      now run using ``./testbzr``.  Various structural improvements to
222
      the tests.
297 by Martin Pool
- fix intentional testcase failure
223
398 by Martin Pool
- testbzr finds the right version of bzr to test
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
399 by Martin Pool
- testbzr also runs selftests
227
    * testbzr also runs the internal tests, so the only command
228
      required to check is just ``./testbzr``.
229
508 by Martin Pool
- new -p option for testbzr to use a different version of python
230
    * testbzr requires python2.4, but can be used to test bzr running
231
      under a different version.
232
594 by Martin Pool
- add --no-recurse option for add command
233
    * Tests added for many other changes in this release.
234
398 by Martin Pool
- testbzr finds the right version of bzr to test
235
314 by Martin Pool
- Update ElementTree to 1.2.6
236
  INTERNAL:
237
238
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
239
389 by Martin Pool
- new commit --file option!
240
    * Refactor command functions into Command objects based on HCT by
241
      Scott James Remnant.
329 by Martin Pool
- refactor command functions into command classes
242
243
    * Better help messages for many commands.
244
344 by Martin Pool
- It's not an error to use the library without
245
    * Expose bzrlib.open_tracefile() to start the tracefile; until
246
      this is called trace messages are just discarded.
247
375 by Martin Pool
- New command touching-revisions and function to trace
248
    * New internal function find_touching_revisions() and hidden
249
      command touching-revisions trace the changes to a given file.
297 by Martin Pool
- fix intentional testcase failure
250
379 by Martin Pool
- Simpler compare_inventories() to possibly replace diff_trees
251
    * Simpler and faster compare_inventories() function.
252
397 by Martin Pool
- open_tracefile takes a tracefilename parameter
253
    * bzrlib.open_tracefile() takes a tracefilename parameter.
254
409 by Martin Pool
- New AtomicFile class
255
    * New AtomicFile class.
440 by Martin Pool
doc
256
257
    * New developer commands ``added``, ``modified``.
258
444 by Martin Pool
- cope on platforms with no urandom feature
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
280 by Martin Pool
Prepare for 0.0.4 release
266
bzr-0.0.4  2005-04-22
184 by mbp at sourcefrog
pychecker fixups
267
196 by mbp at sourcefrog
selected-file diff
268
  ENHANCEMENTS:
184 by mbp at sourcefrog
pychecker fixups
269
244 by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote
270
    * 'bzr diff' optionally takes a list of files to diff.  Still a bit
196 by mbp at sourcefrog
selected-file diff
271
      basic.  Patch from QuantumG.
184 by mbp at sourcefrog
pychecker fixups
272
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
273
    * More default ignore patterns.
274
244 by mbp at sourcefrog
- New 'bzr log --verbose' from Sebastian Cote
275
    * New 'bzr log --verbose' shows a list of files changed in the
276
      changeset.  Patch from Sebastian Cote.
277
261 by Martin Pool
- auto-rollover of .bzr.log
278
    * Roll over ~/.bzr.log if it gets too large.
279
272 by Martin Pool
- Add command aliases
280
    * Command abbreviations 'ci', 'st', 'stat', '?' based on a patch
281
      by Jason Diamon.
282
273 by Martin Pool
- New 'bzr help commands'
283
    * New 'bzr help commands' based on a patch from Denys Duchier.
284
235 by mbp at sourcefrog
update NEWS
285
252 by Martin Pool
- Don't use host fqdn for default user name, because DNS tends
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
255 by Martin Pool
- New whoami command
294
    * New 'bzr whoami' command instead of username user-email.
295
252 by Martin Pool
- Don't use host fqdn for default user name, because DNS tends
296
235 by mbp at sourcefrog
update NEWS
297
  BUG FIXES: 
298
299
    * Make commit safe for hardlinked bzr trees.
300
245 by mbp at sourcefrog
- control files always in utf-8-unix format
301
    * Some Unicode/locale fixes.
302
278 by Martin Pool
- Better workaround for trailing newlines in diffs
303
    * Partial workaround for difflib.unified_diff not handling
304
      trailing newlines properly.
305
235 by mbp at sourcefrog
update NEWS
306
232 by mbp at sourcefrog
Allow docstrings for help to be in PEP0257 format.
307
  INTERNAL:
308
309
    * Allow docstrings for help to be in PEP0257 format.  Patch from
310
      Matt Brubeck.
311
235 by mbp at sourcefrog
update NEWS
312
    * More tests in test.sh.
313
239 by mbp at sourcefrog
- remove profiler temporary file when done
314
    * Write profile data to a temporary file not into working
315
      directory and delete it when done.
238 by mbp at sourcefrog
- Don't put profiling temp file in current directory
316
257 by Martin Pool
- Write less startup junk to .bzr.log
317
    * Smaller .bzr.log with process ids.
318
184 by mbp at sourcefrog
pychecker fixups
319
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
320
  PORTABILITY:
321
261 by Martin Pool
- auto-rollover of .bzr.log
322
    * Fix opening of ~/.bzr.log on Windows.  Patch from Andrew
323
      Bennetts.
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
324
262 by Martin Pool
- gen_file_id: break the file on either / or \ when looking
325
    * Some improvements in handling paths on Windows, based on a patch
326
      from QuantumG.
327
242 by mbp at sourcefrog
Fix opening of ~/.bzr.log on Windows
328
181 by mbp at sourcefrog
prepare for 0.0.3 release
329
bzr-0.0.3  2005-04-06
155 by mbp at sourcefrog
add new explicit RootEntry to inventory (in-core only)
330
156 by mbp at sourcefrog
new "directories" command
331
  ENHANCEMENTS:
332
333
    * New "directories" internal command lists versioned directories
334
      in the tree.
335
159 by mbp at sourcefrog
bzr commit --help now works
336
    * Can now say "bzr commit --help".
337
174 by mbp at sourcefrog
- New 'move' command; now separated out from rename
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.
168 by mbp at sourcefrog
new "rename" command
343
164 by mbp at sourcefrog
new 'renames' command
344
    * New "renames" command lists files renamed since base revision.
345
176 by mbp at sourcefrog
New cat command contributed by janmar.
346
    * New cat command contributed by janmar.
347
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
348
  CHANGES:
349
166 by mbp at sourcefrog
- Write .bzr.log in utf8
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.)
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
353
162 by mbp at sourcefrog
workaround for python2.3 difflib bug
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.
163 by mbp at sourcefrog
merge win32 portability fixes
359
165 by mbp at sourcefrog
- put .bzr.log in /home/mbp
360
  INTERNAL:
361
362
    * Refactored inventory storage to insert a root entry at the top.
363
180 by mbp at sourcefrog
- mv command is gone, but renames seem to be working
364
  TESTING:
365
169 by mbp at sourcefrog
Start of shell-based black-box testing in test.sh
366
    * Start of shell-based black-box testing in test.sh.
367
163 by mbp at sourcefrog
merge win32 portability fixes
368
369
bzr-0.0.2.1
370
371
  PORTABILITY:
372
373
    * Win32 fixes from Steve Brown.
374
375
181 by mbp at sourcefrog
prepare for 0.0.3 release
376
bzr-0.0.2  "black cube"  2005-03-31
101 by mbp at sourcefrog
change default ignore list
377
133 by mbp at sourcefrog
- new 'ignored' command
378
  ENHANCEMENTS:
101 by mbp at sourcefrog
change default ignore list
379
110 by mbp at sourcefrog
Add more patterns to default ignore list
380
    * Default ignore list extended (see bzrlib/__init__.py).
101 by mbp at sourcefrog
change default ignore list
381
102 by mbp at sourcefrog
- cache ignore list in Tree
382
    * Patterns in .bzrignore are now added to the default ignore list,
383
      rather than replacing it.
384
146 by mbp at sourcefrog
match ignore patterns like ./config.h
385
    * Ignore list isn't reread for every file.
102 by mbp at sourcefrog
- cache ignore list in Tree
386
110 by mbp at sourcefrog
Add more patterns to default ignore list
387
    * More help topics.
388
118 by mbp at sourcefrog
Update news
389
    * Reinstate the 'bzr check' command to check invariants of the
390
      branch.
133 by mbp at sourcefrog
- new 'ignored' command
391
135 by mbp at sourcefrog
Simple new 'deleted' command
392
    * New 'ignored' command lists which files are ignored and why;
393
      'deleted' lists files deleted in the current working tree.
394
395
    * Performance improvements.
137 by mbp at sourcefrog
new --profile option
396
397
    * New global --profile option.
146 by mbp at sourcefrog
match ignore patterns like ./config.h
398
    
399
    * Ignore patterns like './config.h' now correctly match files in
163 by mbp at sourcefrog
merge win32 portability fixes
400
      the root directory only.
401
402
99 by mbp at sourcefrog
update for release 0.0.1
403
bzr-0.0.1  2005-03-26
72 by mbp at sourcefrog
- import a subset of elementtree for easier installation
404
81 by mbp at sourcefrog
show space usage for various stores in the info command
405
  ENHANCEMENTS:
406
407
    * More information from info command.
408
83 by mbp at sourcefrog
Can now say "bzr help COMMAND" for more detailed help
409
    * Can now say "bzr help COMMAND" for more detailed help.
410
92 by mbp at sourcefrog
more performance measurement
411
    * Less file flushing and faster performance when writing logs and
412
      committing to stores.
413
96 by mbp at sourcefrog
with commit -v, show committed revision number
414
    * More useful verbose output from some commands.
415
93 by mbp at sourcefrog
Fix inverted display of 'R' and 'M' during 'commit -v'
416
  BUG FIXES:
417
418
    * Fix inverted display of 'R' and 'M' during 'commit -v'.
419
72 by mbp at sourcefrog
- import a subset of elementtree for easier installation
420
  PORTABILITY:
421
422
    * Include a subset of ElementTree-1.2.20040618 to make
423
      installation easier.
424
73 by mbp at sourcefrog
fix time.localtime call for python 2.3
425
    * Fix time.localtime call to work with Python 2.3 (the minimum
426
      supported).
427
428
71 by mbp at sourcefrog
Add NEWS file
429
bzr-0.0.0.69  2005-03-22
430
431
  ENHANCEMENTS:
432
433
    * First public release.
434
435
    * Storage of local versions: init, add, remove, rm, info, log,
436
      diff, status, etc.