~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2008-08-28 20:13:31 UTC
  • mfrom: (3658 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3688.
  • Revision ID: john@arbash-meinel.com-20080828201331-dqffxf54l2heokll
Merge bzr.dev 3658

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
      them automatically, much as ``bzr add`` scans for new files that
17
17
      are not ignored and adds them automatically. (Robert Collins)
18
18
 
 
19
  FEATURES
 
20
 
 
21
    * Support for GSSAPI authentication when using FTP as documented in 
 
22
      RFC2228. (Jelmer Vernooij, #49623)
 
23
 
19
24
  IMPROVEMENTS:
20
25
 
21
26
    * ``bzr init`` and ``bzr init-repo`` will now print out the same as
32
37
    * ``bzr rm`` is now aliased to ``bzr del`` for the convenience of svn
33
38
      users. (Robert Collins, #205416)
34
39
 
 
40
    * Catch the infamous "select/poll returned error" which occurs when
 
41
      pycurl try to send a body request to an HTTP/1.0 server which has
 
42
      already refused to handle the request. (Vincent Ladeuil, #225020)
 
43
 
35
44
    * ``FTPTransport.stat()`` would return ``0000`` as the permission bits
36
45
      for the containing ``.bzr/`` directory (it does not implement
37
46
      permissions). This would cause us to set all subdirectories to
38
47
      ``0700`` and files to ``0600`` rather than leaving them unmodified.
39
48
      Now we ignore ``0000`` as the permissions and assume they are
40
49
      invalid. (John Arbash Meinel, #259855)
 
50
 
 
51
    * Merging from a previously joined branch will no longer cause 
 
52
      a traceback. (Jelmer Vernooij, #203376)
41
53
    
42
54
    * Running ``bzr st PATH_TO_TREE`` will no longer suppress merge
43
55
      status. Status is also about 7% faster on mozilla sized trees
58
70
      the target tree. Previously it returned True unconditionally.
59
71
      (Robert Collins)
60
72
 
 
73
    * The deprecated ``Branch.abspath`` and unimplemented 
 
74
      ``Branch.rename_one`` and ``Branch.move`` were removed. (Jelmer Vernooij)
 
75
 
61
76
  TESTING:
62
77
 
63
78
    * ``addCleanup`` now takes ``*arguments`` and ``**keyword_arguments``
67
82
 
68
83
  INTERNALS:
69
84
 
 
85
    * A new plugin interface, ``bzrlib.log.log_adapters``, has been added.
 
86
      This allows dynamic log output filtering by plugins.
 
87
      (Robert Collins)
 
88
 
70
89
    * ``bzrlib.btree_index`` is now available, providing a b-tree index
71
90
      layer. The design is memory conservative (limited memory cache),
72
91
      faster to seek (approx 100 nodes per page, gives 100-way fan out),
77
96
      is unknown in both source and target.
78
97
      (Robert Collins, Aaron Bentley)
79
98
 
 
99
    * Mail clients for `bzr send` are now listed in a registry.  This
 
100
      allows plugins to add new clients by registering them with
 
101
      ``bzrlib.mail_client.mail_client_registry``.  All of the built-in
 
102
      clients now use this mechanism.  (Neil Martinsen-Burrell)
 
103
 
 
104
 
 
105
bzr 1.6 2008-08-25
 
106
------------------
 
107
 
 
108
Finally, the long awaited bzr 1.6 has been released. This release includes
 
109
new features like Stacked Branches, improved weave merge, and an updated
 
110
server protocol (now on v3) which will allow for better cross version
 
111
compatibility. With this release we have deprecated Knit format
 
112
repositories, and recommend that users upgrade them, we will continue to
 
113
support reading and writing them for the forseeable future, but we will
 
114
not be tuning them for performance as pack repositories have proven to be
 
115
better at scaling. This will also be the first release to bundle
 
116
TortoiseBzr in the standalone Windows installer.
 
117
 
80
118
 
81
119
bzr 1.6rc5 2008-08-19
82
120
---------------------