~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.5.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-20 05:22:49 UTC
  • mfrom: (6046.2.11 54624-warn-on-large-files)
  • Revision ID: pqm@pqm.ubuntu.com-20110820052249-41vfmtn5g0i7ngqb
(jr) bzr add now skips large files in recursive mode. The default "large"
 size is 20MB, and is configurable via the add.maximum_file_size
 option. A value of 0 disables skipping. Named items passed to add are
 never skipped. (Shannon Weyrick, #54624) (Shannon Weyrick)

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
* Relative local paths can now be specified in URL syntax by using the
82
82
  "file:" prefix.  (Jelmer Vernooij)
83
83
 
 
84
* bzr add now skips large files in recursive mode. The default "large"
 
85
  size is 20MB, and is configurable via the add.maximum_file_size
 
86
  option. A value of 0 disables skipping. Named items passed to add are
 
87
  never skipped. (Shannon Weyrick, #54624)
 
88
 
84
89
Improvements
85
90
************
86
91
 
175
180
  no longer support it.
176
181
  (Martin Pool)
177
182
 
 
183
* New method ``Config.get_user_option_as_int_from_SI`` added for expanding a
 
184
  value in SI format (i.e. "20MB", "1GB") into its integer equivalent. 
 
185
  (Shannon Weyrick)
 
186
 
178
187
* ``Transport`` now has a ``_parsed_url`` attribute instead of
179
188
  separate ``_user``, ``_password``, ``_port``, ``_scheme``, ``_host``
180
189
  and ``_path`` attributes. Proxies are provided for the moment but