~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-21 01:11:19 UTC
  • mfrom: (1556.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060221011119-9a0c5d37d496d0d7
Move the SFTP URL change for relative and absolute paths to the right place in NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
  IMPROVEMENTS:
5
5
 
 
6
    * Sftp paths can now be relative, or local, according to the lftp
 
7
      convention. Paths now take the form:
 
8
      sftp://user:pass@host:port/~/relative/path
 
9
      or
 
10
      sftp://user:pass@host:port/absolute/path
 
11
 
6
12
    * The FTP transport now tries to reconnect after a temporary
7
13
      failure. ftp put is made atomic. (Matthieu Moy)
8
14
 
99
105
      This gives better integration with user settings such as ProxyCommand.
100
106
      (James Henstridge)
101
107
 
102
 
    * Sftp paths can now be relative, or local, according to the lftp
103
 
      convention. Paths now take the form:
104
 
      sftp://user:pass@host:port/~/relative/path
105
 
      or
106
 
      sftp://user:pass@host:port/absolute/path
107
 
 
108
108
    * Permissions on files underneath .bzr/ are inherited from the .bzr 
109
109
      directory. So for a shared repository, simply doing 'chmod -R g+w .bzr/'
110
110
      will mean that future file will be created with group write permissions.