~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-10-10 23:18:27 UTC
  • mfrom: (1437)
  • mto: This revision was merged to the branch mainline in revision 1438.
  • Revision ID: robertc@robertcollins.net-20051010231827-f9e2dda2e92bf565
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
bzr 0.1 2005-10-06
2
2
 
 
3
  NOTES:
 
4
 
 
5
    * 'bzr branch' over http initially gives a very high estimate
 
6
      of completion time but it should fall as the first few 
 
7
      revisions are pulled in.  branch is still slow on 
 
8
      high-latency connections.
3
9
 
4
10
  BUG FIXES:
5
11
  
9
15
    * Locking is now done with fcntl.lockf which works with NFS
10
16
      file systems. Contributed by Harald Meland.
11
17
 
 
18
    * When a merge encounters a file that has been deleted on
 
19
      one side and modified on the other, the old contents are
 
20
      written out to foo.BASE and foo.SIDE, where SIDE is this
 
21
      or OTHER. Contributed by Aaron Bentley.
 
22
 
 
23
    * Export was choosing incorrect file paths for the content of
 
24
      the tarball, this has been fixed by Aaron Bentley.
 
25
 
12
26
    * Commit will no longer commit without a log message, an 
13
27
      error is returned instead. Contributed by Jelmer Vernooij.
14
28
 
16
30
      parent directories that are added but not listed will be 
17
31
      automatically included. Suggested by Michael Ellerman.
18
32
 
 
33
    * bzr commit and upgrade did not correctly record new revisions
 
34
      for files with only a change to their executable status.
 
35
      bzr will correct this when it encounters it. Fixed by
 
36
      Robert Collins
 
37
 
 
38
    * HTTP tests now force off the use of http_proxy for the duration.
 
39
      Contributed by Gustavo Niemeyer.
 
40
 
 
41
    * Fix problems in merging weave-based branches that have 
 
42
      different partial views of history.
 
43
 
 
44
    * Symlink support: working with symlinks when not in the root of a 
 
45
      bzr tree was broken, patch from Scott James Remnant.
 
46
 
19
47
 
20
48
  IMPROVEMENTS:
21
49
 
41
69
      merge conflicts respectively. A conflicted tree cannot be committed
42
70
      in. Contributed by Aaron Bentley.
43
71
 
 
72
    * 'rm' is now an alias for 'remove'.
 
73
 
 
74
    * Stores now split out their content in a single byte prefixed hash,
 
75
      dropping the density of files per directory by 256. Contributed by
 
76
      Gustavo Niemeyer.
 
77
 
 
78
    * 'bzr diff -r branch:URL' will now perform a diff between two branches.
 
79
      Contributed by Robert Collins.
 
80
 
 
81
    * 'bzr log' with the default formatter will show merged revisions,
 
82
      indented to the right. Initial implementation contributed by Gustavo
 
83
      Niemeyer, made incremental by Robert Collins.
 
84
 
44
85
 
45
86
  INTERNALS:
46
87
 
50
91
    * InventoryEntry is now an abstract base class, use one of the
51
92
      concrete InventoryDirectory etc classes instead.
52
93
 
 
94
    * Branch raises an UnsupportedFormatError when it detects a 
 
95
      bzr branch it cannot understand. This allows for precise
 
96
      handling of such circumstances.
 
97
 
53
98
 
54
99
  TESTING:
55
100