~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-10-16 23:53:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1459.
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051016235302-818de607403e1c6e
test that the presence of a signature does not make a missing base file magically appear present

Show diffs side-by-side

added added

removed removed

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