diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-05-29 13:08:35 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-05-29 13:08:35 +0100 |
commit | 841d5ae4082e41493ddba02196c1a46f53864398 (patch) | |
tree | ef16ef41bec6ae7e4588d914953ddf6ef1087ecc | |
parent | 221287120dcfe87d695208604623b6b0c679240f (diff) | |
download | rspamd-0.9.5.tar.gz rspamd-0.9.5.zip |
Release 0.9.50.9.5
* Avoid double free when extending HTTP message.
* Fix double free if multiple classifiers are defined.
* Fix misprint in spamassassin plugin.
* Fix cpuid invocation on i386.
* Fix ownership issues for zero-copy decode.
* Allow __len metamethod on rspamd{text}.
* Add base64 decoding lua utility.
* Fix build on FreeBSD
* Skip spaces at the beginning of mime messages.
* DBL_ABUSE_REDIR should not have significant weight.
* Allow to split by lua_regexp rspamd{text} objects.
* Allow to specify custom stop pattern for lua_tcp.
Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | ChangeLog | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d90d9c741..b93e1c8cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ ENABLE_LANGUAGE(ASM) SET(RSPAMD_VERSION_MAJOR 0) SET(RSPAMD_VERSION_MINOR 9) -SET(RSPAMD_VERSION_PATCH 4) +SET(RSPAMD_VERSION_PATCH 5) SET(RSPAMD_VERSION "${RSPAMD_VERSION_MAJOR}.${RSPAMD_VERSION_MINOR}.${RSPAMD_VERSION_PATCH}") SET(RSPAMD_MASTER_SITE_URL "https://rspamd.com") @@ -1,3 +1,17 @@ +0.9.5: + * Avoid double free when extending HTTP message. + * Fix double free if multiple classifiers are defined. + * Fix misprint in spamassassin plugin. + * Fix cpuid invocation on i386. + * Fix ownership issues for zero-copy decode. + * Allow __len metamethod on rspamd{text}. + * Add base64 decoding lua utility. + * Fix build on FreeBSD + * Skip spaces at the beginning of mime messages. + * DBL_ABUSE_REDIR should not have significant weight. + * Allow to split by lua_regexp rspamd{text} objects. + * Allow to specify custom stop pattern for lua_tcp. + 0.9.4: * Fix critical bugs in tokenization algorithm * Write unit tests for tokenization |