File tree 4 files changed +22
-10
lines changed
4 files changed +22
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : python
2
- version : 4.0.8
2
+ version : 4.0.9
3
3
schema : 1
4
4
scm : github.com/pubnub/python
5
5
changelog :
6
+ - version : v4.0.9
7
+ date :
8
+ changes :
9
+ - type : bug
10
+ text : Fix missing encoder for path elements
11
+ - type : feature
6
12
- version : v4.0.8
7
13
date :
8
14
changes :
Original file line number Diff line number Diff line change 1
1
2
+ ## [ v4.0.9] ( https://github.com/pubnub/python/tree/v4.0.9 )
3
+
4
+
5
+ [ Full Changelog] ( https://github.com/pubnub/python/compare/v4.0.8...v4.0.9 )
6
+
7
+
8
+
9
+ - 🐛Fix missing encoder for path elements
10
+ - 🌟
11
+
12
+
13
+
14
+
2
15
## [ v4.0.8] ( https://github.com/pubnub/python/tree/v4.0.8 )
3
16
4
17
17
30
18
31
19
32
- 🐛Handle interval presence messages gracefully if they do not contain a UUID.
20
-
21
33
- 🌟Support custom cryptography module when using GAE
22
34
23
35
24
36
25
-
26
37
- ⭐designate the request thread as non-daemon to keep the SDK running.
27
38
28
39
46
57
- ⭐new pubnub domain
47
58
48
59
49
-
50
60
- ⭐native demo app
51
61
52
62
53
-
54
63
- ⭐fixed HTTPAdapter config
55
64
56
65
57
-
58
66
- ⭐add a new Python 3.6.0 config to travis builds
59
67
60
68
61
-
62
69
- ⭐fix blocking Ctrl+C bug
63
70
64
71
92
99
- ⭐Adjusting maximum pool size for requests installations
93
100
94
101
95
-
96
102
- ⭐Adding Publsher UUID
97
103
98
104
Original file line number Diff line number Diff line change 32
32
33
33
class PubNubCore :
34
34
"""A base class for PubNub Python API implementations"""
35
- SDK_VERSION = "4.0.8 "
35
+ SDK_VERSION = "4.0.9 "
36
36
SDK_NAME = "PubNub-Python"
37
37
38
38
TIMESTAMP_DIVIDER = 1000
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'pubnub' ,
5
- version = '4.0.8 ' ,
5
+ version = '4.0.9 ' ,
6
6
description = 'PubNub Real-time push service in the cloud' ,
7
7
author = 'PubNub' ,
8
8
You can’t perform that action at this time.
0 commit comments