~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2011-09-08 11:01:15 UTC
  • mfrom: (6123.1.16 gpg-typo)
  • Revision ID: pqm@cupuasso-20110908110115-gbb9benwkdksvzk5
(jelmer) Fix a typo (invalid format identifier) in an error message in
 bzrlib.gpg. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
* ``config.Option`` can now declare ``default_from_env``, a list of
76
76
  environment variables to get a default value from. (Vincent Ladeuil)
77
77
 
 
78
* ``config.NameMatcher`` can be used to implement config stores and stacks
 
79
  that need to provide specific option values for arbitrary unique IDs (svn
 
80
  repository UUIDs, etc).  (Vincent Ladeuil, #843638)
 
81
 
78
82
* New builtin ``bzr branches`` command, which lists all colocated branches
79
83
  in a directory. (Jelmer Vernooij, #826820)
80
84
 
92
96
* bzr now ships with translations for command help.  (Jonathan
93
97
  Riddell, INADA Naoki, #83941)
94
98
 
 
99
* bzr now ships with translations for command errors. (Jonathan
 
100
  Riddell, INADA Naoki)
 
101
 
95
102
Improvements
96
103
************
97
104
 
102
109
  Entering an empty commit message in the message editor still triggers
103
110
  an error. (Jelmer Vernooij)
104
111
 
 
112
* ``bzr pull`` will now mention how many tags it has updated.
 
113
  (Jelmer Vernooij, #164450)
 
114
 
105
115
* ``bzr tag`` no longer errors if a tag already exists but refers to the
106
 
  same revision. (Jelmer Vernooij)
 
116
  same revision, and will mention when a tag has been updated
 
117
  rather than created. (Jelmer Vernooij, #381203)
107
118
 
108
119
* ``bzr uncommit`` will now remove tags that refer to removed revisions.
109
120
  The ``--keep-tags`` option can be used to prevent this behaviour.
116
127
 
117
128
* Do not run i18n initialisation twice. (Jonathan Riddell)
118
129
 
 
130
* Support a ``bugtracker`` option which is used by ``bzr commit --fixes``
 
131
  if no bug tracker was specified on the command line.
 
132
  (Jelmer Vernooij, #334860)
 
133
 
119
134
Bug Fixes
120
135
*********
121
136
 
141
156
* Decode ``BZR_HOME`` with fs encoding on posix platforms to avoid unicode
142
157
  errors.  (Vincent Ladeuil, #822571)
143
158
 
 
159
* Fix fallout from URL handling changes in 2.5 that caused an IndexError to be
 
160
  raised whenever a transport at the drive root was opened on windows.
 
161
  (Martin [gz], #841322)
 
162
 
144
163
* Rather than an error being raised, a warning is now printed when the
145
164
  current user does not have permission to read a configuration file.
146
165
  (Jelmer Vernooij, #837324)
214
233
  value in SI format (i.e. "20MB", "1GB") into its integer equivalent. 
215
234
  (Shannon Weyrick)
216
235
 
 
236
* ``Tags`` containers can now declare whether they support versioned
 
237
  tags and whether tags can refer to ghost tags.
 
238
  (Jelmer Vernooij)
 
239
 
 
240
* ``Tags.merge_to`` now returns a dictionary with the updated tags
 
241
  and a set of conflicts, rather than just conflicts. (Jelmer Vernooij)
 
242
 
217
243
* ``Transport`` now has a ``_parsed_url`` attribute instead of
218
244
  separate ``_user``, ``_password``, ``_port``, ``_scheme``, ``_host``
219
245
  and ``_path`` attributes. Proxies are provided for the moment but