~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Magnus Thernings patch to remove status --revision, adjusted to update help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr 0.6rc1 2005-10-27
2
 
 
3
 
  IMPROVEMENTS:
4
 
  
5
 
    * merge now takes a --show-base option to include the base text in
6
 
      conflicts.
7
 
      (Aaron Bentley)
8
 
 
9
 
    * The config files are now read using ConfigObj, so '=' should be used as
10
 
      a separator, not ':'.
11
 
      (Aaron Bentley)
12
 
 
13
 
    * New 'bzr commit --strict' option refuses to commit if there are 
14
 
      any unknown files in the tree.  To commit, make sure all files are 
15
 
      either ignored, added, or deleted.  (Michael Ellerman)
16
 
 
17
 
    * The config directory is now ~/.bazaar, and there is a single file 
18
 
      ~/.bazaar/bazaar.conf storing email, editor and other preferences.
19
 
      (Robert Collins)
20
 
 
21
 
    * 'bzr add' no longer takes a --verbose option, and a --quiet option
22
 
      has been added that suppresses all output.
23
 
 
24
 
    * Improved zsh completion support in contrib/zsh, from Clint
25
 
      Adams.
26
 
 
27
 
    * Builtin 'bzr annotate' command, by Martin Pool with improvements from 
28
 
      Goffredo Baroncelli.
29
 
    
30
 
    * 'bzr check' now accepts -v for verbose reporting, and checks for
31
 
      ghosts in the branch. (Robert Collins)
32
 
 
33
 
    * New command 're-sign' which will regenerate the gpg signature for 
34
 
      a revision. (Robert Collins)
35
 
 
36
 
    * If you set check_signatures=require for a path in 
37
 
      ~/.bazaar/branches.conf then bzr will invoke your
38
 
      gpg_signing_command (defaults to gpg) and record a digital signature
39
 
      of your commit. (Robert Collins)
40
 
 
41
 
    * New sftp transport, based on Paramiko.  (Robey Pointer)
42
 
 
43
 
    * 'bzr pull' now accepts '--clobber' which will discard local changes
44
 
      and make this branch identical to the source branch. (Robert Collins)
45
 
 
46
 
    * Just give a quieter warning if a plugin can't be loaded, and 
47
 
      put the details in .bzr.log.  (Martin Pool)
48
 
 
49
 
    * 'bzr branch' will now set the branch-name to the last component of the
50
 
      output directory, if one was supplied.
51
 
 
52
 
    * New sftp transport, based on Paramiko.  (Robey Pointer)
53
 
 
54
 
    * If the option 'post_commit' is set to one (or more) python function
55
 
      names (must be in the bzrlib namespace), then they will be invoked
56
 
      after the commit has completed, with the branch and revision_id as
57
 
      parameters. (Robert Collins)
58
 
 
59
 
    * Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
60
 
 
61
 
    * --merge-type weave is now supported for file contents.  Tree-shape
62
 
      changes are still three-way based.  (Martin Pool, Aaron Bentley)
63
 
 
64
 
    * 'bzr check' allows the first revision on revision-history to have
65
 
      parents - something that is expected for cheap checkouts, and occurs
66
 
      when conversions from baz do not have all history.  (Robert Collins).
67
 
 
68
 
   * 'bzr merge' can now graft unrelated trees together, if your specify
69
 
     0 as a base. (Aaron Bentley)
70
 
 
71
 
   * 'bzr commit branch' and 'bzr commit branch/file1 branch/file2' now work
72
 
     (Aaron Bentley)
73
 
 
74
 
    * Add '.sconsign*' to default ignore list.  (Alexander Belchenko)
75
 
 
76
 
   * 'bzr merge --reprocess' minimizes conflicts
77
 
 
78
 
  TESTING:
79
 
 
80
 
    * The 'bzr selftest --pattern' option for has been removed, now 
81
 
      test specifiers on the command line can be simple strings, or 
82
 
      regexps, or both. (Robert Collins)
83
 
 
84
 
    * Passing -v to selftest will now show the time each test took to 
85
 
      complete, which will aid in analysing performance regressions and
86
 
      related questions. (Robert Collins)
87
 
 
88
 
    * 'bzr selftest' runs all tests, even if one fails, unless '--one'
89
 
      is given. (Martin Pool)
90
 
 
91
 
    * There is a new method for TestCaseInTempDir, assertFileEqual, which
92
 
      will check that a given content is equal to the content of the named
93
 
      file. (Robert Collins)
94
 
 
95
 
    * Fix test suite's habit of leaving many temporary log files in $TMPDIR.
96
 
      (Martin Pool)
97
 
 
98
 
  INTERNALS:
99
 
 
100
 
    * New 'testament' command and concept for making gpg-signatures 
101
 
      of revisions that are not tied to a particular internal
102
 
      representation.  (Martin Pool).
103
 
 
104
 
    * Per-revision properties ('revprops') as key-value associated 
105
 
      strings on each revision created when the revision is committed.
106
 
      Intended mainly for the use of external tools.  (Martin Pool).
107
 
 
108
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
109
 
      (Robert Collins)
110
 
 
111
 
    * Improved command line option definitions allowing explanations
112
 
      for individual options, among other things.  Contributed by 
113
 
      Magnus Therning.
114
 
 
115
 
    * Config options have moved from bzrlib.osutils to bzrlib.config.
116
 
      Configuration is now done via the config.Config interface:
117
 
      Depending on whether you have a Branch, a Location or no information
118
 
      available, construct a *Config, and use its signature_checking,
119
 
      username and user_email methods. (Robert Collins)
120
 
 
121
 
    * Plugins are now loaded under bzrlib.plugins, not bzrlib.plugin, and
122
 
      they are made available for other plugins to use. You should not 
123
 
      import other plugins during the __init__ of your plugin though, as 
124
 
      no ordering is guaranteed, and the plugins directory is not on the
125
 
      python path. (Robert Collins)
126
 
 
127
 
    * Branch.relpath has been moved to WorkingTree.relpath. WorkingTree no
128
 
      no longer takes an inventory, rather it takes an option branch
129
 
      parameter, and if None is given will open the branch at basedir 
130
 
      implicitly. (Robert Collins)
131
 
 
132
 
    * Cleaner exception structure and error reporting.  Suggested by 
133
 
      Scott James Remnant.  (Martin Pool)
134
 
 
135
 
    * Branch.remove has been moved to WorkingTree, which has also gained
136
 
      lock_read, lock_write and unlock methods for convenience. (Robert
137
 
      Collins)
138
 
 
139
 
    * Two decorators, needs_read_lock and needs_write_lock have been added
140
 
      to the branch module. Use these to cause a function to run in a
141
 
      read or write lock respectively. (Robert Collins)
142
 
 
143
 
    * Branch.open_containing now returns a tuple (Branch, relative-path),
144
 
      which allows direct access to the common case of 'get me this file
145
 
      from its branch'. (Robert Collins)
146
 
 
147
 
    * Transports can register using register_lazy_transport, and they 
148
 
      will be loaded when first used.  (Martin Pool)
149
 
 
150
 
    * 'pull' has been factored out of the command as WorkingTree.pull().
151
 
      A new option to WorkingTree.pull has been added, clobber, which will
152
 
      ignore diverged history and pull anyway.
153
 
      (Robert Collins)
154
 
 
155
 
    * config.Config has a 'get_user_option' call that accepts an option name.
156
 
      This will be looked up in branches.conf and bazaar.conf as normal.
157
 
      It is intended that this be used by plugins to support options - 
158
 
      options of built in programs should have specific methods on the config.
159
 
      (Robert Collins)
160
 
 
161
 
    * merge.merge_inner now has tempdir as an optional parameter. (Robert
162
 
      Collins)
163
 
 
164
 
    * Tree.kind is not recorded at the top level of the hierarchy, as it was
165
 
      missing on EmptyTree, leading to a bug with merge on EmptyTrees.
166
 
      (Robert Collins)
167
 
 
168
 
    * WorkingTree.__del__ has been removed, it was non deterministic and not 
169
 
      doing what it was intended to. See WorkingTree.__init__ for a comment
170
 
      about future directions. (Robert Collins/Martin Pool)
171
 
 
172
 
    * bzrlib.transport.http has been modified so that only 404 urllib errors
173
 
      are returned as NoSuchFile. Other exceptions will propogate as normal.
174
 
      This allows debuging of actual errors. (Robert Collins)
175
 
 
176
 
    * bzrlib.transport.Transport now accepts *ONLY* url escaped relative paths
177
 
      to apis like 'put', 'get' and 'has'. This is to provide consistent
178
 
      behaviour - it operates on url's only. (Robert Collins)
179
 
 
180
 
    * Transports can register using register_lazy_transport, and they 
181
 
      will be loaded when first used.  (Martin Pool)
182
 
 
183
 
    * 'merge_flex' no longer calls conflict_handler.finalize(), instead that
184
 
      is called by merge_inner. This is so that the conflict count can be 
185
 
      retrieved (and potentially manipulated) before returning to the caller
186
 
      of merge_inner. Likewise 'merge' now returns the conflict count to the
187
 
      caller. (Robert Collins)
188
 
 
189
 
    * 'revision.revision_graph can handle having only partial history for
190
 
      a revision - that is no revisions in the graph with no parents.
191
 
      (Robert Collins).
192
 
 
193
 
    * New builtins.branch_files uses the standard file_list rules to produce
194
 
      a branch and a list of paths, relative to that branch (Aaron Bentley)
195
 
 
196
 
    * New TestCase.addCleanup facility.
197
 
 
198
 
    * New bzrlib.version_info tuple (similar to sys.version_info), which can
199
 
      be used by programs importing bzrlib.
200
 
 
201
 
  BUG FIXES:
202
 
 
203
 
    * Better handling of branches in directories with non-ascii names. 
204
 
      (Joel Rosdahl, Panagiotis Papadakos)
205
 
 
206
 
bzr 0.1.1 2005-10-12
207
 
 
208
 
  BUG FIXES:
209
 
 
210
 
    * Fix problem in pulling over http from machines that do not 
211
 
      allow directories to be listed.
212
 
 
213
 
    * Avoid harmless warning about invalid hash cache after 
214
 
      upgrading branch format.
215
 
 
216
 
  PERFORMANCE: 
217
 
  
218
 
    * Avoid some unnecessary http operations in branch and pull.
219
 
 
220
 
 
221
 
bzr 0.1 2005-10-11
222
 
 
223
 
  NOTES:
224
 
 
225
 
    * 'bzr branch' over http initially gives a very high estimate
226
 
      of completion time but it should fall as the first few 
227
 
      revisions are pulled in.  branch is still slow on 
228
 
      high-latency connections.
229
 
 
230
 
  BUG FIXES:
231
 
  
232
 
    * bzr-man.py has been updated to work again. Contributed by
233
 
      Rob Weir.
234
 
 
235
 
    * Locking is now done with fcntl.lockf which works with NFS
236
 
      file systems. Contributed by Harald Meland.
237
 
 
238
 
    * When a merge encounters a file that has been deleted on
239
 
      one side and modified on the other, the old contents are
240
 
      written out to foo.BASE and foo.SIDE, where SIDE is this
241
 
      or OTHER. Contributed by Aaron Bentley.
242
 
 
243
 
    * Export was choosing incorrect file paths for the content of
244
 
      the tarball, this has been fixed by Aaron Bentley.
245
 
 
246
 
    * Commit will no longer commit without a log message, an 
247
 
      error is returned instead. Contributed by Jelmer Vernooij.
248
 
 
249
 
    * If you commit a specific file in a sub directory, any of its
250
 
      parent directories that are added but not listed will be 
251
 
      automatically included. Suggested by Michael Ellerman.
252
 
 
253
 
    * bzr commit and upgrade did not correctly record new revisions
254
 
      for files with only a change to their executable status.
255
 
      bzr will correct this when it encounters it. Fixed by
256
 
      Robert Collins
257
 
 
258
 
    * HTTP tests now force off the use of http_proxy for the duration.
259
 
      Contributed by Gustavo Niemeyer.
260
 
 
261
 
    * Fix problems in merging weave-based branches that have 
262
 
      different partial views of history.
263
 
 
264
 
    * Symlink support: working with symlinks when not in the root of a 
265
 
      bzr tree was broken, patch from Scott James Remnant.
266
 
 
267
 
 
268
 
  IMPROVEMENTS:
269
 
 
270
 
    * 'branch' now accepts a --basis parameter which will take advantage
271
 
      of local history when making a new branch. This allows faster 
272
 
      branching of remote branches. Contributed by Aaron Bentley.
273
 
 
274
 
    * New tree format based on weave files, called version 5.
275
 
      Existing branches can be upgraded to this format using 
276
 
      'bzr upgrade'.
277
 
 
278
 
    * Symlinks are now versionable. Initial patch by 
279
 
      Erik Toubro Nielsen, updated to head by Robert Collins.
280
 
 
281
 
    * Executable bits are tracked on files. Patch from Gustavo
282
 
      Niemeyer.
283
 
 
284
 
    * 'bzr status' now shows unknown files inside a selected directory.
285
 
      Patch from Heikki Paajanen.
286
 
 
287
 
    * Merge conflicts are recorded in .bzr. Two new commands 'conflicts'
288
 
      and 'resolve' have needed added, which list and remove those 
289
 
      merge conflicts respectively. A conflicted tree cannot be committed
290
 
      in. Contributed by Aaron Bentley.
291
 
 
292
 
    * 'rm' is now an alias for 'remove'.
293
 
 
294
 
    * Stores now split out their content in a single byte prefixed hash,
295
 
      dropping the density of files per directory by 256. Contributed by
296
 
      Gustavo Niemeyer.
297
 
 
298
 
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
299
 
      Contributed by Robert Collins.
300
 
 
301
 
    * 'bzr log' with the default formatter will show merged revisions,
302
 
      indented to the right. Initial implementation contributed by Gustavo
303
 
      Niemeyer, made incremental by Robert Collins.
304
 
 
305
 
 
306
 
  INTERNALS:
307
 
 
308
 
    * Test case failures have the exception printed after the log 
309
 
      for your viewing pleasure.
310
 
 
311
 
    * InventoryEntry is now an abstract base class, use one of the
312
 
      concrete InventoryDirectory etc classes instead.
313
 
 
314
 
    * Branch raises an UnsupportedFormatError when it detects a 
315
 
      bzr branch it cannot understand. This allows for precise
316
 
      handling of such circumstances.
317
 
 
318
 
 
319
 
  TESTING:
320
 
 
321
 
    * Removed testsweet module so that tests can be run after 
322
 
      bzr installed by 'bzr selftest'.
323
 
 
324
 
    * 'bzr selftest' command-line arguments can now be partial ids
325
 
      of tests to run, e.g. 'bzr selftest test_weave'
326
 
 
327
 
      
328
 
bzr 0.0.9 2005-09-23
329
 
 
330
 
  BUG FIXES:
331
 
 
332
 
    * Fixed "branch -r" option.
333
 
 
334
 
    * Fix remote access to branches containing non-compressed history.
335
 
      (Robert Collins).
336
 
 
337
 
    * Better reliability of http server tests.  (John Arbash-Meinel)
338
 
 
339
 
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
340
 
   
341
 
    * Various minor bug in windows support have been fixed, largely in the
342
 
      test suite. Contributed by Alexander Belchenko.
343
 
 
344
 
  IMPROVEMENTS:
345
 
 
346
 
    * Status now accepts a -r argument to give status between chosen
347
 
      revisions. Contributed by Heikki Paajanen.
348
 
 
349
 
    * Revision arguments no longer use +/-/= to control ranges, instead
350
 
      there is a 'before' namespace, which limits the successive namespace.
351
 
      For example '$ bzr log -r date:yesterday..before:date:today' will
352
 
      select everything from yesterday and before today. Contributed by
353
 
      Robey Pointer
354
 
 
355
 
    * There is now a bzr.bat file created by distutils when building on 
356
 
      Windows. Contributed by Alexander Belchenko.
357
 
 
358
 
  INTERNALS:
359
 
 
360
 
    * Removed uuid() as it was unused.
361
 
 
362
 
    * Improved 'fetch' code for pulling revisions from one branch into
363
 
      another (used by pull, merged, etc.)
364
 
 
365
 
 
366
 
bzr 0.0.8 2005-09-20
367
 
 
368
 
  IMPROVEMENTS:
369
 
 
370
 
    * Adding a file whose parent directory is not versioned will
371
 
      implicitly add the parent, and so on up to the root. This means
372
 
      you should never need to explictly add a directory, they'll just
373
 
      get added when you add a file in the directory.  Contributed by
374
 
      Michael Ellerman.
375
 
 
376
 
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
377
 
      Nir Soffer.
378
 
 
379
 
    * If you set BZR_EDITOR in the environment, it is checked in
380
 
      preference to EDITOR and the config file for the interactive commit
381
 
      editing program. Related to this is a bugfix where a missing program
382
 
      set in EDITOR would cause editing to fail, now the fallback program
383
 
      for the operating system is still tried.
384
 
 
385
 
    * Files that are not directories/symlinks/regular files will no longer
386
 
      cause bzr to fail, it will just ignore them by default. You cannot add
387
 
      them to the tree though - they are not versionable.
388
 
 
 
1
development head
389
2
 
390
3
  INTERNALS:
391
4
 
398
11
    * Fixed strange error when trying to access a nonexistent http
399
12
      branch.
400
13
 
401
 
    * Make sure that the hashcache gets written out if it can't be
402
 
      read.
403
 
 
404
14
 
405
15
  PORTABILITY:
406
16
 
407
17
    * Various Windows fixes from Ollie Rutherfurd.
408
18
 
409
 
    * Quieten warnings about locking; patch from Matt Lavin.
410
 
 
411
19
 
412
20
bzr-0.0.7 2005-09-02
413
21