~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

Merge with get_file_sha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
  CHANGES:
11
11
 
 
12
  FEATURES
 
13
 
 
14
  IMPROVEMENTS:
 
15
 
 
16
  BUG FIXES:
 
17
 
 
18
    * Branching from a shared repository on a smart server into a new
 
19
      repository now preserves the repository format.
 
20
      (Andrew Bennetts, #269214)
 
21
 
 
22
    * ``bzr missing`` now accepts an ``--include-merges`` option.
 
23
      (Vincent Ladeuil, #233817)
 
24
 
 
25
    * Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
26
      (Andrew Bennetts)
 
27
 
 
28
    * Fix TooManyConcurrentRequests errors caused by a connection failure
 
29
      when doing ``bzr pull`` or ``bzr merge`` from a ``bzr+ssh`` URL.
 
30
      (Andrew Bennetts, #246233)
 
31
 
 
32
    * Make the first line of the manpage preamble a comment again.
 
33
      (David Futcher, #242106)
 
34
 
 
35
  DOCUMENTATION:
 
36
 
 
37
    * Explain revision/range identifiers. (Daniel Clemente)
 
38
 
 
39
  API CHANGES:
 
40
 
 
41
  TESTING:
 
42
 
 
43
    * ``bzrlib.tests.repository_implementations`` has been renamed to
 
44
      ``bzrlib.tests.per_repository`` so that we have a common structure
 
45
      (and it is shorter). (John Arbash Meinel, #239343)
 
46
 
 
47
    * ``LocalTransport.abspath()`` now returns a drive letter if the
 
48
      transport has one, fixing numerous tests on Windows.
 
49
      (Mark Hammond)
 
50
 
 
51
    * The full test suite is passing again on OSX.
 
52
      (Guillermo Gonzalez, Vincent Ladeuil)
 
53
 
 
54
  INTERNALS:
 
55
 
 
56
 
 
57
bzr 1.7rc2 IN DEVELOPMENT
 
58
-------------------------
 
59
 
 
60
  BUG FIXES:
 
61
 
 
62
    * Branching from a shared repository on a smart server into a new
 
63
      repository now preserves the repository format.
 
64
      (Andrew Bennetts, #269214)
 
65
 
 
66
    * Fix '_in_buffer' AttributeError when using the -Dhpss debug flag.
 
67
      (Andrew Bennetts)
 
68
 
 
69
    * ``bzr init`` no longer re-opens the BzrDir multiple times.
 
70
      (Vincent Ladeuil)
 
71
 
 
72
 
 
73
bzr 1.7rc1 2008-09-09
 
74
---------------------
 
75
 
 
76
This release candidate for bzr 1.7 has several bug fixes and a few
 
77
performance and feature improvements.  ``bzr rm`` will now scan for
 
78
missing files and remove them, like how ``bzr add`` scans for unknown
 
79
files and adds them. A bit more polish has been applied to the stacking
 
80
code. The b-tree indexing code has been brought in, with an eye on using
 
81
it in a future repository format.
 
82
 
 
83
 
 
84
  CHANGES:
 
85
 
12
86
    * ``bzr export`` can now export a subdirectory of a project.
13
87
      (Robert Collins)
14
88
 
21
95
    * Support for GSSAPI authentication when using FTP as documented in 
22
96
      RFC2228. (Jelmer Vernooij, #49623)
23
97
 
 
98
    * Add support for IPv6 in the smart server. (Jelmer Vernooij, #165014)
 
99
 
24
100
  IMPROVEMENTS:
25
101
 
26
102
    * A url like ``log+file:///tmp`` will log all access to that Transport 
39
115
      to recover if you realize you uncommitted the wrong thing.
40
116
      (John Arbash Meinel)
41
117
 
 
118
    * Fix problems in accessing stacked repositories over ``bzr://``.
 
119
      (Martin Pool, #261315)
 
120
 
42
121
    * ``SFTPTransport.readv()`` was accidentally using ``list += string``,
43
122
      which 'works', but adds each character separately to the list,
44
123
      rather than using ``list.append(string)``. Fixing this makes the