2013-09-20 17:28:19 +02:00
|
|
|
0MQ version 4.1.0, released on 2014/xx/xx
|
|
|
|
=========================================
|
|
|
|
|
|
|
|
|
2013-10-08 10:36:33 +02:00
|
|
|
0MQ version 4.0.1 stable, released on 2013/10/08
|
|
|
|
================================================
|
|
|
|
|
|
|
|
Bug fixes
|
|
|
|
---------
|
|
|
|
|
|
|
|
* Fixed some build/test errors on OS/X + Clang++.
|
|
|
|
|
|
|
|
* Updated CURVE mechanism to track revised RFC 27 (INITIATE vouch).
|
|
|
|
|
|
|
|
The INITIATE command vouch box is Box[C',S](C->S') instead of
|
|
|
|
Box[C'](C->S), to reduce the risk of client impersonation, as per
|
|
|
|
https://codesinchaos.wordpress.com/2012/09/09/curvecp-1/.
|
|
|
|
|
|
|
|
* Fixed LIBZMQ-565, typo in code.
|
|
|
|
|
|
|
|
* Fixed LIBZMQ-566, dealer-to-router connections sometimes failing.
|
|
|
|
|
|
|
|
* Fixed LIBZMQ-567, adding abstract namespaces for IPC sockets on Linux.
|
|
|
|
|
|
|
|
Converts an initial strudel or "at sign" (@) in the Unix socket path to
|
|
|
|
a NULL character ('\0') indicating that the socket uses the abstract
|
|
|
|
namespace instead of the filesystem namespace. For instance, binding a
|
|
|
|
socket to 'ipc://@/tmp/tester' will not create a file associated with
|
|
|
|
the socket whereas binding to 'ipc:///tmp/tester' will create the file
|
|
|
|
/tmp/tester. See issue 567 for more information.
|
|
|
|
|
|
|
|
* Fixed builds for AIX, MSVC 2008, OS/X with clang++, Solaris.
|
|
|
|
|
|
|
|
* Added zmq_z85_encode and zmq_z85_decode to core libzmq API.
|
|
|
|
|
|
|
|
* Added zmq_curve_keypair to core libzmq API.
|
|
|
|
|
|
|
|
* Improved CURVE handshake error handling.
|
|
|
|
|
|
|
|
* Replaced macro constants in zmq.h with enum types for user-facing
|
|
|
|
constants (except ZMQ version numbers).
|
|
|
|
|
|
|
|
* Bumped library ABI version to 4:0:1.
|
|
|
|
|
|
|
|
|
2013-09-20 17:28:19 +02:00
|
|
|
0MQ version 4.0.0 (RC1), released on 2013/09/20
|
|
|
|
===============================================
|
|
|
|
|
|
|
|
Major changes
|
|
|
|
-------------
|
|
|
|
|
|
|
|
* New wire level protocol, ZMTP/3.0, see http://rfc.zeromq.org/spec:23.
|
|
|
|
Does not yet implement the SUBSCRIBE, CANCEL, PING, and PONG commands.
|
|
|
|
|
|
|
|
* New security framework, from plain user+password to strong encryption,
|
|
|
|
see section below. See http://hintjens.com/blog:49 for a tutorial.
|
|
|
|
|
|
|
|
* New ZMQ_STREAM socket type for working as a TCP client or server. See:
|
|
|
|
tests/test_stream.cpp.
|
|
|
|
|
|
|
|
Improvements
|
|
|
|
------------
|
|
|
|
|
|
|
|
* You can now connect to an inproc:// endpoint that does not already
|
|
|
|
exist. This means inproc:// no longer needs careful set-up, but it may
|
|
|
|
break code that relied on the old behaviour. See:
|
|
|
|
tests/test_inproc_connect.cpp.
|
|
|
|
|
|
|
|
* Libzmq now checks socket types at connection time, so that trying to
|
|
|
|
connect a 'wrong' socket type will fail.
|
|
|
|
|
|
|
|
* New zmq_ctx_shutdown API method will shutdown a context and send ETERM
|
|
|
|
to blocking calls, without blocking. Use zmq_ctx_term to finalise the
|
|
|
|
process.
|
|
|
|
|
|
|
|
* The regression test suite has been significantly extended and improved.
|
|
|
|
|
|
|
|
* Contexts can now be terminated in forked child processes. See:
|
|
|
|
tests/test_fork.cpp.
|
|
|
|
|
|
|
|
* zmq_disconnect now respects the linger setting on sockets.
|
|
|
|
|
|
|
|
* New zmq_send_const API method to send constant data (without copying).
|
|
|
|
See: tests/test_inproc_connect.cpp.
|
|
|
|
|
|
|
|
* Added CMake support for static libraries.
|
|
|
|
|
|
|
|
* Added test cases for socket semantics as defined in RFCs 28, 29, 30, 31.
|
|
|
|
See: tests/test_spec_*.cpp.
|
|
|
|
|
|
|
|
* New socket option, ZMQ_PROBE_ROUTER triggers an empty message on connect.
|
|
|
|
See: tests/test_probe_router.cpp.
|
|
|
|
|
|
|
|
* New socket option, ZMQ_REQ_CORRELATE allows for correlation of replies
|
|
|
|
from a REP socket. See: tests/test_req_correlate.cpp.
|
|
|
|
|
|
|
|
* New socket option, ZMQ_REQ_RELAXED, lets you disable the state machine
|
|
|
|
on a REQ socket, so you can send multiple requests without waiting for
|
|
|
|
replies, and without getting an EFSM error. See:
|
|
|
|
tests/test_req_relaxed.cpp.
|
|
|
|
|
|
|
|
* New socket option, ZMQ_CONFLATE restricts the outgoing and incoming
|
|
|
|
socket buffers to a single message. See: tests/test_conflate.cpp.
|
|
|
|
|
|
|
|
Deprecated Options
|
|
|
|
------------------
|
|
|
|
|
|
|
|
* ZMQ_IPV4ONLY deprecated and renamed to ZMQ_IPV6 so that options are
|
|
|
|
consistently "off" by default.
|
|
|
|
|
|
|
|
* ZMQ_DELAY_ATTACH_ON_CONNECT deprecated, and renamed to ZMQ_IMMEDIATE.
|
|
|
|
See: tests/test_immediate.cpp.
|
|
|
|
|
|
|
|
Security Framework
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Based on new ZMTP wire level protocol that negotiates a security
|
|
|
|
"mechanism" between client and server before exchanging any other data.
|
|
|
|
|
|
|
|
Security mechanisms are extensible. ZMTP defines three by default:
|
|
|
|
|
|
|
|
* NULL - classic ZeroMQ, with no authentication. See
|
|
|
|
http://rfc.zeromq.org/spec:23.
|
|
|
|
|
|
|
|
* PLAIN - plain-text username + password authentication. See
|
|
|
|
http://rfc.zeromq.org/spec:24.
|
|
|
|
|
|
|
|
* CURVE - secure authentication and encryption based on elliptic curve
|
|
|
|
cryptography, using the Curve25519 algorithm from Daniel Bernstein and
|
|
|
|
based on CurveCP's security handshake. See http://rfc.zeromq.org/spec:25,
|
|
|
|
http://rfc.zeromq.org/spec:26, and http://curvecp.org.
|
|
|
|
|
|
|
|
Authentication is done by pluggable "authenticators" that connect to libzmq
|
|
|
|
over an inproc endpoint, see http://rfc.zeromq.org/spec:27.
|
|
|
|
|
|
|
|
Socket options to configure PLAIN security on client or server:
|
|
|
|
|
|
|
|
* ZMQ_PLAIN_SERVER, ZMQ_PLAIN_USERNAME, ZMQ_PLAIN_PASSWORD. See
|
|
|
|
tests/test_security_plain.
|
|
|
|
|
|
|
|
Socket options to configure CURVE security on client or server:
|
|
|
|
|
|
|
|
* ZMQ_CURVE_SERVER, ZMQ_CURVE_PUBLICKEY, ZMQ_CURVE_SECRETKEY,
|
|
|
|
ZMQ_CURVE_SERVERKEY. See tests/test_security_curve.cpp.
|
|
|
|
|
|
|
|
Socket options to configure "domain" for ZAP handler:
|
|
|
|
|
|
|
|
* ZMQ_ZAP_DOMAIN, see tests/test_security_null.cpp.
|
|
|
|
|
|
|
|
Support for encoding/decoding CURVE binary keys to ASCII:
|
|
|
|
|
|
|
|
* zmq_z85_encode, zmq_z85_decode.
|
|
|
|
|
|
|
|
Other issues addressed in this release
|
|
|
|
--------------------------------------
|
|
|
|
|
|
|
|
* LIBZMQ-525 Multipart upstreaming from XSUB to XPUB
|
|
|
|
|
|
|
|
|
2013-09-20 13:28:16 +02:00
|
|
|
0MQ version 3.2.4 stable, released on 2013/09/20
|
|
|
|
================================================
|
|
|
|
|
|
|
|
* LIBZMQ-84 (Windows) Assertion failed: Address already in use at signaler.cpp:80
|
|
|
|
* LIBZMQ-456 ZMQ_XPUB_VERBOSE does not propagate in a tree of XPUB/XSUB devices
|
|
|
|
* LIBZMQ-532 (Windows) critical section not released on error
|
|
|
|
* LIBZMQ-569 Detect OpenPGM 5.2 system library
|
|
|
|
* LIBZMQ-563 Subscribers sometimes stopped receiving messages (aka LIBZMQ-541)
|
|
|
|
* LIBZMQ-XXX Added support for Travis Continuous Integration
|
|
|
|
* LIBZMQ-XXX Several improvements to MSVC support
|
|
|
|
|
|
|
|
|
|
|
|
0MQ version 3.2.3 stable, released on 2013/05/02
|
|
|
|
================================================
|
|
|
|
|
|
|
|
Issues addressed in this release
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
* LIBZMQ-526 Assertion failure "Invalid argument (tcp_connecter.cpp:285)"
|
|
|
|
* LIBZMQ-446 Setting the DSCP bits by default causes CAP_NET_ADMIN error
|
|
|
|
* LIBZMQ-496 Crash on heavy socket opening/closing: Device or resource busy (mutex.hpp:90)
|
|
|
|
* LIBZMQ-462 test_connect_delay fails at test_connect_delay.cpp:80
|
|
|
|
* LIBZMQ-497 Messages getting dropped
|
|
|
|
* LIBZMQ-488 signaler.cpp leaks the win32 Event Handle
|
|
|
|
* LIBZMQ-476 zmq_disconnect has no effect for inproc sockets
|
|
|
|
* LIBZMQ-475 zmq_disconnect does not sent unsubscribe messages
|
|
|
|
|
|
|
|
|
2013-02-18 21:14:14 +01:00
|
|
|
0MQ version 3.2.2 stable, released on 2012/11/23
|
|
|
|
================================================
|
|
|
|
|
|
|
|
Issues addressed in this release
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
* LIBZMQ-384 No meta data for ZMQ_EVENT_DISCONNECTED monitor event
|
|
|
|
* LIBZMQ-414 Error in ARM/Thumb2 assembly (atomic_ptr.hpp)
|
|
|
|
* LIBZMQ-417 zmq_assert (!incomplete_in) in session_base.cpp 228
|
|
|
|
* LIBZMQ-447 socket_base_t::recv() packet loss and memory leak at high receiving rate
|
|
|
|
* LIBZMQ-448 Builds fail on older versions of GCC
|
|
|
|
* LIBZMQ-449 Builds fail on AIX
|
|
|
|
* LIBZMQ-450 lt-test_monitor: fails with assertion at test_monitor.cpp:81
|
|
|
|
* LIBZMQ-451 ZMQ_ROUTER_MANDATORY blocks forever
|
|
|
|
* LIBZMQ-452 test_connect_delay.cpp:175:12: error: 'sleep' was not declared in this scope
|
|
|
|
* LIBZMQ-458 lt-test_router_mandatory fails with assertion at test_router_mandatory.cpp:53
|
|
|
|
* LIBZMQ-459 Assertion failed: encoder (stream_engine.cpp:266
|
|
|
|
* LIBZMQ-464 PUB socket with HWM set leaks memory
|
|
|
|
* LIBZMQ-465 PUB/SUB results in 80-90% of CPU load
|
|
|
|
* LIBZMQ-468 ZMQ_XPUB_VERBOSE & unsubscribe
|
|
|
|
* LIBZMQ-472 Segfault in zmq_poll in REQ to ROUTER dialog
|
|
|
|
|
2013-09-20 13:28:16 +02:00
|
|
|
|
2012-10-15 05:52:54 +02:00
|
|
|
0MQ version 3.2.1 (RC2), released on 2012/10/15
|
|
|
|
===============================================
|
|
|
|
|
|
|
|
Issues addressed in this release
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
* Fixed issue xxx - handle insufficient resources on accept() properly.
|
|
|
|
* Fixed issue 443 - added ZMQ_XPUB_VERBOSE setsocket option.
|
|
|
|
* Fixed issue 433 - ZeroMQ died on receiving EPIPE
|
|
|
|
* Fixed issue 423 - test_pair_tcp hangs
|
|
|
|
* Fixed issue 416 - socket_base: fix 'va_list' has not been declared error
|
|
|
|
* Fixed issue 409 - Pub-sub interoperability between 2.x and 3.x.
|
|
|
|
* Fixed issue 404 - zmq_term can not safely be re-entered with pgm transport
|
|
|
|
* Fixed issue 399 - zmq_ctx_set_monitor callback is not works properly
|
|
|
|
* Fixed issue 393 - libzmq does not build on Android (socklen_t signed comparison)
|
|
|
|
* Fixed issue 392 - Interaction with pyzmq on Android
|
|
|
|
* Fixed issue 389 - Assertion failure in mtrie.cpp:317
|
|
|
|
* Fixed issue 388 - tests/test_monitor.cpp has no newline at EOF (causes compile error)
|
|
|
|
* Fixed issue 387 - "sa_family_t sa_family;" in pgm_socket.cpp is unused variable
|
|
|
|
* Fixed issue 385 - Rework ZMQ_FAIL_UNROUTABLE socket option to actually work
|
|
|
|
* Fixed issue 382 - Current libzmq doesn't compile on Android NDK
|
|
|
|
* Fixed issue 377 - ZeroMQ will not build on Windows with OpenPGM
|
|
|
|
* Fixed issue 375 - error: unused variable 'sa_family'
|
|
|
|
* Fixed issue 373 - Unable to build libzmq/zeromq3.x on AIX7
|
|
|
|
* Fixed issue 372 - Unable to build libzmq/zeromq3.x on HPUX 11iv3
|
|
|
|
* Fixed issue 371 - Unable to build libzmq/zeromq3.x on RHEL5/SLES10
|
|
|
|
* Fixed issue 329 - wsa_error_to_errno() calls abort() on WSAEACCES
|
|
|
|
* Fixed issue 309 - Assertion failed: options.recv_identity (socket_base.cpp:864)
|
|
|
|
* Fixed issue 211 - Assertion failed: msg_->flags & ZMQ_MSG_MORE (rep.cpp:81)
|
|
|
|
|
|
|
|
API changes
|
|
|
|
-----------
|
|
|
|
|
|
|
|
* zmq_device () deprecated and replaced by zmq_proxy ().
|
|
|
|
* zmq_ctx_set_monitor () replaced by zmq_socket_monitor ().
|
|
|
|
* ZMQ_ROUTER_BEHAVIOR/ZMQ_FAIL_UNROUTABLE renamed experimentally to
|
|
|
|
ZMQ_ROUTER_MANDATORY.
|
|
|
|
|
|
|
|
|
2012-09-08 08:57:48 +02:00
|
|
|
0MQ version 3.2.0 (RC1), released on 2012/06/05
|
|
|
|
===============================================
|
|
|
|
|
|
|
|
Bug fixes
|
|
|
|
---------
|
|
|
|
|
|
|
|
* Fixed issue 264 - Potential bug with linger, messages dropped during
|
|
|
|
socket close.
|
|
|
|
|
|
|
|
* Fixed issue 293 - libzmq doesn't follow the ZMTP/1.0 spec (did not
|
|
|
|
set reserved bits to 0).
|
|
|
|
|
|
|
|
* Fixed issue 303 - Assertion failure in pgm_sender.cpp:102.
|
|
|
|
|
|
|
|
* Fixed issue 320 - Assertion failure in connect_session.cpp:96 when
|
|
|
|
connecting epgm to an invalid endpoint.
|
|
|
|
|
|
|
|
* Fixed issue 325 - Assertion failure in xrep.cpp:93, when two sockets
|
|
|
|
connect using the same identity.
|
|
|
|
|
|
|
|
* Fixed issue 327 - Assertion failure in mtrie.cpp:246, when
|
|
|
|
unsubscribing from channel.
|
|
|
|
|
|
|
|
* Fixed issue 346 - Assertion failure in signaler.cpp:155, when using a
|
|
|
|
closed socket.
|
|
|
|
|
|
|
|
* Fixed issue 328 - unsubscribe wrongly clears multiple subscriptions.
|
|
|
|
|
|
|
|
* Fixed issue 330 - IPC listener does not remove unix domain stream file
|
|
|
|
when terminated.
|
|
|
|
|
|
|
|
* Fixed issue 334 - Memory leak in session_base.cpp:59.
|
|
|
|
|
|
|
|
* Fixed issue 369 - ROUTER cannot close/reopen while DEALER connected.
|
|
|
|
|
|
|
|
Operating systems
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
* Fixed issue 301 - HPUX 11iv2 - build fails, CLOCK_MONOTONIC
|
|
|
|
undefined.
|
|
|
|
|
|
|
|
* Fixed issue 324 - OS/X - build fails, ECANTROUTE undefined.
|
|
|
|
|
|
|
|
* Fixed issue 368 - Solaris / Sun C++ - build fails, no insert method
|
|
|
|
in multimap classes.
|
|
|
|
|
|
|
|
* Fixed issue 366 - Windows - ports not freed after crash.
|
|
|
|
|
|
|
|
* Fixed issue 355 - Windows - build fails, MSVC solution file is out of
|
|
|
|
date.
|
|
|
|
|
|
|
|
* Fixed issue 331 - FreeBSD 8 and 9 - getaddrinfo fails with
|
|
|
|
EAI_BADFLAGS on AI_V4MAPPED flag.
|
|
|
|
|
|
|
|
* Fixed issue xxx - Added support for WinCE.
|
|
|
|
|
|
|
|
Performance
|
|
|
|
-----------
|
|
|
|
|
|
|
|
* Fixed issue xxx - Implemented atomic operations for ARMv7a (runs 15-20% faster).
|
|
|
|
|
|
|
|
API changes
|
|
|
|
-----------
|
|
|
|
|
|
|
|
* Fixed issue 337 - Cleaned-up context API:
|
|
|
|
|
|
|
|
zmq_ctx_new() - create new context (will deprecate zmq_init)
|
|
|
|
zmq_ctx_destroy() - destroy context (will deprecate zmq_term)
|
|
|
|
zmq_ctx_set() - set context property
|
|
|
|
zmq_ctx_get() - get context property
|
|
|
|
|
|
|
|
* Fixed issue xxx - Cleaned-up message API:
|
|
|
|
|
|
|
|
zmq_msg_send() - send a message (will deprecate zmq_sendmsg)
|
|
|
|
zmq_msg_recv() - receive a message (will deprecate zmq_recvmsg)
|
|
|
|
zmq_msg_more() - indicate whether this is final part of message
|
|
|
|
zmq_msg_get() - get message property
|
|
|
|
zmq_msg_set() - set message property
|
|
|
|
|
|
|
|
* Fixed issue xxx - Added context monitoring API:
|
|
|
|
|
|
|
|
zmq_ctx_set_monitor() - configure monitor callback.
|
|
|
|
|
|
|
|
* Fixed issue xxx - Added unbind/disconnect API:
|
|
|
|
|
|
|
|
zmq_unbind() - unbind socket.
|
|
|
|
zmq_disconnect() - disconnect socket.
|
|
|
|
|
|
|
|
* Fixed issue xxx - Added ZMQ_TCP_ACCEPT_FILTER setsockopt() for listening TCP sockets.
|
|
|
|
|
|
|
|
* Fixed issue 336 - Removed sys: transport.
|
|
|
|
|
|
|
|
* Fixed issue 333 - Added zmq_device function back to API (was removed
|
|
|
|
in 3.0).
|
|
|
|
|
|
|
|
* Fixed issue 340 - Add support for MAX_SOCKETS to new context API.
|
|
|
|
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
OMQ version 3.1.0 (beta), released on 2011/12/18
|
2010-12-01 11:55:56 +01:00
|
|
|
================================================
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
General information
|
|
|
|
-------------------
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Based on community consensus, the 0MQ 3.1.x release reverts a number of
|
|
|
|
features introduced in version 3.0. The major reason for these changes is
|
|
|
|
improving backward compatibility with 0MQ 2.1.x.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Development of the 0MQ 3.0.x series will be discontinued, and users are
|
|
|
|
encouraged to upgrade to 3.1.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
The 0MQ 3.1.x releases use ABI version 3.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Reverted functionality
|
|
|
|
----------------------
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
The following functionality present in 0MQ 3.0 has been reverted:
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Wire format changes. The 0MQ 3.1 wire format is identical to that of 0MQ
|
|
|
|
2.1.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* LABELs and COMMANDs have been removed.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Explicit identies are re-introduced, however they can be used only for
|
|
|
|
explicit routing, not for durable sockets.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* The ZMQ_ROUTER and ZMQ_DEALER socket types are once again aliases for
|
|
|
|
ZMQ_XREQ and ZMQ_XREP.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
New functionality
|
|
|
|
-----------------
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* The zmq_getmsgopt() function has been introduced.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Experimental IPv6 support has been introduced. This is disabled by
|
|
|
|
default, see the zmq_setsockopt() documentation for enabling it.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Other changes
|
|
|
|
-------------
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* The default HWM for all socket types has been set to 1000.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Many bug fixes.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
|
|
|
Building
|
|
|
|
--------
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* The dependency on libuuid has been removed.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Support for building on Android, and with MSVC 10 has been added.
|
2010-12-01 11:55:56 +01:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
0MQ version 3.0.0 (alpha), released on 2011/07/12
|
|
|
|
=================================================
|
2010-10-15 19:37:41 +02:00
|
|
|
|
|
|
|
New functionality
|
|
|
|
-----------------
|
2010-09-04 18:38:20 +02:00
|
|
|
|
2012-05-23 00:45:15 +02:00
|
|
|
* A zmq_ctx_set_monitor() API to register a callback / event sink for changes
|
|
|
|
in socket state.
|
2012-05-04 03:32:46 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* POSIX-compliant zmq_send and zmq_recv introduced (uses raw buffer
|
|
|
|
instead of message object).
|
2010-09-04 18:38:20 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_MULTICAST_HOPS socket option added. Sets the appropriate field in
|
|
|
|
IP headers of PGM packets.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Subscription forwarding. Instead of filtering on consumer, the
|
|
|
|
subscription is moved as far as possible towards the publisher and
|
|
|
|
filtering is done there.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_XPUB, ZMQ_XSUB introduced. Allow to create subscription-
|
|
|
|
forwarding-friendly intermediate devices.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Add sockopt ZMQ_RCVTIMEO/ZMQ_SNDTIMEO. Allow to set timeout for
|
|
|
|
blocking send/recv calls.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* A new LABEL flag was added to the wire format. The flag distinguishes
|
|
|
|
message parts used by 0MQ (labels) from user payload message parts.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* There is a new wire format for the REQ/REP pattern. First, the empty
|
|
|
|
bottom-of-the-stack message part is not needed any more, the LABEL
|
|
|
|
flag is used instead. Secondly, peer IDs are 32-bit integers rather
|
|
|
|
than 17-byte UUIDs.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* The REQ socket now drops duplicate replies.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Outstanding requests & replies associated with a client are dropped
|
|
|
|
when the clients dies. This is a performance optimisation.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Introduced ZMQ_ROUTER and ZMQ_DEALER sockets. These mimic the
|
|
|
|
functionality of ZMQ_ROUTER and ZMQ_DEALER in 0MQ/2.1.x. Guarantees
|
|
|
|
backward compatibility for exsiting code.
|
2010-08-25 12:09:55 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Removed dependency on OS socketpair buffer size. No more asserts in
|
|
|
|
mailbox.cpp because of low system limit of sockepair buffer size.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
API improvements
|
|
|
|
----------------
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Obsolete constants ZMQ_UPSTREAM and ZMQ_DOWNSTREAM removed. Use
|
|
|
|
ZMQ_PUSH and ZMQ_PULL instead.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Timeout in zmq_poll is in milliseconds instead of microseconds. This
|
|
|
|
makes zmq_poll() compliant with POSIX poll()
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_MCAST_LOOP removed. There's no support for multicast over
|
|
|
|
loopback any more. Use IPC or TCP isntead.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* zmq_send/zmq_recv was renamed zmq_sendmsg/zmq_recvmsg.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_RECOVERY_IVL and ZMQ_RECOVERY_IVL_MSEC reconciled. The new option
|
|
|
|
is named ZMQ_RECOVERY_IVL and the unit is milliseconds.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Option types changed. Most of the numeric types are now represented
|
|
|
|
as 'int'.
|
2010-08-25 11:43:52 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_HWM split into ZMQ_SNDHWM and ZMQ_RCVHWM. This makes it possible
|
|
|
|
to control message flow separately for each direction.
|
2010-06-04 17:12:51 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_NOBLOCK renamed ZMQ_DONTWAIT. That makes it POSIX-compliant.
|
2010-06-04 19:20:37 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Less is More
|
2010-06-04 19:20:37 +02:00
|
|
|
------------
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Pre-built devices and zmq_device() removed. Should be made available
|
|
|
|
as a separate project(s).
|
2010-06-04 19:20:37 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* ZMQ_SWAP removed. Writing data to disk should be done on top of 0MQ,
|
|
|
|
on inside it.
|
2010-06-04 19:20:37 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* C++ binding removed from the core. Now it's a separate project, same
|
|
|
|
as any other binding.
|
2010-06-04 19:27:55 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Bug fixes
|
2010-06-04 18:49:55 +02:00
|
|
|
---------
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Many.
|
2010-06-04 17:12:51 +02:00
|
|
|
|
|
|
|
Building
|
|
|
|
--------
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Make pkg-config dependency conditional.
|
2010-06-04 17:12:51 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Distribution
|
|
|
|
------------
|
2010-06-04 17:12:51 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* Removed Debian packaging, which is now available at packages.debian.org
|
|
|
|
or via apt-get.
|
2010-06-04 17:12:51 +02:00
|
|
|
|
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
Older versions
|
|
|
|
==============
|
2010-06-04 17:12:51 +02:00
|
|
|
|
2011-12-18 11:41:45 +01:00
|
|
|
* See NEWS in ZeroMQ 2.1.x repository at http://github.com/zeromq/zeromq2-1.
|