]> git.ipfire.org Git - thirdparty/rspamd.git/log
thirdparty/rspamd.git
18 months agoMerge pull request #4939 from rspamd/vstakhov-fuzzy-backpressure
Vsevolod Stakhov [Wed, 24 Apr 2024 08:49:47 +0000 (14:49 +0600)] 
Merge pull request #4939 from rspamd/vstakhov-fuzzy-backpressure

Implement backpressure for fuzzy check

18 months ago[Minor] Further normalization 4939/head
Vsevolod Stakhov [Tue, 23 Apr 2024 14:41:29 +0000 (15:41 +0100)] 
[Minor] Further normalization

18 months ago[Minor] Jitter backpressure
Vsevolod Stakhov [Tue, 23 Apr 2024 14:40:43 +0000 (15:40 +0100)] 
[Minor] Jitter backpressure

18 months ago[Project] Implement fuzzy check retransmits backpressure
Vsevolod Stakhov [Tue, 23 Apr 2024 14:37:18 +0000 (15:37 +0100)] 
[Project] Implement fuzzy check retransmits backpressure

18 months ago[Minor] Change log logic in fuzzy_check
Vsevolod Stakhov [Tue, 23 Apr 2024 14:04:05 +0000 (15:04 +0100)] 
[Minor] Change log logic in fuzzy_check

18 months ago[Minor] Add function to reschedule events at specific timer
Vsevolod Stakhov [Tue, 23 Apr 2024 14:03:25 +0000 (15:03 +0100)] 
[Minor] Add function to reschedule events at specific timer

18 months agoMerge pull request #4937 from rspamd/vstakhov-control-fixes
Vsevolod Stakhov [Mon, 22 Apr 2024 18:11:54 +0000 (00:11 +0600)] 
Merge pull request #4937 from rspamd/vstakhov-control-fixes

Serialize control commands

18 months ago[Minor] Deal with descriptors in the wait queue 4937/head
Vsevolod Stakhov [Mon, 22 Apr 2024 17:42:08 +0000 (18:42 +0100)] 
[Minor] Deal with descriptors in the wait queue

18 months ago[Minor] Do not use pointers to local variables, sigh
Vsevolod Stakhov [Mon, 22 Apr 2024 17:29:11 +0000 (18:29 +0100)] 
[Minor] Do not use pointers to local variables, sigh

18 months ago[Minor] Try to fix mess with refcounts
Vsevolod Stakhov [Mon, 22 Apr 2024 15:00:01 +0000 (16:00 +0100)] 
[Minor] Try to fix mess with refcounts

18 months ago[Rework] Serialize control commands
Vsevolod Stakhov [Mon, 22 Apr 2024 14:49:47 +0000 (15:49 +0100)] 
[Rework] Serialize control commands

In fact, we cannot send multiple commands and read them through the pipe. It has
caused multiple weird issues in the past but I can now see clearly how it should
be done. We should send commands and serialize all requests pending to let them
being sent one by one, after reply for the previous command has been received.

18 months agoMerge pull request #4935 from moisseev/webui
Vsevolod Stakhov [Mon, 22 Apr 2024 13:45:10 +0000 (19:45 +0600)] 
Merge pull request #4935 from moisseev/webui

[Minor] Update Bootstrap

18 months agoMerge pull request #4934 from dragoangel/patch-5
Vsevolod Stakhov [Mon, 22 Apr 2024 13:24:42 +0000 (19:24 +0600)] 
Merge pull request #4934 from dragoangel/patch-5

Fix error in headers_checks.lua

18 months ago[Minor] Update Bootstrap 4935/head
moisseev [Sun, 21 Apr 2024 07:26:47 +0000 (10:26 +0300)] 
[Minor] Update Bootstrap

18 months agoMerge pull request #4933 from rspamd/vstakhov-utf8-received
Vsevolod Stakhov [Sat, 20 Apr 2024 14:43:20 +0000 (20:43 +0600)] 
Merge pull request #4933 from rspamd/vstakhov-utf8-received

Support UTF8 flag for the received headers

18 months ago[Fix] Backport multiple fixes from libucl
Vsevolod Stakhov [Sat, 20 Apr 2024 14:34:11 +0000 (15:34 +0100)] 
[Fix] Backport multiple fixes from libucl

18 months agoMerge pull request #4932 from rspamd/vstakhov-fix-bayes-disable
Vsevolod Stakhov [Sat, 20 Apr 2024 11:39:12 +0000 (17:39 +0600)] 
Merge pull request #4932 from rspamd/vstakhov-fix-bayes-disable

Fix statfile symbols disabling

18 months agoFix error in headers_checks.lua 4934/head
Dmitriy Alekseev [Fri, 19 Apr 2024 18:33:44 +0000 (21:33 +0300)] 
Fix error in headers_checks.lua

18 months ago[Minor] Support UTF8 in Received flags 4933/head
Vsevolod Stakhov [Fri, 19 Apr 2024 13:14:10 +0000 (14:14 +0100)] 
[Minor] Support UTF8 in Received flags

Issue: #4919

18 months ago[Fix] If we have one statfile disabled we need to disable all 4932/head
Vsevolod Stakhov [Fri, 19 Apr 2024 13:06:05 +0000 (14:06 +0100)] 
[Fix] If we have one statfile disabled we need to disable all

18 months agoMerge pull request #4930 from aduernberger/bayes_relearn
Vsevolod Stakhov [Thu, 18 Apr 2024 21:15:05 +0000 (03:15 +0600)] 
Merge pull request #4930 from aduernberger/bayes_relearn

[Fix] Relearn messages in bayes filter

18 months agoMerge pull request #4926 from lucasRolff/master
Vsevolod Stakhov [Thu, 18 Apr 2024 13:27:56 +0000 (19:27 +0600)] 
Merge pull request #4926 from lucasRolff/master

[Minor] Add selector to get rspamd_hostname

18 months ago[Fix] Increase/decrease hash_key value for tokens depending on is_unlearn 4930/head
aduernberger [Thu, 18 Apr 2024 12:44:01 +0000 (14:44 +0200)] 
[Fix] Increase/decrease hash_key value for tokens depending on is_unlearn

When relearning a message, this script is called twice:

1. With `is_unlearn` true and the old `is_spam` value
2. With `is_unlearn` false and the new `is_spam` value

If `is_unlearn` is true, the code should not increase the value of the hash_key. Decreasing it ensures that it behaves like a fresh learn with the new is_spam value.

18 months ago[Fix] Update is_spam in learned_ids when relearning
aduernberger [Thu, 18 Apr 2024 12:34:51 +0000 (14:34 +0200)] 
[Fix] Update is_spam in learned_ids when relearning

18 months ago[Fix] Always set the unlearn flag when relearning
aduernberger [Thu, 18 Apr 2024 12:28:34 +0000 (14:28 +0200)] 
[Fix] Always set the unlearn flag when relearning

Treat relearning from ham to spam the same as relearning from spam to ham. `res` is only set to true if the mail is already learned.

18 months ago[Minor] Move hostname resolution up to cache it 4926/head
Lucas Rolff [Wed, 17 Apr 2024 14:57:49 +0000 (22:57 +0800)] 
[Minor] Move hostname resolution up to cache it

Instead of calling get_hostname() for every processed message, we instead reuse the variable value from rspamd boot time

18 months agoMerge pull request #4927 from moisseev/navbar
Vsevolod Stakhov [Tue, 16 Apr 2024 14:59:10 +0000 (20:59 +0600)] 
Merge pull request #4927 from moisseev/navbar

[WebUI] Prevent navbar layout shift

18 months agoMerge pull request #4922 from moisseev/webui
Vsevolod Stakhov [Mon, 15 Apr 2024 07:41:05 +0000 (13:41 +0600)] 
Merge pull request #4922 from moisseev/webui

[WebUI] Add missing handler for file input

18 months ago[Minor] Add selector to get rspamd_hostname
Lucas Rolff [Mon, 15 Apr 2024 00:13:21 +0000 (08:13 +0800)] 
[Minor] Add selector to get rspamd_hostname

18 months agoMerge pull request #4924 from fatalbanana/cmae_scores
Vsevolod Stakhov [Sat, 13 Apr 2024 11:33:19 +0000 (17:33 +0600)] 
Merge pull request #4924 from fatalbanana/cmae_scores

[Minor] Cloudmark scores_symbols: convert keys to numeric values

18 months ago[WebUI] Prevent navbar layout shift 4927/head
moisseev [Sat, 13 Apr 2024 08:15:46 +0000 (11:15 +0300)] 
[WebUI] Prevent navbar layout shift

caused by buttons hiding and scroll bar

18 months ago[Minor] Cloudmark scores_symbols: convert keys to numeric values 4924/head
Andrew Lewis [Fri, 12 Apr 2024 20:50:12 +0000 (22:50 +0200)] 
[Minor] Cloudmark scores_symbols: convert keys to numeric values

18 months ago[WebUI] Add missing handler for file input 4922/head
moisseev [Fri, 12 Apr 2024 17:55:47 +0000 (20:55 +0300)] 
[WebUI] Add missing handler for file input

18 months agoMerge pull request #4920 from dragoangel/patch-4
Vsevolod Stakhov [Thu, 11 Apr 2024 17:10:20 +0000 (23:10 +0600)] 
Merge pull request #4920 from dragoangel/patch-4

[Enhancement] Exclude false positives of MIME_DOUBLE_BAD_EXTENSION

18 months agoMerge pull request #4916 from twesterhever/temp-increase-rdns-none-score
Vsevolod Stakhov [Thu, 11 Apr 2024 17:09:04 +0000 (23:09 +0600)] 
Merge pull request #4916 from twesterhever/temp-increase-rdns-none-score

[Minor] Increase RDNS_NONE score to 2.0

18 months ago[Enhancement] Exclude false positives of MIME_DOUBLE_BAD_EXTENSION 4920/head
Dmitriy Alekseev [Thu, 11 Apr 2024 16:17:08 +0000 (19:17 +0300)] 
[Enhancement] Exclude false positives of MIME_DOUBLE_BAD_EXTENSION

If we detected extension of the file and this extension is equal to the real extension then we should not pass second extension to check function as it will trigger false positive for MIME_DOUBLE_BAD_EXTENSION.

18 months agoMerge pull request #4918 from fatalbanana/grow_factor_tests
Vsevolod Stakhov [Wed, 10 Apr 2024 19:14:37 +0000 (01:14 +0600)] 
Merge pull request #4918 from fatalbanana/grow_factor_tests

Add tests for grow_factor

18 months ago[Test] Add tests for grow_factor 4918/head
Andrew Lewis [Wed, 10 Apr 2024 14:30:56 +0000 (16:30 +0200)] 
[Test] Add tests for grow_factor

18 months ago[Minor] Fix grow_factor
Andrew Lewis [Wed, 10 Apr 2024 14:03:07 +0000 (16:03 +0200)] 
[Minor] Fix grow_factor

18 months agoMerge pull request #4917 from fatalbanana/gha_whups
Vsevolod Stakhov [Wed, 10 Apr 2024 09:59:26 +0000 (15:59 +0600)] 
Merge pull request #4917 from fatalbanana/gha_whups

[Test] Fix uploading of test logs when tests are failed

18 months ago[Test] Fix uploading of test logs when tests are failed 4917/head
Andrew Lewis [Tue, 9 Apr 2024 16:18:11 +0000 (18:18 +0200)] 
[Test] Fix uploading of test logs when tests are failed

18 months agoMerge pull request #4913 from moisseev/webui
Vsevolod Stakhov [Tue, 9 Apr 2024 11:51:35 +0000 (17:51 +0600)] 
Merge pull request #4913 from moisseev/webui

[WebUI] Escape HTML characters in errors history

18 months agoMerge pull request #4912 from rspamd/vstakhov-grow-factor-rework
Vsevolod Stakhov [Tue, 9 Apr 2024 11:51:12 +0000 (17:51 +0600)] 
Merge pull request #4912 from rspamd/vstakhov-grow-factor-rework

Rework grow factor

18 months ago[Minor] Increase RDNS_NONE score to 2.0 4916/head
twesterhever [Tue, 9 Apr 2024 11:25:52 +0000 (11:25 +0000)] 
[Minor] Increase RDNS_NONE score to 2.0

18 months ago[WebUI] Escape HTML characters in errors history 4913/head
moisseev [Tue, 9 Apr 2024 06:14:07 +0000 (09:14 +0300)] 
[WebUI] Escape HTML characters in errors history

19 months ago[Project] Adjust some final bits 4912/head
Vsevolod Stakhov [Mon, 8 Apr 2024 18:21:20 +0000 (19:21 +0100)] 
[Project] Adjust some final bits

19 months ago[Project] Write a function to adjust grow factor properly
Vsevolod Stakhov [Mon, 8 Apr 2024 18:05:22 +0000 (19:05 +0100)] 
[Project] Write a function to adjust grow factor properly

19 months ago[Project] Rework grow factor as it is currently broken
Vsevolod Stakhov [Sun, 7 Apr 2024 17:42:03 +0000 (18:42 +0100)] 
[Project] Rework grow factor as it is currently broken

19 months agoMerge pull request #4910 from rspamd/vstakhov-fix-greylist-threshold
Vsevolod Stakhov [Sat, 6 Apr 2024 16:12:36 +0000 (22:12 +0600)] 
Merge pull request #4910 from rspamd/vstakhov-fix-greylist-threshold

Update greylisting threshold on each scan as it can be easily dynamic

19 months agoMerge branch 'master' into vstakhov-fix-greylist-threshold 4910/head
Vsevolod Stakhov [Sat, 6 Apr 2024 15:58:08 +0000 (16:58 +0100)] 
Merge branch 'master' into vstakhov-fix-greylist-threshold

19 months agoMerge pull request #4911 from fatalbanana/break_greylisting_tests
Vsevolod Stakhov [Sat, 6 Apr 2024 15:57:35 +0000 (21:57 +0600)] 
Merge pull request #4911 from fatalbanana/break_greylisting_tests

[Test] Try break greylisting tests

19 months ago[Test] Try break greylisting tests 4911/head
Andrew Lewis [Fri, 5 Apr 2024 20:42:16 +0000 (22:42 +0200)] 
[Test] Try break greylisting tests

19 months ago[Fix] Honor dynamic thresholds for greylisting module
Vsevolod Stakhov [Fri, 5 Apr 2024 16:56:15 +0000 (17:56 +0100)] 
[Fix] Honor dynamic thresholds for greylisting module

19 months ago[Minor] Remove redundant metric name
Vsevolod Stakhov [Fri, 5 Apr 2024 16:48:06 +0000 (17:48 +0100)] 
[Minor] Remove redundant metric name

19 months ago[Fix] Update greylisting threshold as it can be easily dynamic
Vsevolod Stakhov [Fri, 5 Apr 2024 16:44:59 +0000 (17:44 +0100)] 
[Fix] Update greylisting threshold as it can be easily dynamic

Issue: #4908
Closes: #4908
19 months ago[Minor] Fix issue with ucl variables
Vsevolod Stakhov [Fri, 5 Apr 2024 12:14:00 +0000 (13:14 +0100)] 
[Minor] Fix issue with ucl variables

Pointed by: @crest

19 months agoMerge pull request #4903 from rspamd/vstakhov-fix-zstd-mmap
Vsevolod Stakhov [Wed, 3 Apr 2024 15:04:35 +0000 (21:04 +0600)] 
Merge pull request #4903 from rspamd/vstakhov-fix-zstd-mmap

Fix shared memory proxying when compression is set

19 months ago[Fix] Fix shared memory proxying when compression is set 4903/head
Vsevolod Stakhov [Wed, 3 Apr 2024 14:47:50 +0000 (15:47 +0100)] 
[Fix] Fix shared memory proxying when compression is set

19 months agoMerge pull request #4901 from rspamd/vstakhov-milter-quarantine-message
Vsevolod Stakhov [Wed, 3 Apr 2024 11:37:10 +0000 (17:37 +0600)] 
Merge pull request #4901 from rspamd/vstakhov-milter-quarantine-message

Allow custom milter quarantine and tempfail messages

19 months ago[Feature] Allow custom milter quarantine and tempfail messages 4901/head
Vsevolod Stakhov [Tue, 2 Apr 2024 14:39:59 +0000 (15:39 +0100)] 
[Feature] Allow custom milter quarantine and tempfail messages

Issue: #4892
Closes: #4892
19 months agoMerge pull request #4894 from rspamd/vstakhov-cloudmark-improvements
Vsevolod Stakhov [Thu, 28 Mar 2024 15:22:39 +0000 (21:22 +0600)] 
Merge pull request #4894 from rspamd/vstakhov-cloudmark-improvements

Several improvements to the Cloudmark integration

19 months ago[Minor] Fix some corner cases 4894/head
Vsevolod Stakhov [Thu, 28 Mar 2024 15:04:57 +0000 (15:04 +0000)] 
[Minor] Fix some corner cases

19 months ago[Feature] Cloudmark: Add scores_symbols setting
Vsevolod Stakhov [Wed, 27 Mar 2024 16:04:29 +0000 (16:04 +0000)] 
[Feature] Cloudmark: Add scores_symbols setting

19 months ago[Feature] Allow adding X-CMAE-Score header
Vsevolod Stakhov [Wed, 27 Mar 2024 15:01:29 +0000 (15:01 +0000)] 
[Feature] Allow adding X-CMAE-Score header

19 months agoMerge pull request #4890 from twesterhever/temp-received-localhost
Vsevolod Stakhov [Tue, 26 Mar 2024 14:51:25 +0000 (20:51 +0600)] 
Merge pull request #4890 from twesterhever/temp-received-localhost

[Minor] Add rule for localhost HELOs in Received headers

19 months agoMerge pull request #4889 from twesterhever/temp-replyto-same-as-to
Vsevolod Stakhov [Tue, 26 Mar 2024 14:50:57 +0000 (20:50 +0600)] 
Merge pull request #4889 from twesterhever/temp-replyto-same-as-to

[Enhancement] Add more symbols for Reply-To header characteristics

19 months agoMerge pull request #4891 from fatalbanana/spf_example
Vsevolod Stakhov [Mon, 25 Mar 2024 14:44:38 +0000 (20:44 +0600)] 
Merge pull request #4891 from fatalbanana/spf_example

[Minor] Fix format of example setting (rspamd/rspamd.com#736)

19 months ago[Minor] Fix format of example setting (rspamd.com#736) 4891/head
Andrew Lewis [Mon, 25 Mar 2024 11:47:50 +0000 (13:47 +0200)] 
[Minor] Fix format of example setting (rspamd.com#736)

19 months ago[Minor] Add rule for localhost HELOs in Received headers 4890/head
twesterhever [Sun, 24 Mar 2024 17:48:53 +0000 (17:48 +0000)] 
[Minor] Add rule for localhost HELOs in Received headers

19 months ago[Enhancement] Add more symbols for Reply-To header characteristics 4889/head
twesterhever [Sun, 24 Mar 2024 17:24:24 +0000 (17:24 +0000)] 
[Enhancement] Add more symbols for Reply-To header characteristics

19 months agoMerge pull request #4887 from rspamd/vstakhov-regexp-fix
Vsevolod Stakhov [Sun, 24 Mar 2024 16:22:56 +0000 (22:22 +0600)] 
Merge pull request #4887 from rspamd/vstakhov-regexp-fix

Protect regexp matcher from regexps with empty patterns

19 months ago[Test] Add unit test 4887/head
Vsevolod Stakhov [Sun, 24 Mar 2024 14:51:29 +0000 (14:51 +0000)] 
[Test] Add unit test

19 months ago[Minor] Limit to x86_64
Vsevolod Stakhov [Sat, 23 Mar 2024 22:38:21 +0000 (22:38 +0000)] 
[Minor] Limit to x86_64

19 months ago[CritFix] Protect regexp matcher from regexps with empty patterns
Vsevolod Stakhov [Fri, 22 Mar 2024 17:07:58 +0000 (17:07 +0000)] 
[CritFix] Protect regexp matcher from regexps with empty patterns

Issue: #4885
Closes: #4885
19 months ago[Minor] Deny zero length in regexp search functions
Vsevolod Stakhov [Fri, 22 Mar 2024 17:03:26 +0000 (17:03 +0000)] 
[Minor] Deny zero length in regexp search functions

19 months agoMerge pull request #4882 from rspamd/vstakhov-mime-parser-fix
Vsevolod Stakhov [Thu, 21 Mar 2024 14:30:00 +0000 (20:30 +0600)] 
Merge pull request #4882 from rspamd/vstakhov-mime-parser-fix

Fix inconsistent nesting in mime parts

19 months ago[Fix] Fix inconsistent nesting in mime parts 4882/head
Vsevolod Stakhov [Wed, 20 Mar 2024 17:16:48 +0000 (17:16 +0000)] 
[Fix] Fix inconsistent nesting in mime parts

We should do like MUAs do: imlicitly close incomplete mime parts
and treat them as ususal. It is weird and utterly stupid but that's
what MUA do.

Issue: #4740
Closes: #4740
19 months agoMerge pull request #4880 from rspamd/vstakhov-fix-glib-types
Vsevolod Stakhov [Tue, 19 Mar 2024 15:25:48 +0000 (21:25 +0600)] 
Merge pull request #4880 from rspamd/vstakhov-fix-glib-types

[Rework] Remove some of the GLib types in lieu of standard ones

19 months ago[Rework] Further types conversion (no functional changes) 4880/head
Vsevolod Stakhov [Mon, 18 Mar 2024 18:56:33 +0000 (18:56 +0000)] 
[Rework] Further types conversion (no functional changes)

19 months ago[Rework] Remove some of the GLib types in lieu of standard ones
Vsevolod Stakhov [Mon, 18 Mar 2024 14:56:16 +0000 (14:56 +0000)] 
[Rework] Remove some of the GLib types in lieu of standard ones

This types have constant conflicts with the system ones especially on OSX.

19 months agoMerge pull request #4878 from moisseev/webui
Vsevolod Stakhov [Mon, 18 Mar 2024 14:47:54 +0000 (20:47 +0600)] 
Merge pull request #4878 from moisseev/webui

[Minor] Change FooTable breakpoints to match Bootstrap 5

19 months ago[Minor] Change FooTable breakpoints 4878/head
moisseev [Sun, 17 Mar 2024 16:50:37 +0000 (19:50 +0300)] 
[Minor] Change FooTable breakpoints

to match Bootstrap 5

19 months ago[Minor] Use cascade FooTable column breakpoints
moisseev [Sun, 17 Mar 2024 14:34:34 +0000 (17:34 +0300)] 
[Minor] Use cascade FooTable column breakpoints

19 months agoMerge pull request #4877 from moisseev/webui
Vsevolod Stakhov [Sat, 16 Mar 2024 13:17:54 +0000 (19:17 +0600)] 
Merge pull request #4877 from moisseev/webui

[WebUI] Add column display mode settings

19 months ago[WebUI] Add column display mode settings 4877/head
moisseev [Sat, 16 Mar 2024 11:08:56 +0000 (14:08 +0300)] 
[WebUI] Add column display mode settings

for Scan and History tables

19 months agoMerge pull request #4876 from fatalbanana/testlog
Vsevolod Stakhov [Fri, 15 Mar 2024 15:08:35 +0000 (21:08 +0600)] 
Merge pull request #4876 from fatalbanana/testlog

[Test] Really fix saving test logs...

19 months ago[Test] Really fix saving test logs... 4876/head
Andrew Lewis [Fri, 15 Mar 2024 14:21:24 +0000 (16:21 +0200)] 
[Test] Really fix saving test logs...

19 months agoMerge pull request #4875 from fatalbanana/badge
Vsevolod Stakhov [Fri, 15 Mar 2024 14:28:04 +0000 (20:28 +0600)] 
Merge pull request #4875 from fatalbanana/badge

[Minor] README: update build status badge

19 months ago[Minor] README: update build status badge 4875/head
Andrew Lewis [Fri, 15 Mar 2024 14:23:47 +0000 (16:23 +0200)] 
[Minor] README: update build status badge

19 months agoMerge pull request #4873 from rspamd/vstakhov-fix-multipattern-init
Vsevolod Stakhov [Fri, 15 Mar 2024 14:13:14 +0000 (20:13 +0600)] 
Merge pull request #4873 from rspamd/vstakhov-fix-multipattern-init

Do not save multipatterns to FS in certain cases

19 months ago[Test] Run functional tests using root user 4873/head
Vsevolod Stakhov [Fri, 15 Mar 2024 14:05:42 +0000 (14:05 +0000)] 
[Test] Run functional tests using root user

19 months ago[Test] More rework of the tests
Vsevolod Stakhov [Fri, 15 Mar 2024 14:02:30 +0000 (14:02 +0000)] 
[Test] More rework of the tests

19 months ago[Test] Add missing path
Vsevolod Stakhov [Fri, 15 Mar 2024 13:50:17 +0000 (13:50 +0000)] 
[Test] Add missing path

19 months ago[Test] Try to hack
Vsevolod Stakhov [Fri, 15 Mar 2024 13:46:44 +0000 (13:46 +0000)] 
[Test] Try to hack

19 months agoMerge remote-tracking branch 'origin/master' into vstakhov-fix-multipattern-init
Vsevolod Stakhov [Fri, 15 Mar 2024 13:30:45 +0000 (13:30 +0000)] 
Merge remote-tracking branch 'origin/master' into vstakhov-fix-multipattern-init

19 months agoMerge pull request #4874 from fatalbanana/checkout_action
Vsevolod Stakhov [Fri, 15 Mar 2024 13:30:01 +0000 (19:30 +0600)] 
Merge pull request #4874 from fatalbanana/checkout_action

[Test] Use actions/checkout

19 months ago[Test] Use actions/checkout 4874/head
Andrew Lewis [Fri, 15 Mar 2024 13:28:28 +0000 (15:28 +0200)] 
[Test] Use actions/checkout

19 months ago[Minor] Another similar `getline` fix
Vsevolod Stakhov [Fri, 15 Mar 2024 13:26:47 +0000 (13:26 +0000)] 
[Minor] Another similar `getline` fix

19 months ago[Minor] Fix irrelevant issue with the `getline` invocation
Vsevolod Stakhov [Fri, 15 Mar 2024 13:25:27 +0000 (13:25 +0000)] 
[Minor] Fix irrelevant issue with the `getline` invocation

19 months ago[Fix] Do not save multipatterns to FS in certain cases
Vsevolod Stakhov [Fri, 15 Mar 2024 13:18:34 +0000 (13:18 +0000)] 
[Fix] Do not save multipatterns to FS in certain cases