From e1783f4e55a4df8eda583a8bbc259eb6032b30de Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 16 Apr 2012 21:01:39 +0200 Subject: NEWS: Finalise for 0.2.0. Signed-off-by: Gergely Nagy --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 607bb6f..7603954 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ #+STARTUP: indent showall -*- org -*- -* 0.2.0 +* 0.2.0 - <2012-04-16 Mon> ** Remove the json-c dependency -- cgit From cf66dbeb8820ef935045813598aa5a48be00526a Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Sat, 28 Apr 2012 18:47:43 +0200 Subject: Preparations for 0.2.1 Bump software and library interface versions, and start adding NEWS entries. Signed-off-by: Gergely Nagy --- NEWS | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 7603954..a37cf19 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,30 @@ #+STARTUP: indent showall -*- org -*- +* 0.2.1 + +** Fixed JSON formatting for syslog() messages + +In version 0.2.0, when converting to formatting the JSON output +ourselves, a bug creeped in that made the library emit invalid JSON +when used as an LD_PRELOAD-ed library. + +This has been corrected. + +** Facility and priority values are handled properly + +In all versions of the library the facility and priority handling was +broken for all but the most trivial cases. This version fixes this +issue aswell. + +** Previous openlog() settings are cleared at closelog() time + +In all former versions of the library, openlog() collected a set of +information that was then used by all other functions, even after +closelog() was called. + +Closing the log should return us to the default state, so we now wrap +closelog() too, and the library resets its settings to their default. + * 0.2.0 - <2012-04-16 Mon> ** Remove the json-c dependency -- cgit From e5faea1d639252017cc8321e9c2cb5d17b061e97 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Wed, 2 May 2012 16:23:23 +0200 Subject: NEWS: Finalise for 0.2.1 Signed-off-by: Gergely Nagy --- NEWS | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'NEWS') diff --git a/NEWS b/NEWS index a37cf19..14311e0 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ #+STARTUP: indent showall -*- org -*- -* 0.2.1 +* 0.2.1 - <2012-05-02 Wed> ** Fixed JSON formatting for syslog() messages @@ -25,6 +25,12 @@ closelog() was called. Closing the log should return us to the default state, so we now wrap closelog() too, and the library resets its settings to their default. +** Noticable performance increase + +The library was changed to try and do less memory allocations, and +reuse memory instead of a malloc/free cycle. This results in a +noticable performance increase under heavy load. + * 0.2.0 - <2012-04-16 Mon> ** Remove the json-c dependency -- cgit