~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-12-16 07:31:24 UTC
  • mfrom: (5570.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20101216073124-20n1cshje27j3a2i
(mbp) change acronyms to uppercase in docs (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
* Skip the tests that requires respecting the chmod bits when running as root.
33
33
  (Vincent Ladeuil, #646133)
34
34
 
35
 
* Using bzr with `lp:` urls behind an http proxy should work.
 
35
* Using bzr with `lp:` URLs behind an HTTP proxy should work.
36
36
  (Robert Collins, #558343)
37
37
 
38
38
Improvements
212
212
 
213
213
* Fix plugin packaging on Windows. (Ian Clatworthy, #524162)
214
214
 
215
 
* Fix stub sftp test server to call os.getcwdu().
 
215
* Fix stub SFTP test server to call os.getcwdu().
216
216
  (Vincent Ladeuil, #526221, #526353)
217
217
 
218
218
* Fixed CHM generation by moving the NEWS section template into
278
278
Bug Fixes
279
279
*********
280
280
 
281
 
* Don't require testtools to use sftp.
 
281
* Don't require testtools to use SFTP.
282
282
  (Vincent Ladeuil, #516183)
283
283
 
284
284
* Fix "AttributeError in Inter1and2Helper" during fetch.
702
702
  (Joke de Buhr, Vincent Ladeuil, #353370, #62539)
703
703
  (John Arbash Meinel, Vincent Ladeuil, #492561)
704
704
 
705
 
* Terminate ssh subprocesses when no references to them remain, fixing
 
705
* Terminate SSH subprocesses when no references to them remain, fixing
706
706
  subprocess and file descriptor leaks.  (Andrew Bennetts, #426662)
707
707
  
708
708
* The ``--hardlink`` option of ``bzr branch`` and ``bzr checkout`` now
784
784
  been changed to the equalivent ``Transport.get_bytes()``. The main
785
785
  difference is that the latter will explicitly call ``file.close()``,
786
786
  rather than expecting the garbage collector to handle it. This helps
787
 
  with some race conditions on Windows during the test suite and sftp
 
787
  with some race conditions on Windows during the test suite and SFTP
788
788
  tests. (John Arbash Meinel)
789
789
 
790
790
Testing
925
925
 
926
926
Key highlights in this release are: improved handling of
927
927
failures-during-cleanup for commit, fixing a long-standing bug with
928
 
``bzr+http`` and shared repositories, all ``lp:`` urls to be resolved
 
928
``bzr+http`` and shared repositories, all ``lp:`` URLs to be resolved
929
929
behind proxies, and a new StaticTuple datatype, allowing us to reduce
930
930
memory consumption (50%) and garbage collector overhead (40% faster) for
931
931
many operations.
948
948
  they do occur.  This fixes some causes of ``TooManyConcurrentRequests``
949
949
  and similar errors.  (Andrew Bennetts, #429747, #243391)
950
950
 
951
 
* Launchpad urls can now be resolved from behind proxies.
 
951
* Launchpad URLs can now be resolved from behind proxies.
952
952
  (Gordon Tyler, Vincent Ladeuil, #186920)
953
953
 
954
954
* Reduce the strictness for StaticTuple, instead add a debug flag
1037
1037
base with only bugfixes should focus on the 2.0.1 release. All bugfixes
1038
1038
present in 2.0.1 are present in 2.1.0b1.
1039
1039
 
1040
 
Highlights include support for ``bzr+ssh://host/~/homedir`` style urls,
 
1040
Highlights include support for ``bzr+ssh://host/~/homedir`` style URLs,
1041
1041
finer control over the plugin search path via extended BZR_PLUGIN_PATH
1042
1042
syntax, visible warnings when extension modules fail to load, and improved
1043
1043
error handling during unlocking.
1109
1109
* Don't restrict the command name used to run the test suite.
1110
1110
  (Vincent Ladeuil, #419950)
1111
1111
 
1112
 
* ftp transports were built differently when the kerberos python module was
 
1112
* FTP transports were built differently when the kerberos python module was
1113
1113
  present leading to obscure failures related to ASCII/BINARY modes.
1114
1114
  (Vincent Ladeuil, #443041)
1115
1115
 
1226
1226
* Tests that try to open a bzr dir on an arbitrary transport will now
1227
1227
  fail unless they have explicitly permitted the transport via
1228
1228
  ``self.permit_url``. The standard test factories such as ``self.get_url``
1229
 
  will permit the urls they provide automatically, so only exceptional
 
1229
  will permit the URLs they provide automatically, so only exceptional
1230
1230
  tests should need to do this. (Robert Collins)
1231
1231
 
1232
1232
* The break-in test no longer cares about clean shutdown of the child,