czmq-ffi-gen 0.12.0-x64-mingw32 → 0.13.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Binary file
Binary file
Binary file
@@ -10,7 +10,7 @@ includedir=${prefix}/include
10
10
 
11
11
  Name: libczmq
12
12
  Description: The high-level C binding for 0MQ
13
- Version: 4.0.0
13
+ Version: 4.0.3
14
14
 
15
15
  Requires:libzmq
16
16
 
@@ -5,7 +5,7 @@ includedir=${prefix}/include
5
5
 
6
6
  Name: libzmq
7
7
  Description: 0MQ c++ library
8
- Version: 4.2.0
8
+ Version: 4.2.2
9
9
  Libs: -L${libdir} -lzmq
10
- Libs.private: -lstdc++
10
+ Libs.private: -lstdc++
11
11
  Cflags: -I${includedir} -DZMQ_BUILD_DRAFT_API=1
@@ -8,6 +8,7 @@ Copyright (c) 2011 VMware, Inc.
8
8
  Copyright (c) 2012 Spotify AB
9
9
  Copyright (c) 2013 Ericsson AB
10
10
  Copyright (c) 2014 AppDynamics Inc.
11
+ Copyright (c) 2015-2016 Brocade Communications Systems Inc.
11
12
 
12
13
  Individual Contributors
13
14
  =======================
@@ -1,9 +1,339 @@
1
- 0MQ version 4.1.0 rc1, released on 2014/10/14
1
+ 0MQ version 4.2.2 stable, released on 20xx/xx/xx
2
+ =============================================
3
+
4
+
5
+ 0MQ version 4.2.1 stable, released on 2016/12/31
6
+ =============================================
7
+
8
+ * New DRAFT (see NEWS for 4.2.0) Socket Monitor events:
9
+ - ZMQ_EVENT_HANDSHAKE_SUCCEED
10
+ - ZMQ_EVENT_HANDSHAKE_FAILED
11
+ These events trigger when the ZMTP security mechanism handshake is
12
+ completed. See doc/zmq_socket_monitor.txt for more information.
13
+
14
+ * New DRAFT (see NEWS for 4.2.0) Context options:
15
+ - ZMQ_MSG_T_SIZE
16
+ See doc/zmq_ctx_get.txt for more information.
17
+
18
+ * Fixed #2268 - improved compatibility with mingw32
19
+
20
+ * Fixed #2254 - ZMQ_PUB compatibility with libzmq 2.x broken
21
+
22
+ * Fixed #2245 - added support for VS2017, Windows SDK 10.0.14393.0, toolset v141
23
+
24
+ * Fixed #2242 - file descriptors leaks on fork+exec
25
+
26
+ * Fixed #2239 - retired poller item crash from reaper thread
27
+
28
+ * Fixed #2234 - improved compatibility with AIX 7.1
29
+
30
+ * Fixed #2225 - cannot pick select for poller
31
+
32
+ * Fixed #2217 - CMake build uses library version as the ABI version
33
+
34
+ * Fixed #2208 - added support for ZMQ_TOS on IPv6
35
+
36
+ * Fixed #2200 - no documentation for ZMQ_SOCKS_PROXY
37
+
38
+ * Fixed #2199 - no documentation for zmq_curve_public
39
+
40
+ * Fixed #2196 - fixed build and runtime errors on kFreeBSD
41
+
42
+
43
+ 0MQ version 4.2.0 stable, released on 2016/11/04
44
+ =============================================
45
+
46
+ * For Pieter. Thanks for making all of this possible.
47
+
48
+ "Tell them I was a writer.
49
+ A maker of software.
50
+ A humanist. A father.
51
+ And many things.
52
+ But above all, a writer.
53
+ Thank You. :)"
54
+ - Pieter Hintjens
55
+
56
+ * This release introduces new APIs, but it is ABI compatible with
57
+ libzmq 4.1.2 and up.
58
+
59
+ * Note for ARM and SPARC users: an alignment problem in zmq_msg_t that could in
60
+ some cases and on some CPUs cause a SIGBUS error was solved, but it requires
61
+ a rebuild of your application against the 4.2.0 version of include/zmq.h.
62
+ To clarify, this change does not affect the internals of the library but only
63
+ the public definition of zmq_msg_t, so there is no ABI incompatibility.
64
+
65
+ * Security with Curve is now available by default thanks to Tweetnacl sources:
66
+ https://tweetnacl.cr.yp.to/index.html
67
+ Libsodium is still fully supported but has to be enabled with the build flag
68
+ --with-libsodium. Distribution and package maintainers are encouraged to use
69
+ libsodium so that the security implementation can be audited and maintained
70
+ separately.
71
+
72
+ * New Context options:
73
+ - ZMQ_MAX_MSGSZ
74
+ - ZMQ_BLOCKY
75
+ See doc/zmq_ctx_set.txt and doc/zmq_ctx_get.txt for details.
76
+
77
+ * New Socket options:
78
+ - ZMQ_HANDSHAKE_IVL
79
+ - ZMQ_SOCKS_PROXY
80
+ - ZMQ_XPUB_NODROP
81
+ - ZMQ_XPUB_MANUAL
82
+ - ZMQ_XPUB_WELCOME_MSG
83
+ - ZMQ_STREAM_NOTIFY
84
+ - ZMQ_INVERT_MATCHING
85
+ - ZMQ_HEARTBEAT_IVL
86
+ - ZMQ_HEARTBEAT_TTL
87
+ - ZMQ_HEARTBEAT_TIMEOUT
88
+ - ZMQ_XPUB_VERBOSER
89
+ - ZMQ_CONNECT_TIMEOUT
90
+ - ZMQ_TCP_MAXRT
91
+ - ZMQ_THREAD_SAFE
92
+ - ZMQ_MULTICAST_MAXTPDU
93
+ - ZMQ_VMCI_BUFFER_SIZE
94
+ - ZMQ_VMCI_BUFFER_MIN_SIZE
95
+ - ZMQ_VMCI_BUFFER_MAX_SIZE
96
+ - ZMQ_VMCI_CONNECT_TIMEOUT
97
+ - ZMQ_USE_FD
98
+ See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details.
99
+
100
+ * New CURVE helper function to derive z85 public key from secret key:
101
+ zmq_curve_public
102
+
103
+ * New cross-platform atomic counter helper functions:
104
+ zmq_atomic_counter_new, zmq_atomic_counter_set, zmq_atomic_counter_inc,
105
+ zmq_atomic_counter_dec, zmq_atomic_counter_value, zmq_atomic_counter_destroy
106
+ See doc/zmq_atomic_*.txt for details.
107
+
108
+ * New DRAFT APIs early-release mechanism. New APIs will be introduced early
109
+ in public releases, and until they are stabilized and guaranteed not to
110
+ change anymore they will be unavailable unless the new build flag
111
+ --enable-drafts is used. This will allow developers and early adopters to
112
+ test new APIs before they are finalized.
113
+ NOTE: as the name implies, NO GUARANTEE is made on the stability of these APIs.
114
+ They might change or disappear entirely. Distributions are recommended NOT to
115
+ build with them.
116
+
117
+ New socket types have been introduced in DRAFT state:
118
+ ZMQ_SERVER, ZMQ_CLIENT, ZMQ_RADIO, ZMQ_DISH, ZMQ_GATHER, ZMQ_SCATTER,
119
+ ZMQ_DGRAM
120
+ All these sockets are THREAD SAFE, unlike the existing socket types. They do
121
+ NOT support multipart messages (ZMQ_SNDMORE/ZMQ_RCVMORE).
122
+ ZMQ_RADIO, ZMQ_DISH and ZMQ_DGRAM also support UDP as transport,
123
+ both unicast and multicast. See doc/zmq_udp.txt for more details.
124
+ New methods to support the new socket types functionality:
125
+ zmq_join, zmq_leave, zmq_msg_set_routing_id, zmq_msg_routing_id,
126
+ zmq_msg_set_group, zmq_msg_group
127
+ See doc/zmq_socket.txt for more details.
128
+
129
+ New poller mechanism and APIs have been introduced in DRAFT state:
130
+ zmq_poller_new, zmq_poller_destroy, zmq_poller_add, zmq_poller_modify,
131
+ zmq_poller_remove, zmq_poller_wait, zmq_poller_wait_all, zmq_poller_add_fd
132
+ zmq_poller_modify_fd, zmq_poller_remove_fd
133
+ and a new supporting struct typedef: zmq_poller_event_t
134
+ They support existing socket type, new thread-safe socket types and file
135
+ descriptors (cross-platform).
136
+ Documentation will be made available in the future before these APIs are declared
137
+ stable.
138
+
139
+ New cross-platform timers helper functions have been introduced in DRAFT state:
140
+ zmq_timers_new, zmq_timers_destroy, zmq_timers_add, zmq_timers_cancel,
141
+ zmq_timers_set_interval, zmq_timers_reset, zmq_timers_timeout,
142
+ zmq_timers_execute
143
+ and a new supporting callback typedef: zmq_timer_fn
144
+
145
+ * Many, many bug fixes. The most important fixes are backported and captured in the
146
+ 4.1.x and 4.0.x changelogs.
147
+
148
+
149
+ 0MQ version 4.2.0 rc1, released on 2016/11/01
2
150
  =============================================
3
151
 
4
152
  * Many changes, see ChangeLog.
5
153
 
6
154
 
155
+ 0MQ version 4.1.6 stable, released on 2016/11/01
156
+ ================================================
157
+
158
+ * Fixed #2051 - getifaddrs can fail with ECONNREFUSED
159
+
160
+ * Fixed #2091 - testutil.hpp fails to build on Windows XP
161
+
162
+ * Fixed #2096 - add tests/CMakeLists.in and version.rc.in to dist tar
163
+
164
+ * Fixed #2107 - zmq_connect with IPv6 "source:port;dest:port" broken
165
+
166
+ * Fixed #2117 - ctx_term assert with inproc zmq_router connect-before-bind
167
+
168
+ * Fixed #2158 - Socket monitor uses internal Pair from multiple threads
169
+
170
+ * Fixed #2161 - messages dropped due to HWM race
171
+
172
+ * Fixed #1325 - alignment issue with zmq_msg_t causes SIGBUS on SPARC and ARM
173
+
174
+
175
+ 0MQ version 4.1.5 stable, released on 2016/06/17
176
+ ================================================
177
+
178
+ * Fixed #1673 - CMake on Windows put PDB in wrong directory.
179
+
180
+ * Fixed #1723 - Family is not set when resolving NIC on Android.
181
+
182
+ * Fixed #1608 - Windows 7 TCP slow start issue.
183
+
184
+ * Fixed #1806 - uninitialised read in curve getsockopt.
185
+
186
+ * Fixed #1807 - build broken with GCC 6.
187
+
188
+ * Fixed #1831 - potential assertion failure with latest libsodium.
189
+
190
+ * Fixed #1850 - detection issues with tweetnacl/libsodium.
191
+
192
+ * Fixed #1877 - Avoid terminating connections prematurely
193
+
194
+ * Fixed #1887 - zmq_bind IPv4 fallback still tries IPv6
195
+
196
+ * Fixed #1866 - fails to build on SunOS 5.10 / Solaris 10
197
+
198
+ * Fixed #919 - ZMQ_LINGER (related to #1877)
199
+
200
+ * Fixed #114 - cannot unbind with same endpoint with IPv6 enabled.
201
+
202
+ * Fixed #1952 - CMake scripts not part of release tarballs
203
+
204
+ * Fixed #1542 - Fix a crash on Windows when port 5905 is in use.
205
+
206
+ * Fixed #2021 - Fix building on sparc32.
207
+
208
+
209
+ 0MQ version 4.1.4 stable, released on 2015/12/18
210
+ ================================================
211
+
212
+ * Fixed #1315 - socket monitor hangs if bind/setsockopt failed.
213
+
214
+ * Fixed #1399 - assertion failure in tcp.cpp after network reconnect.
215
+
216
+ * Fixed #1632 - build failure using latest libsodium.
217
+
218
+ * Fixed #1644 - assertion failure in msg.cpp:390 on STREAM sockets.
219
+
220
+ * Fixed #1661 - does not handle IPv6 link local addresses.
221
+
222
+
223
+ 0MQ version 4.1.3 stable, released on 2015/08/17
224
+ ================================================
225
+
226
+ * Fixed #1532 - getsockopt ZMQ_RCVMORE now resets all bits instead of only 32
227
+
228
+ * Fixed #1445 - zmq::socket_base_t::connect fails on tcp ipv6 address
229
+
230
+
231
+ 0MQ version 4.1.2 stable, released on 2015/06/15
232
+ ================================================
233
+
234
+ * Added explicit reference to static link exception in every source file.
235
+
236
+ * Bumped ABI version to 5:0:0 since 4.1.x changed the ABI.
237
+
238
+ * Fixed STDINT event interface macros to work with CZMQ 3.0.
239
+
240
+ * Fixed installation of man pages when BUILD_DOC is not set.
241
+
242
+ * Fixed #1428 - regression on single-socket proxies.
243
+
244
+
245
+ 0MQ version 4.1.1 stable, released on 2015/06/02
246
+ ================================================
247
+
248
+ * Fixed #1208 - fix recursion in automake packaging.
249
+
250
+ * Fixed #1224 - crash when processing empty unsubscribe message.
251
+
252
+ * Fixed #1213 - properties files were missing from source packages.
253
+
254
+ * Fixed #1273 - V3 protocol handler vulnerable to downgrade attacks.
255
+
256
+ * Fixed #1347 - lack way to get peer address.
257
+
258
+ * Fixed #1362 - SUB socket sometimes fails to resubscribe properly.
259
+
260
+ * Fixed #1377, #1144 - failed with WSANOTINITIALISED in some cases.
261
+
262
+ * Fixed #1389 - PUB, PUSH sockets had slow memory leak.
263
+
264
+ * Fixed #1382 - zmq_proxy did not terminate if there were no readers.
265
+
266
+
267
+ 0MQ version 4.1.0 rc1, released on 2014/10/14
268
+ =============================================
269
+
270
+ * All issues that were fixed in 4.0.x
271
+
272
+ * Improved client reconnection strategy on errors
273
+
274
+ * GSSAPI security mechanism
275
+
276
+ * SOCKS5 support (ZMQ_SOCKS_PROXY)
277
+
278
+ * ZMQ_ROUTER_HANDOVER
279
+
280
+ * ZMQ_TOS
281
+
282
+ * ZMQ_CONNECT_RID
283
+
284
+ * ZMQ_HANDSHAKE_IVL
285
+
286
+ * ZMQ_IDENTITY_FD
287
+
288
+ * ZMQ_XPUB_NODROP
289
+
290
+ * ZMQ_SRCFD and ZMQ_SHARED message options
291
+
292
+ * Message metadata -- zmq_msg_gets ()
293
+
294
+ * Probe library configuration -- zmq_has ()
295
+
296
+
297
+ 0MQ version 4.0.8 stable, released on 2016/06/17
298
+ ================================================
299
+
300
+ * Fixed LIBZMQ-949 - zmq_unbind fails for inproc and wildcard endpoints
301
+
302
+ * Fixed #1806 - uninitialised read in curve getsockopt.
303
+
304
+ * Fixed #1807 - build broken with GCC 6.
305
+
306
+ * Fixed #1877 - Avoid terminating connections prematurely
307
+
308
+ * Fixed #1887 - zmq_bind IPv4 fallback still tries IPv6
309
+
310
+ * Fixed #98 - don't require libssp without libsodium on Solaris
311
+
312
+ * Fixed #919 - ZMQ_LINGER (related to #1877)
313
+
314
+ * Fixed #139 - "tempnam" is deprecated.
315
+
316
+
317
+ 0MQ version 4.0.7 stable, released on 2015/06/15
318
+ ================================================
319
+
320
+ * Fixed #1428 - regression on single-socket proxies.
321
+
322
+
323
+ 0MQ version 4.0.6 stable, released on 2015/06/02
324
+ ================================================
325
+
326
+ * Fixed #1273 - V3 protocol handler vulnerable to downgrade attacks.
327
+
328
+ * Fixed #1362 - SUB socket sometimes fails to resubscribe properly.
329
+
330
+ * Fixed #1377, #1144 - failed with WSANOTINITIALISED in some cases.
331
+
332
+ * Fixed #1389 - PUB, PUSH sockets had slow memory leak.
333
+
334
+ * Fixed #1382 - zmq_proxy did not terminate if there were no readers.
335
+
336
+
7
337
  0MQ version 4.0.5 stable, released on 2014/10/14
8
338
  ================================================
9
339
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: czmq-ffi-gen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Patrik Wenger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-05 00:00:00.000000000 Z
11
+ date: 2017-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi