~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Vincent Ladeuil
  • Date: 2007-04-20 06:50:59 UTC
  • mto: (2420.1.21 bzr.http.auth)
  • mto: This revision was merged to the branch mainline in revision 2463.
  • Revision ID: v.ladeuil+lp@free.fr-20070420065059-oig56fr6u5yxeiob
Update NEWS to explain the intent of the modification. Also, use dicts
instead of tuples for auth parameters.

* bzrlib/transport/http/_urllib2_wrappers.py:
Use dicts for auth parameters.

* bzrlib/transport/http/_urllib.py:
(HttpTransport_urllib.__init__): Use dicts for auth parameters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
      once the the authentication succeeds. (Vincent Ladeuil).
46
46
 
47
47
    * urlib http now supports querying the user for a proxy password if
48
 
      needed. (Vincent Ladeuil).
 
48
      needed. Realm is shown in the prompt for both HTTP and proxy
 
49
      authentication when the user is required to type a password. 
 
50
      (Vincent Ladeuil).
49
51
 
50
52
    * Renamed SmartTransport (and subclasses like SmartTCPTransport) to
51
53
      RemoteTransport (and subclasses to RemoteTCPTransport, etc).  This is more
83
85
      in this versus base, but it isn't marked as a rename).
84
86
      (John Arbash Meinel, #103870)
85
87
 
 
88
    * Don't preventively use basic authentication for proxy before receiving a
 
89
      407 error. Otherwise people willing to use other authentication schemes
 
90
      may expose their password in the clear. This add one roundtrip in case
 
91
      basic authentication should be used, but plug the security
 
92
      hole. (Vincent Ladeuil)
 
93
 
86
94
  TESTING:
87
95
 
88
96
    * Added ``bzrlib.strace.strace`` which will strace a single callable and