/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: v.ladeuil+lp at free
  • Date: 2006-11-08 07:44:30 UTC
  • mfrom: (2123 +trunk)
  • mto: (2145.1.1 keepalive)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: v.ladeuil+lp@free.fr-20061108074430-a9c08d4a475bd97f
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    * urllib implements keep-alive connections and share them
6
6
      (Vincent Ladeuil, #53654)
7
7
 
 
8
    * ``bzr export`` allows an optional branch parameter, to export a bzr
 
9
      tree from some other url. For example:
 
10
      ``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
 
11
      (Daniel Silverstone)
 
12
 
8
13
  INTERNALS:
9
14
 
 
15
    * New -D option given before the command line turns on debugging output
 
16
      for particular areas.  -Derror shows tracebacks on all errors.
 
17
      (Martin Pool)
 
18
 
 
19
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
20
      and remove benchmarks that take longer than 10min to run.
 
21
      (John Arbash Meinel)
 
22
 
 
23
    * Use ``time.time()`` instead of ``time.clock()`` to decide on
 
24
      progress throttling. Because ``time.clock()`` is actually CPU time,
 
25
      so over a high-latency connection, too many updates get throttled.
 
26
      (John Arbash Meinel)
 
27
 
 
28
    * ``MemoryTransport.list_dir()`` would strip the first character for
 
29
      files or directories in root directory. (John Arbash Meinel)
 
30
  
10
31
  BUG FIXES:
11
32
 
12
33
    * Give nicer error message when an http server returns a 403
21
42
      line (for the urllib implementation). Don't request already
22
43
      known passwords (Vincent Ladeuil, #42383, #44647, #48527)
23
44
 
 
45
    * _KnitIndex.add_versions() dictionary compresses revision ids as they
 
46
      are added. This fixes bug where fetching remote revisions records
 
47
      them as full references rather than integers. (John Arbash Meinel,
 
48
      #64789)
 
49
 
 
50
    * ``bzr ignore`` strips trailing slashes in patterns.
 
51
      Also ``bzr ignore`` rejects absolute paths. (Kent Gibson, #4559)
 
52
 
 
53
    * ``bzr ignore`` takes multiple arguments. (Cheuksan Edward Wang, #29488)
 
54
 
 
55
    * mv correctly handles paths that traverse symlinks. 
 
56
      (Aaron Bentley, #66964)
 
57
 
 
58
    * Give nicer looking error messages when failing to connect over ssh.
 
59
      (John Arbash Meinel, #49172)
 
60
 
 
61
    * Pushing to a remote branch does not currently update the remote working
 
62
      tree. After a remote push, ``bzr status`` and ``bzr diff`` on the remote
 
63
      machine now show that the working tree is out of date.
 
64
      (Cheuksan Edward Wang #48136)
 
65
 
 
66
    * Use patiencediff instead of difflib for determining deltas to insert
 
67
      into knits. This avoids the O(N^3) behavior of difflib. Patience
 
68
      diff should be O(N^2). (Cheuksan Edward Wang, #65714)
 
69
 
 
70
    * Running ``bzr log`` on nonexistent file gives an error instead of the
 
71
      entire log history. (Cheuksan Edward Wang #50793)
 
72
 
 
73
    * ``bzr cat`` can look up contents of removed or renamed files. If the
 
74
      pathname is ambiguous, i.e. the files in the old and new trees have
 
75
      different id's, the default is the file in the new tree. The user can
 
76
      use "--name-from-revision" to select the file in the old tree.
 
77
      (Cheuksan Edward Wang, #30190)
 
78
 
24
79
  TESTING:
25
80
 
26
81
    * TestingHTTPRequestHandler really handles the Range header
27
82
      (previously it was ignoring it and returning the whole file,).
28
83
 
29
84
 
 
85
bzr 0.12  2006-10-30
 
86
 
 
87
  INTERNALS:
 
88
 
 
89
    * Clean up ``bzr selftest --benchmark bundle`` to correct an import,
 
90
      and remove benchmarks that take longer than 10min to run.
 
91
      (John Arbash Meinel)
 
92
  
30
93
bzr 0.12rc1  2006-10-23
31
94
 
32
95
  IMPROVEMENTS:
131
194
    * Leave HttpTransportBase daughter classes decides how they
132
195
      implement cloning. (Vincent Ladeuil, #61606)
133
196
 
134
 
   * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
197
    * diff3 does not indicate conflicts on clean merge. (Aaron Bentley)
 
198
 
 
199
    * If a commit fails, the commit message is stored in a file at the root of
 
200
      the tree for later commit. (Cheuksan Edward Wang, Stefan Metzmacher,
 
201
      #32054)
135
202
 
136
203
  TESTING:
137
204