Skip to content

Commit 4a64169

Browse files
author
Simple Geebus
committed
Prepared changelog for build 128
1 parent 3473612 commit 4a64169

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

debian/changelog

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
python-oauth2 (1.3.128) lucid; urgency=low
2+
3+
[ Zooko Ofsimplegeo ]
4+
* raise an exception if the URL passed in is not a unicode object nor
5+
ascii We can't submit a correct URL with arbitrary bytes -- we have
6+
to submit a utf-8 encoded unicode string. (Otherwise we'll cause
7+
either a rejection or a signature mismatch in the server, which is
8+
what has happened at SimpleGeo.) If the caller passes in non-ascii
9+
things in a str then it would be better for them to change their
10+
code to decode it to unicode before passing it in than for us to
11+
decode it, since they have a better chance of knowing what encoding
12+
it is in -- if we did it we would be guessing.
13+
* fix flaws pointed out by ieure, plus test failures I'm not entirely
14+
sure it is appropriate to allow .url and .normalized_url to be non-
15+
existent in addition to allowing them to be None, but I don't really
16+
understand the intent of the url setter.
17+
* Oh, after we've made sure it can be converted to unicode, just leave
18+
it as a unicode object after that.
19+
* raise more specific error message if argument to to_unicode() is
20+
neither unicode nor str
21+
* a couple of cleanups suggested by ieure in code review
22+
23+
[ SimpleGeo Nerds ]
24+
25+
-- SimpleGeo Nerds <[email protected]> Mon, 10 Jan 2011 22:42:35 +0000
26+
127
python-oauth2 (1.3.127) lucid; urgency=low
228

329
[ Zooko Ofsimplegeo ]

oauth2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is the version of this source code.
22

3-
verstr = "1.3.127"
3+
verstr = "1.3.128"
44
try:
55
from pyutil.version_class import Version as pyutil_Version
66
__version__ = pyutil_Version(verstr)

0 commit comments

Comments
 (0)