forked from seung-lab/python-task-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
150 lines (104 loc) · 2.79 KB
/
ChangeLog
File metadata and controls
150 lines (104 loc) · 2.79 KB
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
CHANGES
=======
0.11.0
------
* chore: version 0.11.0
* feat: block\_until\_empty() which polls every 2 seconds by default
* docs: docstring for poll function
0.10.0
------
* feat: automatic serialization for objects with 'serialize'
0.9.1
-----
* chore: fix \_\_version\_\_ specification
0.9.0
-----
* feat: add \_\_version\_\_ number
* refactor: remove old google code to remove a dependency
* feat: add "poll" method based on igneous's task\_execution model
* fix: PrintTask initialize arguments
0.8.0
-----
* fix: actual backwards compatibility with python2
* docs: pip installation instructions were pointing to wrong package
* docs: add PyPI badge
* fix: generalize string types for python2 and 3
* refactor: drop appengine support, base64encoding
* docs: add Travis CI badge to README
* fix: enqueued measures both visible and non-visible messages on aws
* refactor: upgrade to inspect.getfullargspec
* refactor: move queue\_name and queue\_server to first arguments
* feat: allow specification of SQS queues via queue name only
* chore: change tab width to 2
0.7.0
-----
* test: switching to new credentials
* fix: add back google-api-python-client
* docs: more info on CloudVolume dependency
* docs: added info on CloudVolume dependency
* test: install numpy first for CloudVolume compatibility
* docs: more explicit about how to set up secrets
* docs: made PrintTask example more explicit
* docs: update readme to be more general
* feat: remove broken Google support
0.6.0
-----
* fix: test\_task\_creation independent of dict order (#10)
* fix: serialization of kwargs (#7)
* docs: how to use in README.md
0.5.0
-----
* feat: Multiprocess LocalTaskQueue (#6)
* chore: bump requirements
0.4.1
-----
* fix: updated ptq to use updated cloud-volume semantics
* Update README.md
0.4.0
-----
* feat: specify lease seconds through LEASE\_SECONDS environemnt var
0.3.2
-----
* fix: error in printing out bad queue urls
0.3.1
-----
* fix: forgot to include numpy in RegisteredTask
0.3.0
-----
* refactor: simplified AppEngineTaskQueueAPI (#4)
0.2.1
-----
* fix: python3 compatibility with python2 strings
0.2.0
-----
* feat: appenging queue api now supports tasks/id/:tid
* fix: unassigned variable
* fix: make encoding python3 friendly
* feat: switched appengine implementation to requests
0.1.7
-----
* feat: reviving the appengine taskqueue
0.1.6
-----
* chore: bumped cloud-volume version
0.1.5
-----
* feat: python3 compatibility (#3)
0.1.4
-----
* Wms cloud secrets (#2)
0.1.3
-----
* fix: secretpath was broken for legacy paths
0.1.2
-----
* fix: need to strip project\_name in case there's extra whitespace
* feat: backwards compatible secrets
* fix: add queue\_server to MockTaskQueue's constructor
0.1.1
-----
* fix: restore default project\_name
0.1.0
-----
* feat: Initial commit
* Initial commit