~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: John Arbash Meinel
  • Date: 2006-10-16 01:50:48 UTC
  • mfrom: (2078 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: john@arbash-meinel.com-20061016015048-0f22df07e38093da
[merge] bzr.dev 2078

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
IN DEVELOPMENT
2
2
 
3
3
  IMPROVEMENTS:
 
4
 
4
5
    * ``bzr help commands`` output is now shorter (Aaron Bentley)
5
6
 
 
7
    * New connection: ``bzr+http://`` which supports tunnelling the smart
 
8
      protocol over an HTTP connection. If writing is enabled on the bzr
 
9
      server, then you can write over the http connection.
 
10
      (Andrew Bennetts)
 
11
 
6
12
    * ``bzr`` now uses lazy importing to reduce the startup time. This has
7
13
      a moderate effect on lots of actions, especially ones that have
8
14
      little to do. For example ``bzr rocks`` time is down to 116ms from
9
15
      283ms. (John Arbash Meinel)
10
16
 
 
17
    * New Registry class to provide name-to-object registry-like support,
 
18
      for example for schemes where plugins can register new classes to
 
19
      do certain tasks (e.g. log formatters). Also provides lazy registration
 
20
      to allow modules to be loaded on request. (John Arbash Meinel, Adeodato
 
21
      Simó)
 
22
 
11
23
  INTERNALS:
12
24
 
13
25
    * ``TestCase.run_bzr``, ``run_bzr_captured``, and ``run_bzr_subprocess``
18
30
      around a regex, which defers compilation until first use. 
19
31
      (John Arbash Meinel)
20
32
 
 
33
    * ``TestCase.run_bzr_subprocess`` defaults to supplying the
 
34
      ``--no-plugins`` parameter to ensure test reproducability, and avoid
 
35
      problems with system-wide installed plugins. (John Arbash Meinel)
 
36
 
 
37
    * Newly-initialized trees have unique root ids.  (Aaron Bentley)
 
38
 
21
39
  BUG FIXES:
22
40
 
 
41
    * Don't require ``Content-Type`` in range responses. Assume they are a
 
42
      single range if ``Content-Type`` does not exist.
 
43
      (John Arbash Meinel, #62473)
 
44
 
23
45
    * bzr branch/pull no longer complain about progress bar cleanup when
24
46
      interrupted during fetch.  (Aaron Bentley, #54000)
25
47
 
47
69
      state, but most tests should not need that and should be converted to
48
70
      TestCaseWithMemoryTransport. (Robert Collins)
49
71
 
 
72
    * ``TestCase.make_branch_and_memory_tree`` now takes a format
 
73
      option to set the BzrDir, Repository and Branch formats of the
 
74
      created objects. (Robert Collins, John Arbash Meinel)
 
75
 
50
76
bzr 0.11  2006-10-02
51
77
 
52
78
    * Smart server transport test failures on windows fixed. (Lukáš Lalinský).