~barry/ubuntu/quantal/dbus-python/lp846044

« back to all changes in this revision

Viewing changes to ChangeLog

  • Committer: Package Import Robot
  • Author(s): Simon McVittie
  • Date: 2012-06-25 17:35:50 UTC
  • mfrom: (1.2.3)
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: package-import@ubuntu.com-20120625173550-x9zz8axwd82d7jma
* New upstream version
  - fixes type-signature guessing when an ObjectPath is given (LP: #1008898)
* Increase dbus build-dependency to the recommended version, 1.6
* Include /usr/share/dpkg/default.mk for recommended build flags

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit f6066573d25508f5cbbc5c12254086d419bb8828
 
2
Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
 
3
Date:   2012-06-25 17:01:51 +0100
 
4
 
 
5
    fd.o #40817: validate UTF-8 according to the same rules as libdbus
 
6
 
 
7
 NEWS                            |    8 +++
 
8
 _dbus_bindings/message-append.c |  102 ++++++++++++++++++++++++++++-----------
 
9
 configure.ac                    |    4 ++
 
10
 test/test-standalone.py         |   59 +++++++++++++++++++++-
 
11
 4 files changed, 143 insertions(+), 30 deletions(-)
 
12
 
 
13
commit 4a0f4379d4a5783d576aec90019a39459eff007d
 
14
Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
 
15
Date:   2012-06-05 19:39:20 +0100
 
16
 
 
17
    NEWS
 
18
 
 
19
 NEWS |    7 ++++++-
 
20
 1 file changed, 6 insertions(+), 1 deletion(-)
 
21
 
 
22
commit 6ff89bf0d05a550cf1aff2053579fc1f0192cd97
 
23
Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
 
24
Date:   2012-06-05 19:07:51 +0100
 
25
 
 
26
    Py3: correctly guess the signature of ObjectPath(...) and Signature(...)
 
27
    
 
28
    Under Python 2, ObjectPath and Signature are subtypes of str (= bytes),
 
29
    and the existing type-guessing worked.
 
30
    
 
31
    The type-guessing code assumed that all unicode objects were just
 
32
    strings, but that assumption became false in the Python 3 port:
 
33
    ObjectPath and Signature are still subtypes of str, but str now means
 
34
    unicode, not bytes.
 
35
    
 
36
    Bug: https://bugs.freedesktop.org/show_bug.cgi?id=50740
 
37
 
 
38
 _dbus_bindings/message-append.c |   14 ++++++++++++--
 
39
 test/test-standalone.py         |    2 ++
 
40
 2 files changed, 14 insertions(+), 2 deletions(-)
 
41
 
 
42
commit 2f08b9e644c8530c4d324c4bd9d8a0cdb24edc92
 
43
Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
 
44
Date:   2012-05-09 17:50:59 +0100
 
45
 
 
46
    Back to unreleased status
 
47
 
 
48
 NEWS         |    5 +++++
 
49
 configure.ac |    2 +-
 
50
 2 files changed, 6 insertions(+), 1 deletion(-)
 
51
 
1
52
commit 4a4bce958b3257b7cb2adc050022879660aface1
2
53
Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
3
54
Date:   2012-05-09 15:47:48 +0100