diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-04-29 16:30:22 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-04-29 16:30:22 +0100 |
commit | 3353dc1e718c42ceab5cf49ecdc4ee7fa6ff3464 (patch) | |
tree | 1951b7e1085457aa273bedb74d7a402aec2b0bfe | |
parent | 952d2b33662b601d6a0fd972fd3cff3d3efc971e (diff) | |
download | rspamd-3353dc1e718c42ceab5cf49ecdc4ee7fa6ff3464.tar.gz rspamd-3353dc1e718c42ceab5cf49ecdc4ee7fa6ff3464.zip |
Release 1.2.61.2.6
* Fix parsing of URLs in texts
* Fix creating of URLs from LUA
* Fix some more URL detector issues
* Fix unit tests
* Fix JIT compilation for PCRE2 expressions
* Fix JIT usage for PCRE2
* Fix UTF8 mode in PCRE2
* Add workaround for pre-historic compilers (#605)
* Fix and rescore R_PARTS_DIFFER logic
* Properly set lua paths for tests
* Fix SA rawbody processing - exclude top part
* Store text parts content with newlines stripped
* Properly support SA body regexps
* Fix body rules in SA plugin
* Fix setting of score for parts differ
* More fixes to parts distance calculations
- Use hashed words instead of full words for speed
- Improve levenstein distance calculations and penalise replaces
- Always return number from 0 to 1
- Use g_malloc instead of alloca
* Fix percents output in R_PARTS_DIFFER
* Plug memory leak in dkim module
* Plug minor memory leak in regexps creation
Signed-off-by: Vsevolod Stakhov <vsevolod@highsecure.ru>
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | ChangeLog | 25 |
2 files changed, 26 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ad9849b18..57502993c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ ENABLE_LANGUAGE(ASM) SET(RSPAMD_VERSION_MAJOR 1) SET(RSPAMD_VERSION_MINOR 2) -SET(RSPAMD_VERSION_PATCH 5) +SET(RSPAMD_VERSION_PATCH 6) # Keep two digits all the time SET(RSPAMD_VERSION_MAJOR_NUM ${RSPAMD_VERSION_MAJOR}0) @@ -1,3 +1,28 @@ +1.2.6: + * Fix parsing of URLs in texts + * Fix creating of URLs from LUA + * Fix some more URL detector issues + * Fix unit tests + * Fix JIT compilation for PCRE2 expressions + * Fix JIT usage for PCRE2 + * Fix UTF8 mode in PCRE2 + * Add workaround for pre-historic compilers (#605) + * Fix and rescore R_PARTS_DIFFER logic + * Properly set lua paths for tests + * Fix SA rawbody processing - exclude top part + * Store text parts content with newlines stripped + * Properly support SA body regexps + * Fix body rules in SA plugin + * Fix setting of score for parts differ + * More fixes to parts distance calculations + - Use hashed words instead of full words for speed + - Improve levenstein distance calculations and penalise replaces + - Always return number from 0 to 1 + - Use g_malloc instead of alloca + * Fix percents output in R_PARTS_DIFFER + * Plug memory leak in dkim module + * Plug minor memory leak in regexps creation + 1.2.5: * Plug an important memory leak in headers getting code * Remove some bad domains from whitelists |