Commit Graph

  • baeabcb175 Accepting request 1119932 from devel:libraries:c_c++ factory Ana Guerrero 2023-10-24 18:07:51 +0000
  • 15a20b92de fix license reference Adam Majer 2023-10-24 09:32:20 +0000
  • ceae64d561 - qemu-user.patch: upstreamed, removed Adam Majer 2023-10-24 09:23:49 +0000
  • 0697d1544b - update to 4.3.5: * Relicensing from LGPL-3.0+ (with custom exceptions) to MPL-2.0 is now complete. libzmq is now distributed under the Mozilla Public License 2.0. Relicensing grants have been collected from all relevant authors, and some functionality has been clean-room reimplemented where that was not possible. In layman terms, the new license provides the same rights and obligations as before. Source files are now tagged using the SPDX license identifier format. Details of the relicensing process can be seen at: #2376 Relicensing grants have been archived at: https://github.com/rlenferink/libzmq-relicense A special thanks to everybody who helped with this long and difficult task, with the process, the reimplementations, the collections and everything else. * New DRAFT (see NEWS for 4.2.0) socket options: ZMQ_BUSY_POLL will set the SO_BUSY_POLL socket option on the underlying sockets, if it is supported. ZMQ_HICCUP_MSG will send a message when the peer has been disconnected. ZMQ_XSUB_VERBOSE_UNSUBSCRIBE will configure a socket to pass all unsubscription messages, including duplicated ones. ZMQ_TOPICS_COUNT will return the number of subscribed topics on a PUB/SUB socket. ZMQ_NORM_MODE, ZMQ_NORM_UNICAST_NACK, ZMQ_NORM_BUFFER_SIZE, ZMQ_NORM_SEGMENT_SIZE, ZMQ_NORM_BLOCK_SIZE, ZMQ_NORM_NUM_PARITY, ZMQ_NORM_NUM_AUTOPARITY and ZMQ_NORM_PUSH to control various aspect of NORM sockets. See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details. * New DRAFT (see NEWS for 4.2.0) zmq_ppoll APIs was added that differs from zmq_poll in the same way that ppoll differs from poll. See doc/zmq_ppoll.txt for details. * Various bug fixes and performance improvements. Adam Majer 2023-10-24 09:17:27 +0000
  • 427dbca13c Accepting request 1060587 from devel:libraries:c_c++ Dominique Leuenberger 2023-01-25 16:42:28 +0000
  • 37fee38c72 Accepting request 1060458 from home:Andreas_Schwab:Factory Adam Majer 2023-01-24 08:32:07 +0000
  • 08752b144a Accepting request 997418 from devel:libraries:c_c++ Richard Brown 2022-08-17 16:16:46 +0000
  • e6cf9c0c8d Accepting request 995167 from home:dirkmueller:Factory Adam Majer 2022-08-15 14:28:43 +0000
  • 7a74712c04 Accepting request 903043 from devel:libraries:c_c++ Dominique Leuenberger 2021-07-02 11:26:46 +0000
  • 46ee3b358e Accepting request 902884 from home:mcepl:branches:devel:libraries:c_c++ Adam Majer 2021-06-29 10:06:27 +0000
  • aba74737b0 Accepting request 866585 from devel:libraries:c_c++ Dominique Leuenberger 2021-02-01 12:25:11 +0000
  • 072b551fc2 Accepting request 866413 from home:dirkmueller:branches:devel:libraries:c_c++ Adam Majer 2021-01-25 12:41:17 +0000
  • 934ab6ebfa Accepting request 839566 from devel:libraries:c_c++ Dominique Leuenberger 2020-11-30 08:52:56 +0000
  • 900467cba6 Add missing bug numbers to changelog Adam Majer 2020-10-05 12:37:13 +0000
  • 3e3b37d5cc - New upstream version 4.3.3: * Denial-of-Service on CURVE/ZAP-protected servers by unauthenticated clients. (CVE-2020-15166, bsc#1176116) If a raw TCP socket is opened and connected to an endpoint that is fully configured with CURVE/ZAP, legitimate clients will not be able to exchange any message. Handshakes complete successfully, and messages are delivered to the library, but the server application never receives them. For more information see the security advisory: https://github.com/zeromq/libzmq/security/advisories/GHSA-25wp-cf8g-938m * Stack overflow on server running PUB/XPUB socket (CURVE disabled). The PUB/XPUB subscription store (mtrie) is traversed using recursive function calls. In the remove (unsubscription) case, the recursive calls are NOT tail calls, so even with optimizations the stack grows linearly with the length of a subscription topic. Topics are under the control of remote clients - they can send a subscription to arbitrary length topics. An attacker can thus cause a server to create an mtrie sufficiently large such that, when unsubscribing, traversal will cause a stack overflow. For more information see the security advisory: https://github.com/zeromq/libzmq/security/advisories/GHSA-qq65-x72m-9wr8 * Memory leak in PUB server induced by malicious client(s) without CURVE/ZAP. Messages with metadata are never processed by PUB sockets, but the metadata is kept referenced in the PUB object and never freed. For more information see the security advisory: https://github.com/zeromq/libzmq/security/advisories/GHSA-4p5v-h92w-6wxw * Memory leak in client induced by malicious server(s) without CURVE/ZAP. When a pipe processes a delimiter and is already not in active state but still has an unfinished message, the message is leaked. For more information see the security advisory: https://github.com/zeromq/libzmq/security/advisories/GHSA-wfr2-29gj-5w87 * Heap overflow when receiving malformed ZMTP v1 packets (CURVE disabled). Adam Majer 2020-09-07 17:11:05 +0000
  • 81ab6a6776 Accepting request 714767 from devel:libraries:c_c++ Dominique Leuenberger 2019-07-16 06:38:31 +0000
  • beba3a3d1d Accepting request 714173 from home:vitezslav_cizek:branches:devel:libraries:c_c++ Dirk Mueller 2019-07-12 06:23:33 +0000
  • 895e0bcb2a Accepting request 665699 from devel:libraries:c_c++ Dominique Leuenberger 2019-01-25 21:41:20 +0000
  • 2ad4cc8a87 - New upstream version 4.3.1: * CVE-2019-6250: A vulnerability has been found that would allow attackers to direct a peer to jump to and execute from an address indicated by the attacker. (bsc#1121717) * fixed race condition in ZMQ_PUSH when quickly disconnecting and reconnecting causes last part of multi-part message to get "stuck" and resent by mistake to the new socket. For complete set of changes, see, https://github.com/zeromq/libzmq/releases/tag/v4.3.1 https://github.com/zeromq/libzmq/releases/tag/v4.3.0 Adam Majer 2019-01-14 10:31:33 +0000
  • fcc5a80f75 Accepting request 621887 from devel:libraries:c_c++ Dominique Leuenberger 2018-07-28 10:36:07 +0000
  • e57b1b3381 Accepting request 621882 from home:dimstar:Factory Ismail Dönmez 2018-07-10 12:25:12 +0000
  • 0d449fdcce Accepting request 591862 from devel:libraries:c_c++ Dominique Leuenberger 2018-03-28 10:27:00 +0000
  • 00cbf5112b Accepting request 590995 from home:adamm:branches:devel:libraries:c_c++ Adam Majer 2018-03-28 07:57:42 +0000
  • 878c7280c9 Accepting request 590596 from devel:libraries:c_c++ Dominique Leuenberger 2018-03-24 15:16:21 +0000
  • 07b415c02e Accepting request 589935 from home:adamm:branches:devel:libraries:c_c++ Marcus Meissner 2018-03-23 09:27:20 +0000
  • e5611b81d3 Accepting request 557271 from devel:libraries:c_c++ Dominique Leuenberger 2017-12-18 07:59:15 +0000
  • 8585a2ff28 Accepting request 556904 from home:adamm:branches:devel:libraries:c_c++ Dirk Mueller 2017-12-15 08:54:39 +0000
  • 328feef847 Accepting request 500411 from devel:libraries:c_c++ Dominique Leuenberger 2017-06-02 08:33:47 +0000
  • 93774553bd - disable silent compilation flags Adam Majer 2017-06-01 13:07:15 +0000
  • ad28aab1c0 - remove_werror.patch: don't use -Werror in compiler flags Adam Majer 2017-06-01 11:31:24 +0000
  • 5dd191ecf5 Accepting request 481814 from devel:libraries:c_c++ Dominique Leuenberger 2017-03-21 21:51:47 +0000
  • 59cf002c2c - New upstream version 4.2.2 * fix SO_NOSIGPIPE and connection closing by peer race condition * fix IPv4-in-IPv6 mapped addresses parsing error * zmq_z85_decode did validate its input. The function has been fixed to correctly follow RFC32 and return NULL if the input is invalid. * for complete changelog see https://github.com/zeromq/libzmq/releases/tag/v4.2.2 Adam Majer 2017-03-21 14:42:55 +0000
  • 6a812bbd4a Accepting request 455238 from devel:libraries:c_c++ Dominique Leuenberger 2017-02-09 10:16:26 +0000
  • dd904333ca Accepting request 454472 from home:jengelh:branches:devel:libraries:c_c++ Marcus Meissner 2017-02-07 12:12:22 +0000
  • dde9dacb4d Accepting request 448453 from devel:libraries:c_c++ Dominique Leuenberger 2017-01-10 09:45:10 +0000
  • 09074888e6 Accepting request 448356 from home:adamm:branches:devel:libraries:c_c++ Dirk Mueller 2017-01-02 08:54:09 +0000
  • 00905e1ebf Accepting request 439111 from devel:libraries:c_c++ Dominique Leuenberger 2016-11-11 13:34:27 +0000
  • 669dab446c Accepting request 438778 from home:mvyskocil:branches:devel:libraries:c_c++ Michal Vyskocil 2016-11-08 07:43:16 +0000
  • f2b19d64dd Accepting request 405474 from devel:libraries:c_c++ Dominique Leuenberger 2016-07-01 08:00:35 +0000
  • 0972a0ff83 Accepting request 405465 from home:jengelh:branches:devel:libraries:c_c++ Ismail Dönmez 2016-06-29 13:27:53 +0000
  • d99d5f0b58 - skip testsuite on qemu-linux-user Dirk Mueller 2016-06-28 15:31:03 +0000
  • 26873f0577 Accepting request 403389 from devel:libraries:c_c++ Dominique Leuenberger 2016-06-19 11:54:17 +0000
  • 36f9dd2eff - Ismail Dönmez 2016-06-18 17:21:33 +0000
  • ad5e293e03 Accepting request 402954 from home:adamm:branches:devel:libraries:c_c++ Ismail Dönmez 2016-06-18 15:57:58 +0000
  • 6f4807567b Accepting request 399138 from devel:libraries:c_c++ Dominique Leuenberger 2016-06-02 07:38:53 +0000
  • c2b417b022 Accepting request 399056 from home:adamm:branches:devel:libraries:c_c++ Marcus Rueckert 2016-05-31 13:39:40 +0000
  • 901a0704cc Accepting request 342526 from devel:libraries:c_c++ Dominique Leuenberger 2015-11-05 10:36:01 +0000
  • d32465c660 - Add libsodium-init.patch to handle sodium_init() error. Ismail Dönmez 2015-11-05 09:48:04 +0000
  • 96be459257 Accepting request 338427 from devel:libraries:c_c++ Stephan Kulow 2015-10-17 14:39:02 +0000
  • 29cd708838 - Re-enable %check Ismail Dönmez 2015-10-06 11:29:07 +0000
  • 201f151d4f Accepting request 334956 from home:cyberiad:branches:devel:languages:python3 Ismail Dönmez 2015-10-02 09:52:38 +0000
  • 7b30a81df7 Accepting request 332964 from devel:libraries:c_c++ Stephan Kulow 2015-09-30 03:51:00 +0000
  • f4a5930afe Accepting request 332962 from home:tampakrap:branches:devel:libraries:c_c++ Marcus Rueckert 2015-09-22 13:32:24 +0000
  • 912ab3de22 Accepting request 332960 from home:tampakrap:branches:devel:libraries:c_c++ Marcus Rueckert 2015-09-22 13:14:38 +0000
  • ced67fb64a Accepting request 316587 from devel:libraries:c_c++ Stephan Kulow 2015-08-05 04:49:54 +0000
  • 1397552229 - Version bump to 4.1.2 bnc#937912: * Added explicit reference to static link exception in every source file. * Bumped ABI version to 5:0:0 since 4.1.x changed the ABI. * Fixed STDINT event interface macros to work with CZMQ 3.0. * Fixed installation of man pages when BUILD_DOC is not set. * Fixed #1428 - regression on single-socket proxies. Tomáš Chvátal 2015-07-14 08:42:28 +0000
  • 3086b1f461 Accepting request 312208 from devel:libraries:c_c++ Stephan Kulow 2015-07-05 16:01:39 +0000
  • d7c54ccc2a Accepting request 312206 from home:mvyskocil:branches:devel:libraries:c_c++ Michal Vyskocil 2015-06-16 06:11:40 +0000
  • 22fa160181 Accepting request 311122 from home:mvyskocil:branches:devel:libraries:c_c++ Michal Vyskocil 2015-06-08 09:14:35 +0000
  • a51294d753 Accepting request 311103 from home:mvyskocil:branches:devel:libraries:c_c++ Tomáš Chvátal 2015-06-08 07:04:16 +0000
  • 14d1d238d4 Accepting request 309537 from devel:libraries:c_c++ Dominique Leuenberger 2015-06-02 08:09:05 +0000
  • 5e56b7eab6 * Also fixes bnc#931978 CVE-2014-9721 Tomáš Chvátal 2015-06-01 08:29:20 +0000
  • a4c8c48859 Accepting request 283227 from devel:libraries:c_c++ Dominique Leuenberger 2015-01-29 08:58:04 +0000
  • 3015523ac3 Accepting request 283160 from home:michel_mno:branches:devel:libraries:c_c++ Ismail Dönmez 2015-01-28 18:24:00 +0000
  • 1b57ab36bd Accepting request 263329 from devel:libraries:c_c++ Dominique Leuenberger 2014-12-01 13:00:50 +0000
  • 8839e457da - Split the curve-keygen binary to separate subpkg bnc#907584 * Add conflicts to new supackage Tomáš Chvátal 2014-11-28 11:41:15 +0000
  • 613400e1f1 Accepting request 262426 from devel:libraries:c_c++ Dominique Leuenberger 2014-11-24 10:08:41 +0000
  • 56d6a795aa - Gracely continue when checks fail Tomáš Chvátal 2014-11-13 08:16:24 +0000
  • e84c16aa05 Accepting request 256838 from devel:libraries:c_c++ Stephan Kulow 2014-10-23 12:20:13 +0000
  • f2df4d109c - Remove sle11 support, not really needed for us here - Add libsodium dep for testsuite where possible - Version bump to 4.0.5 fixes bnc#898917 CVE-2014-7202 and CVE-2014-7203: * Fixed #1191; CURVE mechanism does not verify short term nonces. * Fixed #1190; stream_engine is vulnerable to downgrade attacks. * Fixed #1088; assertion failure for WSAENOTSOCK on Windows. * Fixed #1015; race condition while connecting inproc sockets. * Fixed #994; bump so library number to 4.0.0 * Fixed #939, assertion failed: !more (fq.cpp:99) after many ZAP requests. * Fixed #872; lost first part of message over inproc://. * Fixed #797, keep-alive on Windows. Tomáš Chvátal 2014-10-16 08:42:54 +0000
  • 3963e05d34 Accepting request 233559 from devel:libraries:c_c++ Stephan Kulow 2014-05-13 18:50:20 +0000
  • e87abd0e20 - Cleanup to remove SLE10 and older mentions - Remove other distros from rules as we don't build for them anyway. - Cleanup with spec-cleaner. - Enable tests. Tomáš Chvátal 2014-05-12 10:47:34 +0000
  • 7e89ad61e2 Accepting request 227758 from devel:libraries:c_c++ Stephan Kulow 2014-03-28 11:15:02 +0000
  • a4f2d4c38a - Move to 'download_files' source service which is in better shap and easier to use Sascha Peilicke 2014-03-27 13:42:57 +0000
  • d9e3e5e57f Accepting request 227754 from home:mvyskocil:branches:devel:libraries:c_c++ Sascha Peilicke 2014-03-27 13:41:53 +0000
  • 8432d0b7cb Accepting request 211655 from devel:libraries:c_c++ Stephan Kulow 2013-12-19 20:39:07 +0000
  • 96344dfbca localonly mode for _service, add targz Michal Vyskocil 2013-12-19 09:19:32 +0000
  • 5204cdd089 Accepting request 210754 from home:dbahi:branches:devel:libraries:c_c++ Michal Vyskocil 2013-12-13 13:55:38 +0000
  • 37ec7a3aa1 Accepting request 200164 from devel:libraries:c_c++ Stephan Kulow 2013-09-23 13:55:04 +0000
  • d8c90473e5 Accepting request 199941 from home:posophe:branches:devel:libraries:c_c++ Ismail Dönmez 2013-09-23 10:11:07 +0000
  • 327754db34 Accepting request 142622 from devel:libraries:c_c++ Stephan Kulow 2012-11-25 14:07:43 +0000
  • 5afeffde47 Accepting request 142600 from home:darix:branches:home:mtomaschewski:syslog Marcus Rueckert 2012-11-23 17:22:47 +0000
  • 7a0322b1e5 Accepting request 104020 from devel:libraries:c_c++ Stephan Kulow 2012-02-14 18:10:18 +0000
  • f6839976c6 Remove redundant tags/sections Jan Engelhardt 2012-01-28 21:42:15 +0000
  • d16fb0116e Accepting request 85265 from devel:libraries:c_c++ Sascha Peilicke 2011-09-28 12:43:21 +0000
  • a58c7803fd - Fixed license to LGPL-3.0+ (SPDX style) Sascha Peilicke 2011-09-28 07:04:35 +0000
  • c82180fbe2 Accepting request 85003 from network:messaging Stephan Kulow 2011-09-27 07:39:43 +0000