~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Martin Pool
  • Date: 2005-10-06 10:53:12 UTC
  • mto: (1185.13.3)
  • mto: This revision was merged to the branch mainline in revision 1418.
  • Revision ID: mbp@sourcefrog.net-20051006105312-06320dbb986e4bb3
- test that we cannot join weaves with different ancestry

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
development head
 
1
DEVELOPMENT HEAD
 
2
 
 
3
 
 
4
  BUG FIXES:
 
5
  
 
6
    * bzr-man.py has been updated to work again. Contributed by
 
7
      Rob Weir.
 
8
 
 
9
    * Locking is now done with fcntl.lockf which works with NFS
 
10
      file systems. Contributed by Harald Meland.
 
11
 
 
12
    * Commit will no longer commit without a log message, an 
 
13
      error is returned instead. Contributed by Jelmer Vernooij.
 
14
 
 
15
 
 
16
  IMPROVEMENTS:
 
17
 
 
18
    * 'branch' now accepts a --basis parameter which will take advantage
 
19
      of local history when making a new branch. This allows faster 
 
20
      branching of remote branches. Contributed by Aaron Bentley.
 
21
 
 
22
    * New tree format based on weave files, called version 5.
 
23
      Existing branches can be upgraded to this format using 
 
24
      'bzr upgrade'.
 
25
 
 
26
    * Symlinks are now versionable. Initial patch by 
 
27
      Erik Toubro Nielsen, updated to head by Robert Collins.
 
28
 
 
29
    * Executable bits are tracked on files. Patch from Gustavo
 
30
      Niemeyer.
 
31
 
 
32
    * 'bzr status' now shows unknown files inside a selected directory.
 
33
      Patch from Heikki Paajanen.
 
34
 
 
35
 
 
36
  INTERNALS:
 
37
 
 
38
    * Test case failures have the exception printed after the log 
 
39
      for your viewing pleasure.
 
40
 
 
41
    * InventoryEntry is now an abstract base class, use one of the
 
42
      concrete InventoryDirectory etc classes instead.
 
43
 
 
44
 
 
45
  TESTING:
 
46
 
 
47
    * Removed testsweet module so that tests can be run after 
 
48
      bzr installed by 'bzr selftest'.
 
49
 
 
50
    * 'bzr selftest' command-line arguments can now be partial ids
 
51
      of tests to run, e.g. 'bzr selftest test_weave'
 
52
 
 
53
      
 
54
bzr 0.0.9 2005-09-23
 
55
 
 
56
  BUG FIXES:
 
57
 
 
58
    * Fixed "branch -r" option.
 
59
 
 
60
    * Fix remote access to branches containing non-compressed history.
 
61
      (Robert Collins).
 
62
 
 
63
    * Better reliability of http server tests.  (John Arbash-Meinel)
 
64
 
 
65
    * Merge graph maximum distance calculation fix.  (Aaron Bentley)
 
66
   
 
67
    * Various minor bug in windows support have been fixed, largely in the
 
68
      test suite. Contributed by Alexander Belchenko.
 
69
 
 
70
  IMPROVEMENTS:
 
71
 
 
72
    * Status now accepts a -r argument to give status between chosen
 
73
      revisions. Contributed by Heikki Paajanen.
 
74
 
 
75
    * Revision arguments no longer use +/-/= to control ranges, instead
 
76
      there is a 'before' namespace, which limits the successive namespace.
 
77
      For example '$ bzr log -r date:yesterday..before:date:today' will
 
78
      select everything from yesterday and before today. Contributed by
 
79
      Robey Pointer
 
80
 
 
81
    * There is now a bzr.bat file created by distutils when building on 
 
82
      Windows. Contributed by Alexander Belchenko.
 
83
 
 
84
  INTERNALS:
 
85
 
 
86
    * Removed uuid() as it was unused.
 
87
 
 
88
    * Improved 'fetch' code for pulling revisions from one branch into
 
89
      another (used by pull, merged, etc.)
 
90
 
 
91
 
 
92
bzr 0.0.8 2005-09-20
2
93
 
3
94
  IMPROVEMENTS:
4
95
 
8
99
      get added when you add a file in the directory.  Contributed by
9
100
      Michael Ellerman.
10
101
 
 
102
    * Ignore .DS_Store (contains Mac metadata) by default.  Patch from
 
103
      Nir Soffer.
 
104
 
 
105
    * If you set BZR_EDITOR in the environment, it is checked in
 
106
      preference to EDITOR and the config file for the interactive commit
 
107
      editing program. Related to this is a bugfix where a missing program
 
108
      set in EDITOR would cause editing to fail, now the fallback program
 
109
      for the operating system is still tried.
 
110
 
 
111
    * Files that are not directories/symlinks/regular files will no longer
 
112
      cause bzr to fail, it will just ignore them by default. You cannot add
 
113
      them to the tree though - they are not versionable.
 
114
 
11
115
 
12
116
  INTERNALS:
13
117
 
14
118
    * Refactor xml packing/unpacking.
15
119
 
16
 
 
17
120
  BUG FIXES: 
18
121
 
19
122
    * Fixed 'bzr mv' by Ollie Rutherfurd.
29
132
 
30
133
    * Various Windows fixes from Ollie Rutherfurd.
31
134
 
 
135
    * Quieten warnings about locking; patch from Matt Lavin.
 
136
 
32
137
 
33
138
bzr-0.0.7 2005-09-02
34
139