~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-05-06 02:34:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050506023454-7118a1b22e8515bc
- ignore any diff files lying around in tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr-0.0.7 2005-09-02
2
 
 
3
 
  NEW FEATURES:
4
 
 
5
 
    * ``bzr shell-complete`` command contributed by Clint Adams to
6
 
      help with intelligent shell completion.
7
 
 
8
 
    * New expert command ``bzr find-merge-base`` for debugging merges.
9
 
 
10
 
 
11
 
  ENHANCEMENTS:
12
 
 
13
 
    * Much better merge support.
14
 
 
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
 
 
19
 
 
20
 
  BUG FIXES:
21
 
 
22
 
    * ``bzr upgrade`` no longer fails when trying to fix trees that
23
 
      mention revisions that are not present.
24
 
 
25
 
    * Fixed bugs in listing plugins from ``bzr plugins``.
26
 
 
27
 
    * Fix case of $EDITOR containing options for the editor.
28
 
 
29
 
    * Fix log -r refusing to show the last revision.
30
 
      (Patch from Goffredo Baroncelli.)
31
 
 
32
 
 
33
 
  CHANGES:
34
 
 
35
 
    * ``bzr log --show-ids`` shows the revision ids of all parents.
36
 
 
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
 
 
41
 
 
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
 
 
50
 
bzr-0.0.6 2005-08-18
51
 
 
52
 
  NEW FEATURES:
53
 
 
54
 
    * Python plugins, automatically loaded from the directories on
55
 
      BZR_PLUGIN_PATH or ~/.bzr.conf/plugins by default.
56
 
 
57
 
    * New 'bzr mkdir' command.
58
 
 
59
 
    * Commit mesage is fetched from an editor if not given on the
60
 
      command line; patch from Torsten Marek.
61
 
 
62
 
    * ``bzr log -m FOO`` displays commits whose message matches regexp 
63
 
      FOO.
64
 
      
65
 
    * ``bzr add`` with no arguments adds everything under the current directory.
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
 
 
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
 
 
77
 
 
78
 
  ENHANCEMENTS:
79
 
 
80
 
    * Faster working tree operations.
81
 
 
82
 
 
83
 
  CHANGES:
84
 
 
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
 
 
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`` 
99
 
      option.  Patch from William Dodé and John Meinel.
100
 
 
101
 
    * New ``bzr upgrade`` command to upgrade the format of a branch,
102
 
      replacing ``bzr check --update``.
103
 
 
104
 
    * Files within store directories are no longer marked readonly on
105
 
      disk.
106
 
 
107
 
    * Changed ``bzr log`` output to a more compact form suggested by
108
 
      John A Meinel.  Old format is available with the ``--long`` or
109
 
      ``-l`` option, patched by William Dodé.
110
 
 
111
 
    * By default the commit command refuses to record a revision with
112
 
      no changes unless the ``--unchanged`` option is given.
113
 
 
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
 
 
130
 
 
131
 
bzr-0.0.5  2005-06-15
132
 
  
133
 
  CHANGES:
134
 
 
135
 
    * ``bzr`` with no command now shows help rather than giving an
136
 
      error.  Suggested by Michael Ellerman.
137
 
 
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
 
 
143
 
    * ``bzr log`` runs from most-recent to least-recent, the reverse
144
 
      of the previous order.  The previous behaviour can be obtained
145
 
      with the ``--forward`` option.
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.
150
 
 
 
1
bzr-0.0.5  NOT RELEASED YET
151
2
 
152
3
  ENHANCEMENTS:
153
4
 
154
5
    * New 'bzr whoami --email' option shows only the email component
155
6
      of the user identification, from Jo Vermeulen.
156
7
 
157
 
    * New ``bzr ignore PATTERN`` command.
 
8
    * New 'bzr ignore PATTERN' command.
158
9
 
159
10
    * Nicer error message for broken pipe, interrupt and similar
160
11
      conditions that don't indicate an internal error.
161
12
 
162
 
    * Add ``.*.sw[nop] .git .*.tmp *,v`` to default ignore patterns.
 
13
    * Add ``.*.swp .*.tmp *,v`` to default ignore patterns.
163
14
 
164
15
    * Per-branch locks keyed on ``.bzr/branch-lock``, available in
165
16
      either read or write mode.
171
22
 
172
23
    * Changed format for describing changes in ``bzr log -v``.
173
24
 
174
 
    * New option ``bzr commit --file`` to take a message from a file,
175
 
      suggested by LarstiQ.
176
 
 
177
 
    * New syntax ``bzr status [FILE...]`` contributed by Bartosz
178
 
      Oler.  File may be in a branch other than the working directory.
179
 
 
180
 
    * ``bzr log`` and ``bzr root`` can be given an http URL instead of
181
 
      a filename.
182
 
 
183
 
    * Commands can now be defined by external programs or scripts
184
 
      in a directory on $BZRPATH.
185
 
 
186
 
    * New "stat cache" avoids reading the contents of files if they 
187
 
      haven't changed since the previous time.
188
 
 
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
 
 
192
 
    * New optional parameter ``bzr info [BRANCH]``.
193
 
 
194
 
    * New form ``bzr commit SELECTED`` to commit only selected files.
195
 
 
196
 
    * New form ``bzr log -r FROM:TO`` shows changes in selected
197
 
      range; contributed by John A Meinel.
198
 
 
199
 
    * New option ``bzr diff --diff-options 'OPTS'`` allows passing
200
 
      options through to an external GNU diff.
201
 
 
202
 
    * New option ``bzr add --no-recurse`` to add a directory but not
203
 
      their contents.
204
 
 
205
 
    * ``bzr --version`` now shows more information if bzr is being run
206
 
      from a branch.
207
 
 
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
 
 
214
 
    * Various fixes for files whose names contain spaces or other
215
 
      metacharacters.
216
 
 
217
 
 
218
25
  TESTING:
219
26
 
220
27
    * Converted black-box test suites from Bourne shell into Python;
221
28
      now run using ``./testbzr``.  Various structural improvements to
222
29
      the tests.
223
30
 
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
 
 
227
 
    * testbzr also runs the internal tests, so the only command
228
 
      required to check is just ``./testbzr``.
229
 
 
230
 
    * testbzr requires python2.4, but can be used to test bzr running
231
 
      under a different version.
232
 
 
233
 
    * Tests added for many other changes in this release.
234
 
 
235
 
 
236
31
  INTERNAL:
237
32
 
238
33
    * Included ElementTree library upgraded to 1.2.6 by Fredrik Lundh.
239
34
 
240
 
    * Refactor command functions into Command objects based on HCT by
241
 
      Scott James Remnant.
 
35
    * Refactor command functions into Command objects based on
 
36
      mango-sorbet by Scott James Remnant.
242
37
 
243
38
    * Better help messages for many commands.
244
39
 
250
45
 
251
46
    * Simpler and faster compare_inventories() function.
252
47
 
253
 
    * bzrlib.open_tracefile() takes a tracefilename parameter.
254
 
 
255
 
    * New AtomicFile class.
256
 
 
257
 
    * New developer commands ``added``, ``modified``.
258
 
 
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
 
 
266
48
bzr-0.0.4  2005-04-22
267
49
 
268
50
  ENHANCEMENTS: