~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2007-04-01 06:19:16 UTC
  • mfrom: (2323.5.20 0.15-integration)
  • mto: This revision was merged to the branch mainline in revision 2390.
  • Revision ID: mbp@sourcefrog.net-20070401061916-plpgsxdf8g7gll9o
Merge 0.15 final release back to trunk, including: recommend upgrades of old workingtrees, handle multiple http redirections, some dirstate fixes, 

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
      (Robert Collins, Andrew Bennetts)
60
60
 
61
61
 
62
 
bzr 0.15 (not finalised)
 
62
bzr 0.15 2007-04-01
 
63
 
 
64
  BUGFIXES:
 
65
 
 
66
    * Handle incompatible repositories as a user issue when fetching.
 
67
      (Aaron Bentley)
 
68
 
 
69
    * Don't give a recommendation to upgrade when branching or 
 
70
      checking out a branch that contains an old-format working tree.
 
71
      (Martin Pool)
 
72
 
 
73
bzr 0.15rc3  2007-03-26
 
74
 
 
75
  CHANGES:
 
76
 
 
77
    * A warning is now displayed when opening working trees in older 
 
78
      formats, to encourage people to upgrade to WorkingTreeFormat4.
 
79
      (Martin Pool)
 
80
 
 
81
  IMPROVEMENTS:
 
82
 
 
83
    * HTTP redirections are now taken into account when a branch (or a
 
84
      bundle) is accessed for the first time. A message is issued at each
 
85
      redirection to inform the user. In the past, http redirections were
 
86
      silently followed for each request which significantly degraded the
 
87
      performances. The http redirections are not followed anymore by
 
88
      default, instead a RedirectRequested exception is raised. For bzrlib
 
89
      users needing to follow http redirections anyway,
 
90
      bzrlib.transport.do_catching_redirections provide an easy transition
 
91
      path.  (vila)
63
92
 
64
93
  INTERNALS:
65
94
 
66
95
    * Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
67
96
      lock to an OS write lock. Linux can do this without unlocking, Win32
68
97
      needs to unlock in between. (John Arbash Meinel)
 
98
 
 
99
    * New parameter ``recommend_upgrade`` to BzrDir.open_workingtree 
 
100
      to silence (when false) warnings about opening old formats.
 
101
      (Martin Pool)
69
102
 
70
103
    * Fix minor performance regression with bzr-0.15 on pre-dirstate
71
104
      trees. (We were reading the working inventory too many times).
94
127
 
95
128
    * ``bzr checkout source`` should create a local branch in the same
96
129
      format as source. (John Arbash Meinel, #93854)
 
130
 
 
131
    * ``bzr commit`` with a kind change was failing to update the
 
132
      last-changed-revision for directories.  The
 
133
      InventoryDirectory._unchanged only looked at the parent_id and name,
 
134
      ignoring the fact that the kind could have changed, too.
 
135
      (John Arbash Meinel, #90111)
 
136
 
 
137
    * ``bzr mv dir/subdir other`` was incorrectly updating files inside
 
138
      the directory. So that there was a chance it would break commit,
 
139
      etc. (John Arbash Meinel, #94037)
97
140
 
 
141
    * Correctly handles mutiple permanent http redirections.
 
142
     (vila, #88780)
 
143
 
98
144
 
99
145
bzr 0.15rc2  2007-03-14
100
146