~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-01-13 05:14:24 UTC
  • mfrom: (3936.1.3 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090113051424-nrk3zkfe09h46i9y
(mbp) merge 1.11 and advance to 1.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
.. contents::
6
6
 
7
7
 
8
 
IN DEVELOPMENT
9
 
--------------
 
8
NOT RELEASED YET
 
9
----------------
 
10
 
 
11
  COMPATABILITY BREAKS:
 
12
 
 
13
  NEW FEATURES:
 
14
 
 
15
  IMPROVEMENTS:
 
16
 
 
17
  BUG FIXES:
 
18
 
 
19
  DOCUMENTATION:
 
20
 
 
21
  API CHANGES:
 
22
 
 
23
  TESTING:
 
24
 
 
25
  INTERNALS:
 
26
 
 
27
 
 
28
bzr 1.11rc1 "Eyes up!" 2009-01-09
 
29
---------------------------------
 
30
 
 
31
This first monthly release of Bazaar for 2009 improves Bazaar's operation
 
32
in Windows, Mac OS X, and other situations where file names are matched
 
33
without regard to capitalization: Bazaar tries to match the case of an
 
34
existing file.  This release of Bazaar also improves the efficiency of
 
35
Tortoise Windows Shell integration and lets it work on 64-bit platforms.
 
36
 
 
37
The UI through which Bazaar supports historic formats has been improved,
 
38
so 'bzr help formats' now gives a simpler and shorter list, with clear
 
39
advice.
 
40
 
 
41
This release also fixes a number of bugs, particularly a glitch that can
 
42
occur when there are concurrent writes to a pack repository.
10
43
 
11
44
  CHANGES:
12
 
  
 
45
 
13
46
    * Formats using Knit-based repository formats are now explicitly
14
47
      marked as deprecated. (Ian Clatworthy)
15
48
 
16
 
    * ``LRUCache(after_cleanup_size)`` was renamed to
17
 
      ``after_cleanup_count`` and the old name deprecated. The new name is
18
 
      used for clarity, and to avoid confusion with
19
 
      ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)
20
 
 
21
49
  NEW FEATURES:
22
50
 
23
51
    * Add support for `bzr tags -r 1..2`, that is we now support showing
40
68
    * ``bzr revision-info`` now supports a -d option to specify an
41
69
      alternative branch. (Michael Hudson)
42
70
 
 
71
    * Add connection to a C++ implementation of the Windows Shell Extension
 
72
      which is able to fully replace the current Python implemented one.
 
73
      Advantages include 64bit support and reduction in overhead for
 
74
      processes which drag in shell extensions.
 
75
      (Mark Hammond)
 
76
 
43
77
    * Support the Claws mail client directly, rather than via
44
78
      xdg-email. This prevents the display of an unnecessary modal
45
79
      dialog in Claws, informing the user that a file has been
46
80
      attached to the message, and works around bug #291847 in
47
81
      xdg-utils which corrupts the destination address.
48
82
 
 
83
    * When working on a case-insensitive case-preserving file-system, as
 
84
      commonly found with Windows, bzr will often ignore the case of the
 
85
      arguments specified by the user in preference to the case of an existing
 
86
      item on the file-system or in the inventory to help prevent
 
87
      counter-intuitive behaviour on Windows. (Mark Hammond)
 
88
 
49
89
  BUG FIXES:
50
90
  
 
91
    * Fix a problem with CIFS client/server lag on Windows colliding with
 
92
      an invariant-per-process algorithm for generating AtomicFile names
 
93
      (Adrian Wilkins, #304023)
 
94
 
51
95
    * Allow BzrDir implementation to implement backing up of 
52
96
      control directory. (#139691)
53
97
 
137
181
 
138
182
  API CHANGES:
139
183
 
 
184
    * ``LRUCache(after_cleanup_size)`` was renamed to
 
185
      ``after_cleanup_count`` and the old name deprecated. The new name is
 
186
      used for clarity, and to avoid confusion with
 
187
      ``LRUSizeCache(after_cleanup_size)``. (John Arbash Meinel)
 
188
 
140
189
    * New ``ForeignRepository`` base class, to help with foreign branch 
141
190
      support (e.g. svn).  (Jelmer Vernooij)
142
191