~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robert Collins
  • Date: 2005-09-28 09:35:50 UTC
  • mfrom: (1185.1.47)
  • Revision ID: robertc@robertcollins.net-20050928093550-3ca194dfaffc79f1
merge from integration

Show diffs side-by-side

added added

removed removed

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