~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robey Pointer
  • Date: 2006-07-12 15:30:24 UTC
  • mfrom: (1860 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1861.
  • Revision ID: robey@lag.net-20060712153024-84f85a11780a17df
merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
  IMPROVEMENTS:
4
4
 
 
5
   * The revision specifier "revno:" is extended to accept the syntax
 
6
     revno:N:branch. For example,
 
7
     revno:42:http://bazaar-vcs.org/bzr/bzr.dev/ means revision 42 in
 
8
     bzr.dev.  (Matthieu Moy)
 
9
 
5
10
   * No default ignore rules are applied by bzr - only the rules in .bzrignore
6
11
     are considered. This fixes bugs with default rules being enforced no
7
12
     matter what. The old list of ignore rules from bzr is available by
79
84
   * 'bzr revert DIRECTORY' now reverts the contents of the directory as well.
80
85
     (Aaron Bentley)
81
86
 
 
87
   * 'bzr get sftp://foo' gives a better error when paramiko is not present.
 
88
     Also updates things like 'http+pycurl://' if pycurl is not present.
 
89
     (John Arbash Meinel) (Malone #47821, #52204)
 
90
 
 
91
   * New env variable BZR_PROGRESS_BAR, sets the default progress bar type.
 
92
     Can be set to 'none' or 'dummy' to disable the progress bar, 'dots' or 
 
93
     'tty' to create the respective type. (John Arbash Meinel, #42197, #51107)
 
94
 
 
95
   * Improve the help text for 'bzr diff' to explain what various options do.
 
96
     (John Arbash Meinel, #6391)
 
97
 
82
98
  BUG FIXES:
83
99
 
84
100
    * Fix shadowed definition of TestLocationConfig that caused some 
102
118
    * Cleanup win32 test suite, and general cleanup of places where
103
119
      file handles were being held open. (John Arbash Meinel)
104
120
 
 
121
    * When specifying filenames for 'diff -r x..y', the name of the file in the
 
122
      working directory can be used, even if its name is different in both x
 
123
      and y.
 
124
 
 
125
    * File-ids containing single- or double-quotes are handled correctly by
 
126
      push.  (#52227, Aaron Bentley)
 
127
 
 
128
    * Normalize unicode filenames to ensure cross-platform consistency.
 
129
      (John Arbash Meinel, #43689)
 
130
 
 
131
    * The argument parser can now handle '-' as an argument. Currently
 
132
      no code interprets it specially (it is mostly handled as a file named 
 
133
      '-'). But plugins, and future operations can use it.
 
134
      (John Arbash meinel, #50984)
 
135
 
 
136
    * Bundles can properly read binary files with a plain '\r' in them.
 
137
      (John Arbash Meinel, #51927)
 
138
 
 
139
    * Tuning iter_entries() to be more efficient (John Arbash Meinel, #5444)
 
140
 
 
141
    * Lots of win32 fixes (the test suite passes again).
 
142
      (John Arbash Meinel, #50155)
 
143
 
 
144
    * Handle openbsd returning None for sys.getfilesystemencoding() (#41183) 
 
145
 
 
146
    * Support ftp APPE (append) to allow Knits to be used over ftp (#42592)
 
147
 
 
148
    * Removals are only committed if they match the filespec (or if there is
 
149
      no filespec).  (#46635, Aaron Bentley)
 
150
 
 
151
    * smart-add recurses through all supplied directories 
 
152
      (John Arbash Meinel, #52578)
 
153
 
105
154
  INTERNALS:
106
155
 
107
156
    * Combine the ignore rules into a single regex rather than looping over