syslog-ng 3.4.0rc2 has been released
------------------------------------------------------------------------------ PACKAGE : syslog-ng VERSION : 3.4.0rc2 SUMMARY : new stable release candidate DATE : Jan 17, 2013 ------------------------------------------------------------------------------ DESCRIPTION: A new release candidate of syslog-ng Open Source Edition (3.4.0rc2) has been released. For latest fixes in the 3.4.x feature branch you are recommended to upgrade to this version. This release candidate is intended to become the new stable release by the end of the month. CHANGES: 3.4.0rc2 Wed, 17 Jan 2013 14:00:00 +0100 Features ======== * The dbparser() parser gained support for the template() option, which allows one to have more control (in an easy, and straightforward way) over what data the parser operates on. Bugfixes ======== * Building the AMQP destination can now be properly disabled. * The bundled ivykis was upgraded from the 0.30 stable branch to 0.36, for platform support and other improvements. * Fix the test suite when --with-embedded-crypto is in use. * The LLADDR parser was fixed, formerly it required the exact number of components to be present, and had parts and count values backwards. [#216] Credits: ======== syslog-ng is developed as a community project, and as such it relies on volunteers to do the work necessarily to produce syslog-ng. Reporting bugs, testing changes, writing code or simply providing feedback are all important contributions, so please if you are a user of syslog-ng, contribute. These people have helped in this release: Balazs Scheidler <bazsi@balabit.hu> Ben Lentz <blentz@cswg.com> Evan Rempel <erempel@uvic.ca> Gergely Nagy <algernon@balabit.hu> Jose Pedro Oliveira <jpo@di.uminho.pt> Peter Czanik <czanik@balabit.hu> DOWNLOAD: You can download the source or binary packages from: http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/... The documentation of the syslog-ng Open Source Edition is available in The syslog-ng Open Source Edition Administrator's Guide at http://www.balabit.com/support/documentation/
The download page for 3.4rc1 had eventlog 0.2.13 The download page for 3.4rc2 has eventlog 0.2.12 That seems to be an oversight. Evan. On 01/17/2013 07:13 AM, devel@balabit.hu wrote:
------------------------------------------------------------------------------ PACKAGE : syslog-ng VERSION : 3.4.0rc2 SUMMARY : new stable release candidate DATE : Jan 17, 2013 ------------------------------------------------------------------------------
DESCRIPTION:
A new release candidate of syslog-ng Open Source Edition (3.4.0rc2) has been released. For latest fixes in the 3.4.x feature branch you are recommended to upgrade to this version.
This release candidate is intended to become the new stable release by the end of the month.
CHANGES:
3.4.0rc2 Wed, 17 Jan 2013 14:00:00 +0100
Features ======== * The dbparser() parser gained support for the template() option, which allows one to have more control (in an easy, and straightforward way) over what data the parser operates on.
Bugfixes ======== * Building the AMQP destination can now be properly disabled.
* The bundled ivykis was upgraded from the 0.30 stable branch to 0.36, for platform support and other improvements.
* Fix the test suite when --with-embedded-crypto is in use.
* The LLADDR parser was fixed, formerly it required the exact number of components to be present, and had parts and count values backwards. [#216]
Credits: ======== syslog-ng is developed as a community project, and as such it relies on volunteers to do the work necessarily to produce syslog-ng.
Reporting bugs, testing changes, writing code or simply providing feedback are all important contributions, so please if you are a user of syslog-ng, contribute.
These people have helped in this release:
Balazs Scheidler <bazsi@balabit.hu> Ben Lentz <blentz@cswg.com> Evan Rempel <erempel@uvic.ca> Gergely Nagy <algernon@balabit.hu> Jose Pedro Oliveira <jpo@di.uminho.pt> Peter Czanik <czanik@balabit.hu>
DOWNLOAD:
You can download the source or binary packages from:
http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/...
The documentation of the syslog-ng Open Source Edition is available in The syslog-ng Open Source Edition Administrator's Guide at
http://www.balabit.com/support/documentation/
______________________________________________________________________________ Member info: https://lists.balabit.hu/mailman/listinfo/syslog-ng Documentation: http://www.balabit.com/support/documentation/?product=syslog-ng FAQ: http://www.balabit.com/wiki/syslog-ng-faq
-- Evan Rempel erempel@uvic.ca Senior Systems Administrator 250.721.7691 Data Centre Services, University Systems, University of Victoria
Evan Rempel <erempel@uvic.ca> writes:
The download page for 3.4rc1 had eventlog 0.2.13 The download page for 3.4rc2 has eventlog 0.2.12
That seems to be an oversight.
I'm not entirely sure what happened, but the eventlog version thankfully doesn't matter. In all honesty, though... I'd distribute the two separately, and at worst, embed a copy for convenience, like we do for some other libraries. I'll try to make sure that the final has 0.2.13, though. Thanks for noticing! -- |8]
Hi, On Thu, Jan 17, 2013 at 9:36 PM, Gergely Nagy <algernon@balabit.hu> wrote:
Evan Rempel <erempel@uvic.ca> writes:
The download page for 3.4rc1 had eventlog 0.2.13 The download page for 3.4rc2 has eventlog 0.2.12
That seems to be an oversight.
I'm not entirely sure what happened, but the eventlog version thankfully doesn't matter. In all honesty, though... I'd distribute the two separately, and at worst, embed a copy for convenience, like we do for some other libraries.
The eventlog version could matter for people building 64-bit stuff using a compiler other than gcc. Looks like 0.2.12+20120504+1700 is the first version which has the fix for the issue I ran into (alloca.h wasn't included) diff -urN eventlog-0.2.12/src/evtstr.c eventlog-0.2.12+20120504+1700/src/evtstr.c --- eventlog-0.2.12/src/evtstr.c 2010-06-16 10:26:05.000000000 +0200 +++ eventlog-0.2.12+20120504+1700/src/evtstr.c 2012-05-04 17:00:21.000000000 +0200 @@ -45,9 +45,10 @@ #include <assert.h> #include <stdio.h> #include <string.h> -#ifdef _MSC_VER +#ifdef __WIN32__ #include <malloc.h> #endif +#include <alloca.h> /* event string handling */ So please make sure that 0.2.13 is available in the expected place as well, the below link doesn't list it: http://www.balabit.com/downloads/files?path=/eventlog/0.2 Regards, Sandor
participants (4)
-
devel@balabit.hu
-
Evan Rempel
-
Gergely Nagy
-
Sandor Geller