~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2006-08-16 22:00:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1942.
  • Revision ID: john@arbash-meinel.com-20060816220019-541cb90093258ac3
Using real utf8 and cache_utf8 has similar performance, 272ms, and 363ms

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
IN DEVELOPMENT
2
 
 
 
2
  
 
3
  IMPROVEMENTS:
 
4
    * 'merge' now takes --uncommitted, to apply uncommitted changes from a
 
5
      tree.  (Aaron Bentley)
 
6
  
 
7
    * 'bzr add --file-ids-from' can be used to specify another path to use
 
8
      for creating file ids, rather than generating all new ones. Internally,
 
9
      the 'action' passed to smart_add_tree() can return file_ids that
 
10
      will be used, rather than having bzrlib generate new ones.
 
11
      (John Arbash Meinel, #55781)
 
12
 
 
13
    * ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
 
14
      This will cache some of the intermediate trees, and decrease the
 
15
      setup time for benchmark tests. (John Arbash Meinel)
 
16
 
 
17
    * Inverse forms are provided for all boolean options.  For example,
 
18
      --strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
 
19
 
 
20
  BUG FIXES:
 
21
 
 
22
    * Handle TZ=UTC properly when reading/writing revisions.
 
23
      (John Arbash Meinel, #55783, #56290)
 
24
 
 
25
    * Use GPG_TTY to allow gpg --cl to work with gpg-agent in a pipeline,
 
26
      (passing text to sign in on stdin). (John Arbash Meinel, #54468)
 
27
 
 
28
    * External diff does the right thing for binaries even in foreign 
 
29
      languages. (John Arbash Meinel, #56307)
 
30
 
 
31
  INTERNALS:
 
32
 
 
33
    * ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()`` functions
 
34
      which can be used to cache the conversion between utf8 and Unicode.
 
35
      Especially helpful for some of the knit annotation code, which has to
 
36
      convert revision ids to utf8 to annotate lines in storage.
 
37
      (John Arbash Meinel)
 
38
 
 
39
bzr 0.9.0  2006-08-11
 
40
 
 
41
  SURPRISES:
 
42
 
 
43
   * The hard-coded built-in ignore rules have been removed. There are
 
44
     now two rulesets which are enforced. A user global one in 
 
45
     ~/.bazaar/ignore which will apply to every tree, and the tree
 
46
     specific one '.bzrignore'.
 
47
     ~/.bazaar/ignore will be created if it does not exist, but with
 
48
     a more conservative list than the old default.
 
49
     This fixes bugs with default rules being enforced no matter what. 
 
50
     The old list of ignore rules from bzr is available by
 
51
     running 'bzr ignore --old-default-rules'.
 
52
     (Robert Collins, Martin Pool, John Arbash Meinel)
 
53
 
 
54
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
 
55
     to more locations than just branch locations.
 
56
     (Aaron Bentley)
 
57
   
3
58
  IMPROVEMENTS:
4
59
 
5
60
   * The revision specifier "revno:" is extended to accept the syntax
7
62
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
8
63
     bzr.dev.  (Matthieu Moy)
9
64
 
10
 
   * No default ignore rules are applied by bzr - only the rules in .bzrignore
11
 
     are considered. This fixes bugs with default rules being enforced no
12
 
     matter what. The old list of ignore rules from bzr is available by
13
 
     running 'bzr ignore --old-default-rules'.
14
 
 
15
65
   * Tests updates to ensure proper URL handling, UNICODE support, and
16
66
     proper printing when the user's terminal encoding cannot display 
17
67
     the path of a file that has been versioned.
38
88
   * 'bzr selftest' now shows a progress bar with the number of tests, and 
39
89
     progress made. 'make check' shows tests in -v mode, to be more useful
40
90
     for the PQM status window. (Robert Collins).
 
91
     When using a progress bar, failed tests are printed out, rather than
 
92
     being overwritten by the progress bar until the suite finishes.
 
93
     (John Arbash Meinel)
41
94
 
42
95
   * 'bzr selftest --benchmark' will run a new benchmarking selftest.
43
96
     'bzr selftest --benchmark --lsprof-timed' will use lsprofile to generate
71
124
     the same way you would apply another branch.
72
125
     (John Arbash Meinel, Aaron Bentley)
73
126
  
74
 
   * 'branches.conf' has been changed to 'locations.conf', since it can apply
75
 
     to more locations than just branch locations.
76
 
     (Aaron Bentley)
77
 
   
78
127
   * 'bzr whoami' can now be used to set your identity from the command line,
79
128
     for a branch or globally.  (Robey Pointer)
80
129
 
101
150
     were removed. So it is safe to uncommit after a merge, fix something,
102
151
     and commit again. (John Arbash Meinel, #32526, #31426)
103
152
 
 
153
   * 'bzr init' now also works on remote locations.
 
154
     (Wouter van Heyst, #48904)
 
155
 
 
156
   * HTTP support has been updated. When using pycurl we now support 
 
157
     connection keep-alive, which reduces dns requests and round trips.
 
158
     And for both urllib and pycurl we support multi-range requests, 
 
159
     which decreases the number of round-trips. Performance results for
 
160
     ``bzr branch http://bazaar-vcs.org/bzr/bzr.dev/`` indicate
 
161
     http branching is now 2-3x faster, and ``bzr pull`` in an existing 
 
162
     branch is as much as 4x faster.
 
163
     (Michael Ellerman, Johan Rydberg, John Arbash Meinel, #46768)
 
164
 
 
165
   * Performance improvements for sftp. Branching and pulling are now up to
 
166
     2x faster. Utilize paramiko.readv() support for async requests if it
 
167
     is available (paramiko > 1.6) (John Arbash Meinel)
 
168
 
104
169
  BUG FIXES:
105
170
 
106
171
    * Fix shadowed definition of TestLocationConfig that caused some 
157
222
    * smart-add recurses through all supplied directories 
158
223
      (John Arbash Meinel, #52578)
159
224
 
 
225
    * Make the bundle reader extra lines before and after the bundle text.
 
226
      This allows you to parse an email with the bundle inline.
 
227
      (John Arbash Meinel, #49182)
 
228
 
 
229
    * Change the file id generator to squash a little bit more. Helps when
 
230
      working with long filenames on windows. (Also helps for unicode filenames
 
231
      not generating hidden files). (John Arbash Meinel, #43801)
 
232
 
 
233
    * Restore terminal mode on C-c while reading sftp password.  (#48923, 
 
234
      Nicholas Allen, Martin Pool)
 
235
 
 
236
    * Timestamps are rounded to 1ms, and revision entries can be recreated
 
237
      exactly. (John Arbash Meinel, Jamie Wilkinson, #40693)
 
238
 
 
239
    * Branch.base has changed to a URL, but ~/.bazaar/locations.conf should
 
240
      use local paths, since it is user visible (John Arbash Meinel, #53653)
 
241
 
 
242
    * ``bzr status foo`` when foo was unversioned used to cause a full delta
 
243
      to be generated (John Arbash Meinel, #53638)
 
244
 
 
245
    * When reading revision properties, an empty value should be considered
 
246
      the empty string, not None (John Arbash Meinel, #47782)
 
247
 
 
248
    * ``bzr diff --diff-options`` can now handle binary files being changed.
 
249
      Also, the output is consistent when --diff-options is not supplied.
 
250
      (John Arbash Meinel, #54651, #52930)
 
251
 
 
252
    * Use the right suffixes for loading plugins (John Arbash Meinel, #51810)
 
253
 
 
254
    * Fix Branch.get_parent() to handle the case when the parent is not 
 
255
      accessible (John Arbash Meinel, #52976)
 
256
 
160
257
  INTERNALS:
161
258
 
162
259
    * Combine the ignore rules into a single regex rather than looping over
163
260
      them to reduce the threshold where  N^2 behaviour occurs in operations
164
261
      like status. (Jan Hudec, Robert Collins).
165
262
 
 
263
    * Appending to bzrlib.DEFAULT_IGNORE is now deprecated. Instead, use
 
264
      one of the add functions in bzrlib.ignores. (John Arbash Meinel)
 
265
 
166
266
    * 'bzr push' should only push the ancestry of the current revision, not
167
267
      all of the history in the repository. This is especially important for
168
268
      shared repositories. (John Arbash Meinel)
194
294
      importer to log time to import modules and regex compilation time to 
195
295
      sys.stderr (John Arbash Meinel)
196
296
 
 
297
    * 'EmptyTree' is now deprecated, please use repository.revision_tree(None)
 
298
      instead. (Robert Collins)
 
299
 
 
300
    * "RevisionTree" is now in bzrlib/revisiontree.py. (Robert Collins)
 
301
 
197
302
bzr 0.8.2  2006-05-17
198
303
  
199
304
  BUG FIXES:
1058
1163
    * Symlink support: working with symlinks when not in the root of a 
1059
1164
      bzr tree was broken, patch from Scott James Remnant.
1060
1165
 
1061
 
 
1062
1166
  IMPROVEMENTS:
1063
1167
 
1064
1168
    * 'branch' now accepts a --basis parameter which will take advantage