~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

[merge] up-to-date against bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
UNRELEASED CHANGES
2
2
 
 
3
  CHANGES:
 
4
 
 
5
    * .bzrignore is excluded from exports, on the grounds that it's a bzr 
 
6
      internal-use file and may not be wanted.  (Jamie Wilkinson)
 
7
 
 
8
    * The "bzr directories" command were removed in favor of the new
 
9
      --kind option to the "bzr inventory" command.  To list all 
 
10
      versioned directories, now use "bzr inventory --kind directory".  
 
11
      (Johan Rydberg)
 
12
 
 
13
    * Under Windows configuration directory is now %APPDATA%\bazaar\2.0
 
14
      by default. (John Arbash Meinel)
 
15
 
 
16
    * The parent of Bzr configuration directory can be set by BZR_HOME
 
17
      environment variable. Now the path for it is searched in BZR_HOME, then
 
18
      in HOME. Under Windows the order is: BZR_HOME, APPDATA (usually
 
19
      points to C:\Documents and Settings\User Name\Application Data), HOME.
 
20
      (John Arbash Meinel)
 
21
 
3
22
  IMPROVEMENTS:
4
23
 
5
24
    * "bzr INIT dir" now initializes the specified directory, and creates 
31
50
    * Accept 'bzr resolved' (an alias for 'bzr resolve'), as this is
32
51
      the same as Subversion.  (Martin Pool)
33
52
 
 
53
    * New ftp transport support (on ftplib), for ftp:// and aftp:// 
 
54
      URLs.  (Daniel Silverstone)
 
55
 
 
56
    * Commit editor temporary files now start with 'bzr_log.', to allow 
 
57
      text editors to match the file name and set up appropriate modes or 
 
58
      settings.  (Magnus Therning)
 
59
 
34
60
  BUG FIXES:
35
61
 
36
62
    * SFTP can walk up to the root path without index errors. (Robert Collins)
52
78
    * Stores with some compressed texts and some uncompressed texts are now
53
79
      able to be used. (John A Meinel)
54
80
 
 
81
    * Fix for bzr pull failing sometimes under windows
 
82
 
 
83
    * Fix for sftp transport under windows when using interactive auth
 
84
 
 
85
    * Show files which are both renamed and modified as such in 'bzr 
 
86
      status' output.  (#4503, Daniel Silverstone)
 
87
 
 
88
    * Make annotate cope better with revisions committed without a valid 
 
89
      email address.  (Marien Zwart)
 
90
 
 
91
    * Fix representation of tab characters in commit messages.  (Harald 
 
92
      Meland)
 
93
 
 
94
    * List of plugin directories in BZR_PLUGIN_PATH environment variable is
 
95
      now parsed properly under Windows. (Alexander Belchenko)
 
96
 
 
97
    * Show number of revisions pushed/pulled/merged. (Robey Pointer)
 
98
 
55
99
  TESTING:
56
100
 
57
101
    * Fix selftest asking for passwords when there are no SFTP keys.  
59
103
 
60
104
    * Fix selftest run with 'python -O'.  (Martin Pool)
61
105
 
 
106
    * Fix HTTP tests under Windows. (John Arbash Meinel)
 
107
 
 
108
    * Make tests work even if HOME is not set (Aaron Bentley)
 
109
 
 
110
    * Updated build_tree to use fixed line-endings for tests which read 
 
111
      the file cotents and compare. Make some tests use this to pass under
 
112
      Windows. (John Arbash Meinel)
 
113
 
 
114
    * Skip stat and symlink tests under Windows. (Alexander Belchenko)
 
115
 
 
116
    * Delay in selftest/testhashcash is now issued under win32 and Cygwin.
 
117
      (John Arbash Meinel)
 
118
 
62
119
  INTERNALS:
63
120
 
64
121
    * WorkingTree.pull has been split across Branch and WorkingTree,
95
152
    * All pending merges operations from Branch are now on WorkingTree.
96
153
      (Robert Collins)
97
154
 
98
 
    * Branch.commit() has moved to WorkingTree.commit(). (Robert Collins)
99
 
 
 
155
    * The follow operations from Branch have moved to WorkingTree:
 
156
      add()
 
157
      commit()
 
158
      move()
 
159
      rename_one()
 
160
      unknowns()
 
161
      (Robert Collins)
 
162
 
 
163
    * bzrlib.add.smart_add_branch is now smart_add_tree. (Robert Collins)
 
164
 
 
165
    * New basic_io serialization format. (Martin Pool)
 
166
 
 
167
    * Rename selftests to `bzrlib.tests.test_foo`.  (John A Meinel, Martin 
 
168
      Pool)
 
169
   
100
170
bzr 0.6 2005-10-28
101
171
 
102
172
  IMPROVEMENTS: