forked from varunbhalerao/pygcn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
164 lines (100 loc) · 3.81 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
Changelog
=========
0.1.19 (2019-02-12)
-------------------
- Add the `LVC_RETRACTION` notice type. [Leo Singer]
0.1.18 (2018-12-11)
-------------------
- Add `{http://telescope-networks.org/xml/Transport/v1.1}Transport` and
`{http://telescope-networks.org/schema/Transport/v1.1}Transport` as
recognized VOEvent Transport Protocol namespaces to support the 4pisky and
comet brokers. [reported by Martin Dyer]
0.1.17 (2018-10-04)
-------------------
- Add missing dependency on six. [Leo Singer]
- Fix handling of payload command line arguments for pygcn-server.
Thanks go out to WeiKang Zheng of UC Berkeley for reporting this.
[Leo Singer]
0.1.16 (2018-03-03)
-------------------
- Add ``functools.wraps()`` to handler decorators so that the original
function docstrings are preserved. [Leo Singer]
0.1.15 (2018-02-10)
-------------------
- Update module __all__ variables for convenience. [Leo Singer]
- Add experimental PEP 435 style enum class, ``gcn.NoticeType``. [Leo Singer]
0.1.14 (2018-02-01)
-------------------
- Depend unconditionally on lxml. Some of the examples depend on it because
of differences in how xml.etree and lxml.etree handle XML namespaces.
[Leo Singer]
0.1.13 (2018-01-24)
-------------------
- Include missing test data in package. [Leo Singer]
0.1.12 (2018-01-24)
-------------------
- Make source PEP8 compliant. [Leo Singer]
- Update list of GCN notice types. [Leo Singer]
- Fix some lingering Python 3 issues. [Leo Singer]
- Convert ``pygcn-listen`` and ``pygcn-serve`` from scripts into
console entry points. [Leo Singer]
- Improve unit test coverage. [Leo Singer]
0.1.11 (2018-01-24)
-------------------
- Modernize setuptools usage. [Leo Singer]
- Drop support for Python 2.6, 3.2, and 3.3. [Leo Singer]
0.1.10 (2017-01-05)
-------------------
- Convert command line interface from optparse to argparse. [Leo Singer]
- Add support for Python 3.5 and drop Python 2.6 and 3.1. [Leo Singer]
0.1.9 (2016-07-31)
------------------
- Add AMON_ICECUBE_EHE notice type. [Leo Singer]
0.1.8 (2016-04-27)
------------------
- Add AMON and CALET notice types. [Leo Singer]
0.1.7 (2015-09-13)
------------------
- Cleanly shut down server socket. [Leo Singer]
This decreases or eliminates the prevalence of `Address already in use`
errors when the server is killed (e.g. via a `KeyboardInterrupt`) and
immediately restarted.
- Add some log messages. [Leo Singer]
- Update setuptools bootstrap script. [Leo Singer]
0.1.6 (2015-03-26)
------------------
- Update setuptools bootstrap script. [Leo Singer]
0.1.5 (2015-03-26)
------------------
- Add LIGO/Virgo notice types. [Leo Singer]
0.1.4 (2014-05-19)
------------------
- Restore compatibility with Python 2.7.3. [Leo Singer]
Python 2.7.3's io.BytesIO() cannot accept a bytes object, but not a
buffer object.
0.1.3 (2014-05-19)
------------------
- Support Python 3.x. [Leo Singer]
- Conditionally import xml.parsers.expat.ExpatError. [Leo Singer]
Restores compatibility with Python 2.6, which does not have
xml.etree.cElementTree.ParseError.
- Add unit test for connection closed by server. [Leo Singer]
- Recover from connection closed by peer while reading. [Leo Singer]
- Add nose-based unit tests. Build now uses setuptools. [Leo Singer]
- Fix typos. [Leo Singer]
0.1.2 (2014-02-27)
------------------
- Print error and recover if VOEvent message has no ivorn. [Leo Singer]
- Recover from malformed XML packets. [Leo Singer]
If a malformed XML packet is received, log its base64-encoded content
for debugging purposes and then reconnect.
- Add rudimentary server. [Leo Singer]
- Fix spelling error. [Leo Singer]
0.1.1 (2014-02-12)
------------------
- Fix Python 2.6 compatibility. [Leo Singer]
- Prefer lxml.etree over xml.etree. [Leo Singer]
It's faster.
0.1 (2014-02-07)
----------------
- First release. [Leo Singer]