~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-07-07 10:31:36 UTC
  • Revision ID: mbp@sourcefrog.net-20050707103135-9b4d911d8df6e880
- fix pwk help

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
UNRELEASED CHANGES
2
 
 
3
 
  IMPROVEMENTS:
4
 
 
5
 
    * The config directory is now ~/.bazaar, and there is a single file 
6
 
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
7
 
      (Robert Collins)
8
 
 
9
 
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
10
 
      has been added that suppresses all output.
11
 
 
12
 
    * Improved zsh completion support in contrib/zsh, from Clint
13
 
      Adams.
14
 
 
15
 
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
16
 
      Goffredo Baroncelli.
17
 
    
18
 
    * 'bzr check' now accepts -v for verbose reporting, and checks for
19
 
      ghosts in the branch.
20
 
 
21
 
    * New command 're-sign' which will regenerate the gpg signature for 
22
 
      a revision.
23
 
 
24
 
    * If you set check_signatures=require for a path in 
25
 
      ~/.bazaar/branches.conf then bzr will invoke your
26
 
      gpg_signing_command (defaults to gpg) and record a digital signature
27
 
      of your commit.
28
 
 
29
 
  TESTING:
30
 
 
31
 
    * The 'bzr selftest --pattern' option for has been removed, now 
32
 
      test specifiers on the command line can be simple strings, or 
33
 
      regexps, or both.
34
 
 
35
 
    * Passing -v to selftest will now show the time each test took to 
36
 
      complete, which will aid in analysing performance regressions and
37
 
      related questions.
38
 
 
39
 
    * 'bzr selftest' runs all tests, even if one feels, unless '--one'
40
 
      is given.
41
 
 
42
 
  INTERNALS:
43
 
 
44
 
    * New 'manifest' command and concept for making gpg-signatures 
45
 
      of revisions that are not tied to a particular internal
46
 
      representation.
47
 
 
48
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
49
 
      (Robert Collins)
50
 
 
51
 
    * Improved command line option definitions allowing explanations
52
 
      for individual options, among other things.  Contributed by 
53
 
      Magnus Therning.
54
 
 
55
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
56
 
      Configuration is now done via the config.Config interface:
57
 
      Depending on whether you have a Branch, a Location or no information
58
 
      available, construct a *Config, and use its signature_checking,
59
 
      username and user_email methods. (Robert Collins)
60
 
 
61
 
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
62
 
      they are made available for other plugins to use. You should not 
63
 
      import other plugins during the __init__ of your plugin though, as 
64
 
      no ordering is guaranteed, and the plugins directory is not on the
65
 
      python path. (Robert Collins)
66
 
 
67
 
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
68
 
      no longer takes an inventory, rather it takes an option branch
69
 
      parameter, and if None is given will open the branch at basedir 
70
 
      implicitly. (Robert Collins)
71
 
 
72
 
 
73
 
bzr 0.1.1 2005-10-12
74
 
 
75
 
  BUG FIXES:
76
 
 
77
 
    * Fix problem in pulling over http from machines that do not 
78
 
      allow directories to be listed.
79
 
 
80
 
    * Avoid harmless warning about invalid hash cache after 
81
 
      upgrading branch format.
82
 
 
83
 
  PERFORMANCE: 
84
 
  
85
 
    * Avoid some unnecessary http operations in branch and pull.
86
 
 
87
 
 
88
 
bzr 0.1 2005-10-11
89
 
 
90
 
  NOTES:
91
 
 
92
 
    * 'bzr branch' over http initially gives a very high estimate
93
 
      of completion time but it should fall as the first few 
94
 
      revisions are pulled in.  branch is still slow on 
95
 
      high-latency connections.
96
 
 
97
 
  BUG FIXES:
98
 
  
99
 
    * bzr-man.py has been updated to work again. Contributed by
100
 
      Rob Weir.
101
 
 
102
 
    * Locking is now done with fcntl.lockf which works with NFS
103
 
      file systems. Contributed by Harald Meland.
104
 
 
105
 
    * When a merge encounters a file that has been deleted on
106
 
      one side and modified on the other, the old contents are
107
 
      written out to foo.BASE and foo.SIDE, where SIDE is this
108
 
      or OTHER. Contributed by Aaron Bentley.
109
 
 
110
 
    * Export was choosing incorrect file paths for the content of
111
 
      the tarball, this has been fixed by Aaron Bentley.
112
 
 
113
 
    * Commit will no longer commit without a log message, an 
114
 
      error is returned instead. Contributed by Jelmer Vernooij.
115
 
 
116
 
    * If you commit a specific file in a sub directory, any of its
117
 
      parent directories that are added but not listed will be 
118
 
      automatically included. Suggested by Michael Ellerman.
119
 
 
120
 
    * bzr commit and upgrade did not correctly record new revisions
121
 
      for files with only a change to their executable status.
122
 
      bzr will correct this when it encounters it. Fixed by
123
 
      Robert Collins
124
 
 
125
 
    * HTTP tests now force off the use of http_proxy for the duration.
126
 
      Contributed by Gustavo Niemeyer.
127
 
 
128
 
    * Fix problems in merging weave-based branches that have 
129
 
      different partial views of history.
130
 
 
131
 
    * Symlink support: working with symlinks when not in the root of a 
132
 
      bzr tree was broken, patch from Scott James Remnant.
133
 
 
134
 
 
135
 
  IMPROVEMENTS:
136
 
 
137
 
    * 'branch' now accepts a --basis parameter which will take advantage
138
 
      of local history when making a new branch. This allows faster 
139
 
      branching of remote branches. Contributed by Aaron Bentley.
140
 
 
141
 
    * New tree format based on weave files, called version 5.
142
 
      Existing branches can be upgraded to this format using 
143
 
      'bzr upgrade'.
144
 
 
145
 
    * Symlinks are now versionable. Initial patch by 
146
 
      Erik Toubro Nielsen, updated to head by Robert Collins.
147
 
 
148
 
    * Executable bits are tracked on files. Patch from Gustavo
149
 
      Niemeyer.
150
 
 
151
 
    * 'bzr status' now shows unknown files inside a selected directory.
152
 
      Patch from Heikki Paajanen.
153
 
 
154
 
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
155
 
      and 'resolve' have needed added, which list and remove those 
156
 
      merge conflicts respectively. A conflicted tree cannot be committed
157
 
      in. Contributed by Aaron Bentley.
158
 
 
159
 
    * 'rm' is now an alias for 'remove'.
160
 
 
161
 
    * Stores now split out their content in a single byte prefixed hash,
162
 
      dropping the density of files per directory by 256. Contributed by
163
 
      Gustavo Niemeyer.
164
 
 
165
 
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
166
 
      Contributed by Robert Collins.
167
 
 
168
 
    * 'bzr log' with the default formatter will show merged revisions,
169
 
      indented to the right. Initial implementation contributed by Gustavo
170
 
      Niemeyer, made incremental by Robert Collins.
171
 
 
172
 
 
173
 
  INTERNALS:
174
 
 
175
 
    * Test case failures have the exception printed after the log 
176
 
      for your viewing pleasure.
177
 
 
178
 
    * InventoryEntry is now an abstract base class, use one of the
179
 
      concrete InventoryDirectory etc classes instead.
180
 
 
181
 
    * Branch raises an UnsupportedFormatError when it detects a 
182
 
      bzr branch it cannot understand. This allows for precise
183
 
      handling of such circumstances.
184
 
 
185
 
 
186
 
  TESTING:
187
 
 
188
 
    * Removed testsweet module so that tests can be run after 
189
 
      bzr installed by 'bzr selftest'.
190
 
 
191
 
    * 'bzr selftest' command-line arguments can now be partial ids
192
 
      of tests to run, e.g. 'bzr selftest test_weave'
193
 
 
194
 
      
195
 
bzr 0.0.9 2005-09-23
196
 
 
197
 
  BUG FIXES:
198
 
 
199
 
    * Fixed "branch -r" option.
200
 
 
201
 
    * Fix remote access to branches containing non-compressed history.
202
 
      (Robert Collins).
203
 
 
204
 
    * Better reliability of http server tests.  (John Arbash-Meinel)
205
 
 
206
 
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
207
 
   
208
 
    * Various minor bug in windows support have been fixed, largely in the
209
 
      test suite. Contributed by Alexander Belchenko.
210
 
 
211
 
  IMPROVEMENTS:
212
 
 
213
 
    * Status now accepts a -r argument to give status between chosen
214
 
      revisions. Contributed by Heikki Paajanen.
215
 
 
216
 
    * Revision arguments no longer use +/-/= to control ranges, instead
217
 
      there is a 'before' namespace, which limits the successive namespace.
218
 
      For example '$ bzr log -r date:yesterday..before:date:today' will
219
 
      select everything from yesterday and before today. Contributed by
220
 
      Robey Pointer
221
 
 
222
 
    * There is now a bzr.bat file created by distutils when building on 
223
 
      Windows. Contributed by Alexander Belchenko.
224
 
 
225
 
  INTERNALS:
226
 
 
227
 
    * Removed uuid() as it was unused.
228
 
 
229
 
    * Improved 'fetch' code for pulling revisions from one branch into
230
 
      another (used by pull, merged, etc.)
231
 
 
232
 
 
233
 
bzr 0.0.8 2005-09-20
234
 
 
235
 
  IMPROVEMENTS:
236
 
 
237
 
    * Adding a file whose parent directory is not versioned will
238
 
      implicitly add the parent, and so on up to the root. This means
239
 
      you should never need to explictly add a directory, they'll just
240
 
      get added when you add a file in the directory.  Contributed by
241
 
      Michael Ellerman.
242
 
 
243
 
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
244
 
      Nir Soffer.
245
 
 
246
 
    * If you set BZR_EDITOR in the environment, it is checked in
247
 
      preference to EDITOR and the config file for the interactive commit
248
 
      editing program. Related to this is a bugfix where a missing program
249
 
      set in EDITOR would cause editing to fail, now the fallback program
250
 
      for the operating system is still tried.
251
 
 
252
 
    * Files that are not directories/symlinks/regular files will no longer
253
 
      cause bzr to fail, it will just ignore them by default. You cannot add
254
 
      them to the tree though - they are not versionable.
255
 
 
256
 
 
257
 
  INTERNALS:
258
 
 
259
 
    * Refactor xml packing/unpacking.
260
 
 
261
 
  BUG FIXES: 
262
 
 
263
 
    * Fixed 'bzr mv' by Ollie Rutherfurd.
264
 
 
265
 
    * Fixed strange error when trying to access a nonexistent http
266
 
      branch.
267
 
 
268
 
    * Make sure that the hashcache gets written out if it can't be
269
 
      read.
270
 
 
271
 
 
272
 
  PORTABILITY:
273
 
 
274
 
    * Various Windows fixes from Ollie Rutherfurd.
275
 
 
276
 
    * Quieten warnings about locking; patch from Matt Lavin.
277
 
 
278
 
 
279
 
bzr-0.0.7 2005-09-02
280
 
 
281
 
  NEW FEATURES:
282
 
 
283
 
    * ``bzr shell-complete`` command contributed by Clint Adams to
284
 
      help with intelligent shell completion.
285
 
 
286
 
    * New expert command ``bzr find-merge-base`` for debugging merges.
287
 
 
288
 
 
289
 
  ENHANCEMENTS:
290
 
 
291
 
    * Much better merge support.
292
 
 
293
 
    * merge3 conflicts are now reported with markers like '<<<<<<<'
294
 
      (seven characters) which is the same as CVS and pleases things
295
 
      like emacs smerge.
296
 
 
297
 
 
298
 
  BUG FIXES:
299
 
 
300
 
    * ``bzr upgrade`` no longer fails when trying to fix trees that
301
 
      mention revisions that are not present.
302
 
 
303
 
    * Fixed bugs in listing plugins from ``bzr plugins``.
304
 
 
305
 
    * Fix case of $EDITOR containing options for the editor.
306
 
 
307
 
    * Fix log -r refusing to show the last revision.
308
 
      (Patch from Goffredo Baroncelli.)
309
 
 
310
 
 
311
 
  CHANGES:
312
 
 
313
 
    * ``bzr log --show-ids`` shows the revision ids of all parents.
314
 
 
315
 
    * Externally provided commands on your $BZRPATH no longer need
316
 
      to recognize --bzr-usage to work properly, and can just handle
317
 
      --help themselves.
318
 
 
319
 
 
320
 
  LIBRARY:
321
 
 
322
 
    * Changed trace messages to go through the standard logging
323
 
      framework, so that they can more easily be redirected by
324
 
      libraries.
325
 
 
326
 
 
327
 
 
328
 
bzr-0.0.6 2005-08-18
 
1
DEVELOPMENT HEAD
329
2
 
330
3
  NEW FEATURES:
331
4
 
337
10
    * Commit mesage is fetched from an editor if not given on the
338
11
      command line; patch from Torsten Marek.
339
12
 
340
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
341
 
      FOO.
342
 
      
343
 
    * ``bzr add`` with no arguments adds everything under the current directory.
344
 
 
345
 
    * ``bzr mv`` does move or rename depending on its arguments, like
346
 
      the Unix command.
347
 
 
348
 
    * ``bzr missing`` command shows a summary of the differences
349
 
      between two trees.  (Merged from John Arbash-Meinel.)
350
 
 
351
 
    * An email address for commits to a particular tree can be
352
 
      specified by putting it into .bzr/email within a branch.  (Based
353
 
      on a patch from Heikki Paajanen.)
354
 
 
355
 
 
356
 
  ENHANCEMENTS:
357
 
 
358
 
    * Faster working tree operations.
359
 
 
360
 
 
361
13
  CHANGES:
362
14
 
363
 
    * 3rd-party modules shipped with bzr are copied within the bzrlib
364
 
      python package, so that they can be installed by the setup
365
 
      script without clashing with anything already existing on the
366
 
      system.  (Contributed by Gustavo Niemeyer.)
367
 
 
368
 
    * Moved plugins directory to bzrlib/, so that there's a standard
369
 
      plugin directory which is not only installed with bzr itself but
370
 
      is also available when using bzr from the development tree.
371
 
      BZR_PLUGIN_PATH and DEFAULT_PLUGIN_PATH are then added to the
372
 
      standard plugins directory.
373
 
 
374
15
    * When exporting to a tarball with ``bzr export --format tgz``, put 
375
16
      everything under a top directory rather than dumping it into the
376
17
      current directory.   This can be overridden with the ``--root`` 
377
 
      option.  Patch from William Dodé and John Meinel.
 
18
      option.  Patch from William Dod� and John Meinel.
378
19
 
379
20
    * New ``bzr upgrade`` command to upgrade the format of a branch,
380
21
      replacing ``bzr check --update``.
386
27
      John A Meinel.  Old format is available with the ``--long`` or
387
28
      ``-l`` option, patched by William Dodé.
388
29
 
389
 
    * By default the commit command refuses to record a revision with
390
 
      no changes unless the ``--unchanged`` option is given.
391
 
 
392
 
    * The ``--no-plugins``, ``--profile`` and ``--builtin`` command
393
 
      line options must come before the command name because they 
394
 
      affect what commands are available; all other options must come 
395
 
      after the command name because their interpretation depends on
396
 
      it.
397
 
 
398
 
    * ``branch`` and ``clone`` added as aliases for ``branch``.
399
 
 
400
 
    * Default log format is back to the long format; the compact one
401
 
      is available with ``--short``.
402
 
      
403
 
      
404
 
  BUG FIXES:
405
 
  
406
 
    * Fix bugs in committing only selected files or within a subdirectory.
407
 
 
408
30
 
409
31
bzr-0.0.5  2005-06-15
410
32