/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Aaron Bentley
  • Date: 2007-11-26 13:55:51 UTC
  • mfrom: (3025 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3026.
  • Revision ID: abentley@panoramicfeedback.com-20071126135551-rbft9vn1pypb44rd
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
     still available if user selects it explicitly with BZR_SSH environment
16
16
     variable. (Alexander Belchenko, workaround for bug #107593)
17
17
 
 
18
   * The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree" 
 
19
     to enable the subtree functions (for example, for bzr-svn).  
 
20
     See http://doc.bazaar-vcs.org/latest/developer/packrepo.html
 
21
     (Martin Pool)
 
22
 
18
23
  FEATURES:
19
24
 
20
25
   * New ``authentication.conf`` file holding the password or other credentials
61
66
   * ``commit`` is now able to invoke an external editor in a non-ascii
62
67
     directory. (Daniel Watkins, #84043)
63
68
 
 
69
   * Catch connection errors for ftp.
 
70
     (Vincent Ladeuil, #164567)
 
71
 
 
72
   * Conflicts are now resolved recursively by ``revert``.
 
73
     (Aaron Bentley, #102739)
 
74
 
64
75
   * Detect invalid transport reuse attempts by catching invalid URLs.
65
76
     (Vincent Ladeuil, #161819)
66
77
 
71
82
     retrying an http request or some programming errors may be masked.
72
83
     (Vincent Ladeuil, #160012)
73
84
 
 
85
   * Fix exception when revisionspec contains merge revisons but log
 
86
     formatter doesn't support merge revisions. (Kent Gibson, #148908)
 
87
 
 
88
   * Fix exception when ScopeReplacer is assigned to before any members have
 
89
     been retrieved.  (Aaron Bentley)
 
90
 
74
91
   * Fix multiple connections during checkout --lightweight.
75
92
     (Vincent Ladeuil, #159150)
76
93
 
80
97
   * It is clearer when a plugin cannot be loaded because of its name, and a
81
98
     suggestion for an acceptable name is given. (Daniel Watkins, #103023)
82
99
 
 
100
   * Leave port as None in transport objects if user doesn't
 
101
     specify a port in urls.
 
102
     (vincent Ladeuil, #150860)
 
103
 
83
104
   * Make sure Repository.fetch(self) is properly a no-op for all
84
105
     Repository implementations. (John Arbash Meinel, #158333)
85
106
 
 
107
   * ``merge --uncommitted`` can now operate on a single file.
 
108
     (Aaron Bentley, Lukáš Lalinský, #136890)
 
109
 
86
110
   * Obsolete packs are now cleaned up by pack and autopack operations.
87
111
     (Robert Collins, #153789)
88
112
 
97
121
   * Rename on Windows is able to change filename case.
98
122
     (Alexander Belchenko, #77740)
99
123
 
 
124
   * Return error instead of a traceback for ``bzr log -r0``.
 
125
     (Kent Gibson, #133751)
 
126
 
 
127
   * Return error instead of a traceback when bzr is unable to create
 
128
     symlink on some platforms (e.g. on Windows).
 
129
     (Alexander Belchenko, workaround for #81689)
 
130
 
100
131
   * Stderr output via logging mechanism now goes through encoded wrapper
101
132
     and no more uses utf-8, but terminal encoding instead. So all unicode
102
133
     strings now should be readable in non-utf-8 terminal.
109
140
     using the terminal encoding and unrepresentable characters will be
110
141
     replaced by '?'. (Lukáš Lalinský, #151844)
111
142
 
 
143
   * Working trees are no longer created when pushing into a local no-trees
 
144
     repo. (Daniel Watkins, #50582)
 
145
 
 
146
   * Upgrade util/configobj to version 4.4.0.
 
147
     (Vincent Ladeuil, #151208).
 
148
 
112
149
   * Wrap medusa ftp test server as an FTPServer feature.
113
150
     (Vincent Ladeuil, #157752)
114
151
 
115
 
   * Fix exception when ScopeReplacer is assigned to before any members have
116
 
     been retrieved.  (Aaron Bentley)
117
 
 
118
 
   * Fix exception when revisionspec contains merge revisons but log
119
 
     formatter doesn't support merge revisions. (Kent Gibson, #148908)
120
 
 
121
 
   * Return error instead of a traceback for ``bzr log -r0``.
122
 
     (Kent Gibson, #133751)
123
 
 
124
 
   * Working trees are no longer created when pushing into a local no-trees
125
 
     repo. (Daniel Watkins, #50582)
126
 
 
127
152
  API BREAKS:
128
153
 
129
154
   * ``osutils.backup_file`` is deprecated. Actually it's not used in bzrlib
178
203
     the ``dirstate-tags`` format but uses a smarter storage design that greatly
179
204
     speeds up many operations, both local and remote. This new format can be
180
205
     used as an option to the ``init``, ``init-repository`` and ``upgrade``
181
 
     commands. See http://doc.bazaar-vcs.org/latest/developers/knitpack.html
 
206
     commands. See http://doc.bazaar-vcs.org/0.92/developers/knitpack.html
182
207
     for further details. (Robert Collins)
183
208
 
184
209
   * For users of bzr-svn (and those testing the prototype subtree support) that