]> git.ipfire.org Git - thirdparty/kea.git/log
thirdparty/kea.git
6 months ago[#4266] Replaced BOOST_STATIC_ASSERT
Francis Dupont [Mon, 15 Dec 2025 21:06:20 +0000 (22:06 +0100)] 
[#4266] Replaced BOOST_STATIC_ASSERT

7 months ago[#4283] Addressed last comment
Francis Dupont [Tue, 30 Dec 2025 19:56:25 +0000 (20:56 +0100)] 
[#4283] Addressed last comment

7 months ago[#4283] Addressed some minor comments
Francis Dupont [Mon, 29 Dec 2025 21:39:41 +0000 (22:39 +0100)] 
[#4283] Addressed some minor comments

7 months ago[#4283] Added large UTs and reorg
Francis Dupont [Sun, 28 Dec 2025 10:07:28 +0000 (11:07 +0100)] 
[#4283] Added large UTs and reorg

7 months ago[#4283] Checkpoint: added MT UTs
Francis Dupont [Sun, 28 Dec 2025 08:43:05 +0000 (09:43 +0100)] 
[#4283] Checkpoint: added MT UTs

7 months ago[#4283] Checkpoint: began UTs
Francis Dupont [Sun, 28 Dec 2025 00:17:02 +0000 (01:17 +0100)] 
[#4283] Checkpoint: began UTs

7 months ago[#4283] Checkpoint: to do UTs
Francis Dupont [Fri, 26 Dec 2025 22:44:53 +0000 (23:44 +0100)] 
[#4283] Checkpoint: to do UTs

7 months ago[#4176] Address compiler warnings
Thomas Markwalder [Fri, 19 Dec 2025 19:51:03 +0000 (14:51 -0500)] 
[#4176] Address compiler warnings

modified:   src/hooks/dhcp/lease_cmds/lease_cmds.cc
modified:   src/lib/dhcpsrv/lease.cc
modified:   src/lib/dhcpsrv/lease_mgr.cc

7 months ago[#4176] Fix change log indent.
Thomas Markwalder [Wed, 17 Dec 2025 21:06:31 +0000 (16:06 -0500)] 
[#4176] Fix change log indent.

modified:   4176-ha-lease-syncing-doesn-t-always-update-lease-stats

7 months ago[#4176] Added ChangeLog entry
Thomas Markwalder [Wed, 17 Dec 2025 16:09:21 +0000 (11:09 -0500)] 
[#4176] Added ChangeLog entry

new file:   4176-ha-lease-syncing-doesn-t-always-update-lease-stats

7 months ago[#4176] Further comments
Thomas Markwalder [Wed, 17 Dec 2025 15:59:21 +0000 (10:59 -0500)] 
[#4176] Further comments

modified:   src/lib/dhcpsrv/lease_mgr.cc
    LeaseMgr::updateStatsOnUpdate(const Lease4Ptr...)
        Do nothing if either lease state is REGISTERED

modified:   src/lib/dhcpsrv/testutils/generic_lease_mgr_unittest.cc
    Verify REGISTERED ignored for v4

7 months ago[#4176] Addressed further comments
Thomas Markwalder [Wed, 17 Dec 2025 14:00:13 +0000 (09:00 -0500)] 
[#4176] Addressed further comments

modified:   src/hooks/dhcp/lease_cmds/lease_cmds.cc
    now addOrUpdate4 prohibits registered state
modified:   src/hooks/dhcp/lease_cmds/libloadtests/lease_cmds4_unittest.cc
    added UT

modified:   src/lib/dhcpsrv/lease_mgr.*
    renamed bumpStatPrefixPool() to bumpStatPrefix()

modified:   src/lib/dhcpsrv/testutils/generic_lease_mgr_unittest.cc
    added missing scenarios

7 months ago[#4176] Initial review comments
Thomas Markwalder [Tue, 16 Dec 2025 15:47:45 +0000 (10:47 -0500)] 
[#4176] Initial review comments

modified:   src/hooks/dhcp/lease_cmds/lease_cmds.cc
modified:   src/hooks/dhcp/lease_cmds/libloadtests/lease_cmds6_unittest.cc
modified:   src/lib/dhcpsrv/lease_mgr.cc
modified:   src/lib/dhcpsrv/lease_mgr.h

7 months ago[#4176] Add mysql and pgsql tests
Thomas Markwalder [Mon, 17 Nov 2025 13:08:16 +0000 (08:08 -0500)] 
[#4176] Add mysql and pgsql tests

modified:   src/hooks/dhcp/mysql/tests/mysql_lease_mgr_unittest.cc
modified:   src/hooks/dhcp/pgsql/tests/pgsql_lease_mgr_unittest.cc
modified:   src/lib/dhcpsrv/lease_mgr.cc

7 months ago[#4176] Clean up
Thomas Markwalder [Thu, 13 Nov 2025 20:37:41 +0000 (15:37 -0500)] 
[#4176] Clean up

Clean up, round 1.

src/lib/dhcpsrv/lease_mgr.cc

7 months ago[#4176] Use common update stats funcs
Thomas Markwalder [Thu, 13 Nov 2025 19:59:07 +0000 (14:59 -0500)] 
[#4176] Use common update stats funcs

Initial working commit, needs cleanup

/src/hooks/dhcp/high_availability/ha_service.cc
    Added calls to new LeaseMgr update stat functions

/src/hooks/dhcp/high_availability/tests/ha_service_unittest.cc
    TEST_F(HAServiceTest, asyncSyncLeases4)
    TEST_F(HAServiceTest, asyncSyncLeases6) = updated to check stats

/src/hooks/dhcp/lease_cmds/lease_cmds.*
    Moved updateStats* to LeaseMgr

/src/hooks/dhcp/lease_cmds/libloadtests/lease_cmds6_unittest.cc
    Added line number logging to make diagnosis easier

/src/lib/dhcpsrv/lease.*
    changed Lease::STATE_* to constexpr

/src/lib/dhcpsrv/lease_mgr.*
    Added updateStatOn* functions taken from lease_cmds.
    Replaced updateStatsOnUpdate() implementations
    added constants helper functions

/src/lib/dhcpsrv/tests/memfile_lease_mgr_unittest.cc
    TEST_F(MemfileLeaseMgrTest, updateStatsOn4SameSubnet)
    TEST_F(MemfileLeaseMgrTest, updateStatsOn4DifferentSubnet)
    TEST_F(MemfileLeaseMgrTest, updateStatsOn6SameSubnet)
    TEST_F(MemfileLeaseMgrTest, updateStatsOn6SameSubnetPD)
    TEST_F(MemfileLeaseMgrTest, updateStatsOn6DifferentSubnet)
    TEST_F(MemfileLeaseMgrTest, updateStatsOn6DifferentSubnetPD) - new tests

/src/lib/dhcpsrv/testutils/generic_lease_mgr_unittest.*
    GenericLeaseMgrTest::testUpdateStatsOn4SameSubnet()
    GenericLeaseMgrTest::testUpdateStatsOn4DifferentSubnet()
    GenericLeaseMgrTest::testUpdateStatsOn6SameSubnet()
    GenericLeaseMgrTest::testUpdateStatsOn6SameSubnetPD()
    GenericLeaseMgrTest::testUpdateStatsOn6DifferentSubnet()
    GenericLeaseMgrTest::testUpdateStatsOn6DifferentSubnetPD() - new tests

7 months ago[#4263] Updated meson in hammer too
Francis Dupont [Fri, 19 Dec 2025 08:29:42 +0000 (09:29 +0100)] 
[#4263] Updated meson in hammer too

7 months ago[#4263] Moved to meson 1.10.0
Francis Dupont [Thu, 18 Dec 2025 23:46:54 +0000 (00:46 +0100)] 
[#4263] Moved to meson 1.10.0

7 months ago[#4186] Typo
Francis Dupont [Thu, 18 Dec 2025 16:10:16 +0000 (17:10 +0100)] 
[#4186] Typo

7 months ago[#4186] Applied plan to lease query stats
Francis Dupont [Mon, 15 Dec 2025 15:08:32 +0000 (16:08 +0100)] 
[#4186] Applied plan to lease query stats

7 months ago[#4232] Removed more test files in host cache
Francis Dupont [Wed, 17 Dec 2025 20:32:31 +0000 (21:32 +0100)] 
[#4232] Removed more test files in host cache

7 months ago[#4232] fix host_cache uts for root
Razvan Becheriu [Wed, 17 Dec 2025 16:53:25 +0000 (18:53 +0200)] 
[#4232] fix host_cache uts for root

7 months ago[#4232] Addressed comments
Francis Dupont [Wed, 17 Dec 2025 10:21:21 +0000 (11:21 +0100)] 
[#4232] Addressed comments

7 months ago[#4232] Fixed UTs using chmod
Francis Dupont [Fri, 5 Dec 2025 10:30:26 +0000 (11:30 +0100)] 
[#4232] Fixed UTs using chmod

7 months ago[#4187] Addressed comments
Francis Dupont [Wed, 17 Dec 2025 20:58:18 +0000 (21:58 +0100)] 
[#4187] Addressed comments

7 months ago[#4187] Added duplicate drop stats
Francis Dupont [Tue, 9 Dec 2025 09:22:50 +0000 (10:22 +0100)] 
[#4187] Added duplicate drop stats

7 months ago[#4184] Applied Changelog rewording proposal
Francis Dupont [Thu, 11 Dec 2025 22:37:35 +0000 (23:37 +0100)] 
[#4184] Applied Changelog rewording proposal

7 months ago[#4184] Added a ChangeLog entry
Francis Dupont [Thu, 11 Dec 2025 15:09:50 +0000 (16:09 +0100)] 
[#4184] Added a ChangeLog entry

7 months ago[#4184] Updated last UTs
Francis Dupont [Thu, 11 Dec 2025 14:57:29 +0000 (15:57 +0100)] 
[#4184] Updated last UTs

7 months ago[#4184] Checkpoint: fixed UTs
Francis Dupont [Thu, 11 Dec 2025 14:22:24 +0000 (15:22 +0100)] 
[#4184] Checkpoint: fixed UTs

7 months ago[#4184] Checkpoint: UTs to update
Francis Dupont [Wed, 10 Dec 2025 17:23:46 +0000 (18:23 +0100)] 
[#4184] Checkpoint: UTs to update

7 months ago[#4249] Additional comment
Thomas Markwalder [Mon, 8 Dec 2025 23:35:11 +0000 (18:35 -0500)] 
[#4249] Additional comment

modified:   src/lib/dhcpsrv/memfile_lease_mgr.cc
    fixed catch expressions

7 months ago[#4249] Addressed review comments
Thomas Markwalder [Mon, 8 Dec 2025 23:26:24 +0000 (18:26 -0500)] 
[#4249] Addressed review comments

modified:   src/lib/dhcpsrv/memfile_lease_mgr.cc
   -  minor nits

7 months ago[#4249] Make leasesX-write more resilient
Thomas Markwalder [Mon, 8 Dec 2025 02:46:21 +0000 (21:46 -0500)] 
[#4249] Make leasesX-write more resilient

/src/lib/dhcpsrv/memfile_lease_mgr.cc
    Memfile_LeaseMgr::writeLeases4Internal()
    Memfile_LeaseMgr::writeLeases6Internal() - rewritten to clean up
    on failure

/src/lib/dhcpsrv/tests/memfile_lease_mgr_unittest.cc
    Updated UTs

7 months ago[#4259] Fixed typo
Francis Dupont [Wed, 10 Dec 2025 17:50:08 +0000 (18:50 +0100)] 
[#4259] Fixed typo

7 months ago[#4259] Replaced some throws by logs
Francis Dupont [Wed, 10 Dec 2025 11:27:08 +0000 (12:27 +0100)] 
[#4259] Replaced some throws by logs

7 months ago[#4220] Fixed catch statements
Thomas Markwalder [Sun, 7 Dec 2025 20:02:45 +0000 (15:02 -0500)] 
[#4220] Fixed catch statements

modified:   src/lib/dhcpsrv/memfile_lease_mgr.cc

7 months ago[#4220] Create error msg before clear()
Thomas Markwalder [Sun, 7 Dec 2025 03:56:50 +0000 (22:56 -0500)] 
[#4220] Create error msg before clear()

modified:   src/lib/util/csv_file.cc

7 months ago[#4220] Addressed review comments
Thomas Markwalder [Sat, 6 Dec 2025 22:05:53 +0000 (17:05 -0500)] 
[#4220] Addressed review comments

 Changes to be committed:
new file:   changelog_unreleased/4220-req-option-for-memfile-to-abort-daemon-on-error
    modified:   src/lib/dhcpsrv/memfile_lease_mgr.cc
    modified:   src/lib/util/csv_file.cc

7 months ago[#4220] Apply 1 suggestion(s) to 1 file(s)
Thomas Markwalder [Thu, 4 Dec 2025 17:43:18 +0000 (17:43 +0000)] 
[#4220] Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: Ben Scott <bscott@isc.org>
7 months ago[#4220] Added basic UT
Thomas Markwalder [Wed, 3 Dec 2025 21:00:58 +0000 (16:00 -0500)] 
[#4220] Added basic UT

/src/lib/dhcpsrv/memfile_lease_mgr.h
    util::ReconnectCtlPtr reconnectCtl() - getter for testing only

/src/lib/dhcpsrv/tests/memfile_lease_mgr_unittest.cc
    TEST_F(MemfileLeaseMgrTest, constructorReconnectParams) - new test

src/lib/util/reconnect_ctl.h
    ReconnectCtl::OnFailAction onFailAction() - new getter

7 months ago[#4220] Add support on-fail to memfile
Thomas Markwalder [Wed, 3 Dec 2025 09:36:28 +0000 (04:36 -0500)] 
[#4220] Add support on-fail to memfile

/doc/sphinx/arm/database-connectivity.rst
    Added note

/src/lib/dhcpsrv/memfile_lease_mgr.*
    Memfile_LeaseMgr::Memfile_LeaseMgr() - create the connection
    reconnect object, check for invalid retry values.

    Memfile_LeaseMgr::handleDbLost() - new function for invoking
    the db lost callback.

    Added calls to handleDbLost() on CSVFileFatalError(s)

/src/lib/util/csv_file.*
    CSVFile::append() - throw CSVFileFatalError if stream is bad,
    include error specifics

7 months ago[#4061] Completed CID 1662681
Francis Dupont [Tue, 9 Dec 2025 09:55:44 +0000 (10:55 +0100)] 
[#4061] Completed CID 1662681

7 months ago[#4061] Fixed init (VID 1662546)
Francis Dupont [Fri, 28 Nov 2025 23:14:55 +0000 (00:14 +0100)] 
[#4061] Fixed init (VID 1662546)

7 months ago[#4061] Fixed init (VID 1662580)
Francis Dupont [Fri, 28 Nov 2025 23:06:25 +0000 (00:06 +0100)] 
[#4061] Fixed init (VID 1662580)

7 months ago[#4061] Missing init (CID 1662627)
Francis Dupont [Fri, 28 Nov 2025 10:49:37 +0000 (11:49 +0100)] 
[#4061] Missing init (CID 1662627)

7 months ago[#4061] Missing init (CID 1662650)
Francis Dupont [Fri, 28 Nov 2025 10:48:01 +0000 (11:48 +0100)] 
[#4061] Missing init (CID 1662650)

7 months ago[#4061] Missing init (CID 1662681)
Francis Dupont [Fri, 28 Nov 2025 10:34:33 +0000 (11:34 +0100)] 
[#4061] Missing init (CID 1662681)

7 months ago[#4061] Added a lock in remove (CID 1662569)
Francis Dupont [Fri, 28 Nov 2025 10:21:31 +0000 (11:21 +0100)] 
[#4061] Added a lock in remove (CID 1662569)

7 months ago[#4248] fixed typo
Razvan Becheriu [Tue, 9 Dec 2025 16:14:17 +0000 (18:14 +0200)] 
[#4248] fixed typo

7 months ago[#4248] Added a space
Francis Dupont [Tue, 9 Dec 2025 10:31:55 +0000 (11:31 +0100)] 
[#4248] Added a space

7 months ago[#4248] Moved watch socket const init
Francis Dupont [Tue, 9 Dec 2025 10:18:22 +0000 (11:18 +0100)] 
[#4248] Moved watch socket const init

7 months ago[#4248] Added thread UTs
Francis Dupont [Mon, 8 Dec 2025 22:36:28 +0000 (23:36 +0100)] 
[#4248] Added thread UTs

7 months ago[#4248] Added main thread id to logs
Francis Dupont [Mon, 8 Dec 2025 21:59:11 +0000 (22:59 +0100)] 
[#4248] Added main thread id to logs

7 months ago[#4248] Completed last changes from #4225
Francis Dupont [Mon, 8 Dec 2025 21:40:56 +0000 (22:40 +0100)] 
[#4248] Completed last changes from #4225

7 months ago[#4248] add log messages
Razvan Becheriu [Mon, 8 Dec 2025 16:36:38 +0000 (18:36 +0200)] 
[#4248] add log messages

7 months ago[#4248] Deleted empty obsolete files
Francis Dupont [Fri, 5 Dec 2025 14:42:36 +0000 (15:42 +0100)] 
[#4248] Deleted empty obsolete files

7 months ago[#4248] Applied Andrei's clenup patch
Francis Dupont [Fri, 5 Dec 2025 14:41:42 +0000 (15:41 +0100)] 
[#4248] Applied Andrei's clenup patch

7 months ago[#4248] Formatted .gitattributes
Francis Dupont [Fri, 5 Dec 2025 14:33:59 +0000 (15:33 +0100)] 
[#4248] Formatted .gitattributes

7 months ago[#4248] Updated mes dependencies
Francis Dupont [Fri, 5 Dec 2025 14:27:13 +0000 (15:27 +0100)] 
[#4248] Updated mes dependencies

7 months ago[#4248] Checkpoint added logger
Francis Dupont [Fri, 5 Dec 2025 14:16:30 +0000 (15:16 +0100)] 
[#4248] Checkpoint added logger

7 months ago[#4242] Fixed incorrect string::find
Thomas Markwalder [Sat, 6 Dec 2025 06:49:39 +0000 (01:49 -0500)] 
[#4242] Fixed incorrect string::find

modified:   src/hooks/dhcp/limits/limit_manager.h

7 months ago[#4247] Added missing const in catch
Francis Dupont [Mon, 8 Dec 2025 14:45:07 +0000 (15:45 +0100)] 
[#4247] Added missing const in catch

7 months ago[#4247] Removed commented calls to setCheckThreadId
Francis Dupont [Mon, 8 Dec 2025 14:42:01 +0000 (15:42 +0100)] 
[#4247] Removed commented calls to setCheckThreadId

7 months ago[#4247] Ported improvements
Francis Dupont [Fri, 5 Dec 2025 09:48:51 +0000 (10:48 +0100)] 
[#4247] Ported improvements

7 months ago[#4230] Addressed last comments
Francis Dupont [Fri, 5 Dec 2025 22:34:50 +0000 (23:34 +0100)] 
[#4230] Addressed last comments

7 months ago[#4230] Finshed v6 new test
Francis Dupont [Fri, 5 Dec 2025 21:08:07 +0000 (22:08 +0100)] 
[#4230] Finshed v6 new test

7 months ago[#4230] Fixed API files
Francis Dupont [Fri, 5 Dec 2025 16:34:35 +0000 (17:34 +0100)] 
[#4230] Fixed API files

7 months ago[#4230] Checkpoint: added new v4 UT, doing v6
Francis Dupont [Fri, 5 Dec 2025 16:30:51 +0000 (17:30 +0100)] 
[#4230] Checkpoint: added new v4 UT, doing v6

7 months ago[#4230] Checkpoint: addressed comments
Francis Dupont [Fri, 5 Dec 2025 15:32:50 +0000 (16:32 +0100)] 
[#4230] Checkpoint: addressed comments

7 months ago[#4230] Added commands
Francis Dupont [Tue, 2 Dec 2025 15:50:52 +0000 (16:50 +0100)] 
[#4230] Added commands

7 months ago[#4230] Checkpoint: to do doc and commands
Francis Dupont [Tue, 2 Dec 2025 13:19:42 +0000 (14:19 +0100)] 
[#4230] Checkpoint: to do doc and commands

7 months ago[#4230] Checkpoint: pgsql API and commands to do
Francis Dupont [Tue, 2 Dec 2025 11:06:01 +0000 (12:06 +0100)] 
[#4230] Checkpoint: pgsql API and commands to do

7 months ago[#4230] Finished indexes
Francis Dupont [Thu, 27 Nov 2025 22:57:10 +0000 (23:57 +0100)] 
[#4230] Finished indexes

7 months ago[#4230] Added indexes
Francis Dupont [Thu, 27 Nov 2025 22:00:26 +0000 (23:00 +0100)] 
[#4230] Added indexes

7 months ago[#4245] A retry mechanism for FreeBSD in hammer.py
Andrei Pavel [Thu, 4 Dec 2025 12:57:29 +0000 (14:57 +0200)] 
[#4245] A retry mechanism for FreeBSD in hammer.py

7 months ago[#4245] Add some other packages to hammer.py
Andrei Pavel [Thu, 4 Dec 2025 09:48:51 +0000 (11:48 +0200)] 
[#4245] Add some other packages to hammer.py

7 months ago[#4245] Add sanitizers feature to hammer.py
Andrei Pavel [Thu, 4 Dec 2025 08:49:31 +0000 (10:49 +0200)] 
[#4245] Add sanitizers feature to hammer.py

7 months ago[#4245] Update platforms.rst
Andrei Pavel [Thu, 4 Dec 2025 08:43:27 +0000 (10:43 +0200)] 
[#4245] Update platforms.rst

7 months ago[#4245] Extend hammer.py to Alpine 3.23, Fedora 43, FreeBSD 15
Andrei Pavel [Wed, 3 Dec 2025 09:57:26 +0000 (11:57 +0200)] 
[#4245] Extend hammer.py to Alpine 3.23, Fedora 43, FreeBSD 15

7 months ago[#4224] update release checklist
Wlodzimierz Wencel [Mon, 8 Dec 2025 05:49:17 +0000 (05:49 +0000)] 
[#4224] update release checklist

7 months ago[#4224] Update release_checklist.md
Andrei Pavel [Thu, 4 Dec 2025 15:23:15 +0000 (17:23 +0200)] 
[#4224] Update release_checklist.md

7 months ago[#4224] update to release checklist
Wlodzimierz Wencel [Tue, 2 Dec 2025 08:43:41 +0000 (08:43 +0000)] 
[#4224] update to release checklist

7 months ago[#4224] Update release_checklist.md
Andrei Pavel [Wed, 19 Nov 2025 19:02:42 +0000 (21:02 +0200)] 
[#4224] Update release_checklist.md

8 months ago[#4237] Added missing header
Francis Dupont [Thu, 27 Nov 2025 15:23:53 +0000 (16:23 +0100)] 
[#4237] Added missing header

8 months ago[#4240] bump up Kea version to 3.1.5
Wlodek Wencel [Wed, 26 Nov 2025 18:25:31 +0000 (19:25 +0100)] 
[#4240] bump up Kea version to 3.1.5

8 months ago[#4235] fixed pylint error Kea-3.1.4
Wlodek Wencel [Mon, 24 Nov 2025 13:23:38 +0000 (14:23 +0100)] 
[#4235] fixed pylint error

8 months ago[#4235] updated meson installation in hammer for ubuntu 20.04
Wlodek Wencel [Mon, 24 Nov 2025 13:15:01 +0000 (14:15 +0100)] 
[#4235] updated meson installation in hammer for ubuntu 20.04

8 months ago[#4235] fixed incorrect link and date
Wlodek Wencel [Mon, 24 Nov 2025 12:19:29 +0000 (13:19 +0100)] 
[#4235] fixed incorrect link and date

8 months ago[#4235] release changes
Wlodek Wencel [Mon, 24 Nov 2025 11:19:47 +0000 (12:19 +0100)] 
[#4235] release changes

8 months ago[#4234] rolled back versions of 4 libraries
Wlodek Wencel [Mon, 24 Nov 2025 10:10:14 +0000 (11:10 +0100)] 
[#4234] rolled back versions of 4 libraries

8 months ago[#4234] library version bump up for 3.1.4
Wlodek Wencel [Mon, 24 Nov 2025 09:43:14 +0000 (10:43 +0100)] 
[#4234] library version bump up for 3.1.4

8 months ago[#4165] Increase timeouts in memfile_lease_mgr_unittest.cc
Andrei Pavel [Thu, 20 Nov 2025 08:23:09 +0000 (10:23 +0200)] 
[#4165] Increase timeouts in memfile_lease_mgr_unittest.cc

8 months ago[#4206] fixed data race
Razvan Becheriu [Sat, 1 Nov 2025 12:26:11 +0000 (14:26 +0200)] 
[#4206] fixed data race

8 months ago[#4207] fixed mysql lib unload
Razvan Becheriu [Mon, 3 Nov 2025 12:26:31 +0000 (14:26 +0200)] 
[#4207] fixed mysql lib unload

8 months ago[#4198] Update changelog
Francis Dupont [Fri, 21 Nov 2025 10:35:36 +0000 (11:35 +0100)] 
[#4198] Update changelog

8 months ago[#4198] Applied proposed fix
Francis Dupont [Fri, 21 Nov 2025 10:34:20 +0000 (11:34 +0100)] 
[#4198] Applied proposed fix

8 months ago[#4198] Fixed the lease file path
Francis Dupont [Mon, 10 Nov 2025 16:29:47 +0000 (17:29 +0100)] 
[#4198] Fixed the lease file path

8 months ago[#4141] Finished direct receivers
Francis Dupont [Fri, 21 Nov 2025 09:29:30 +0000 (10:29 +0100)] 
[#4141] Finished direct receivers

8 months ago[#4141] updated unittests
Razvan Becheriu [Fri, 21 Nov 2025 09:07:03 +0000 (11:07 +0200)] 
[#4141] updated unittests