Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redo ProgressLog handling #1603

Merged
merged 10 commits into from
Aug 21, 2023
Merged

Redo ProgressLog handling #1603

merged 10 commits into from
Aug 21, 2023

Conversation

jas88
Copy link
Member

@jas88 jas88 commented Aug 16, 2023

Thread safe ProgressLog handling - retains lock while inserting multiple rows, does it all on a background worker thread, then waits for it to complete at the end of a load job. Working apart from intermittent issue within LoggingDatabase_TestActuallyCreatingIt (on MySQL, oddly)

jas88 and others added 5 commits August 15, 2023 20:15
Implement worker thread for writing ProgressLog entries in background
Lock the ProgressLog table while inserting, to avoid long waits
Implement condition variable to avoid 1s delay between ProgressLog batches
@jas88 jas88 requested a review from JFriel August 16, 2023 13:03
@jas88 jas88 marked this pull request as draft August 16, 2023 13:04
Comment on lines +241 to +244
foreach (var t in TableLoads.Values)
//close any table loads that have not yet completed
if (!t.IsClosed)
t.CloseAndArchive();

Check notice

Code scanning / CodeQL

Missed opportunity to use Where Note

This foreach loop
implicitly filters its target sequence
- consider filtering the sequence explicitly using '.Where(...)'.
Copy link
Collaborator

@JFriel JFriel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change makes sense to me, couple Q's but that's mostly for my own understanding

Rdmp.Core/Logging/DataLoadInfo.cs Show resolved Hide resolved
Rdmp.Core/Logging/DataLoadInfo.cs Show resolved Hide resolved
@JFriel
Copy link
Collaborator

JFriel commented Aug 18, 2023

@jas88 I took a look at the LoggingDatabase_TestActuallyCreatingIt issue. Was fairly inconsistent for me, could cause the test to fail on both MySQL and MSSQL ~40% of the time. It was more consistently failing when the system had been idle for a while.
Adding a 1000ms timeout seems to resolve the issue - ran the same testing with 100% success. Fix adds 4s (2s realistically as it doesn't run Oracle or postgres) to the test suite runtime, are we ok with that?

@jas88 jas88 marked this pull request as ready for review August 18, 2023 22:53
@jas88
Copy link
Member Author

jas88 commented Aug 18, 2023

@JFriel One second would probably have been OK, but didn't fix the root issue properly - the log flush was being skipped after the first call to the close method, so logs would be written "fairly soon ish" after the call. Just switching the flush and repeat-call check around fixes it properly, so the log is always flushed before that method returns. (1s is probably long enough on the fast CI VM Github provides, but with production use on much less powerful VMs with much more contention, I'm betting we'd see multi-minute delays at least...)

@jas88 jas88 merged commit a8921ab into develop Aug 21, 2023
3 checks passed
@jas88 jas88 deleted the feature/logbatching branch August 21, 2023 03:00
jas88 added a commit that referenced this pull request Aug 30, 2023
* Bump Terminal.Gui from 1.13.1 to 1.13.4

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.1 to 1.13.4.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](gui-cs/Terminal.Gui@v1.13.1...v1.13.4)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.13.4 to 1.13.5

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.4 to 1.13.5.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](gui-cs/Terminal.Gui@v1.13.4...v1.13.5)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.6.1 to 2.7.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.6.1 to 2.7.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](svenstaro/upload-release-action@2.6.1...2.7.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.2 to 5.2.3

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.2 to 5.2.3.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](NLog/NLog@v5.2.2...v5.2.3)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.3 to 17.7.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.6.3...v17.7.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/whitespaceetc (#1583)

* Automated formatting and syntax clean
* Match docs to source; whitespace unit test cleanup

* Bump Moq from 4.18.4 to 4.20.1

Bumps [Moq](https://github.com/moq/moq) from 4.18.4 to 4.20.1.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](moq/moq.spikes@v4.18.4...v4.20.1)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.23.0 to 1.23.1

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](shogo82148/actions-setup-perl@v1.23.0...v1.23.1)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/rdmp 13 removable default logging server (#1589)

* make external serverremovable

* no longer throwing out errors

* add catalogue fix

* added todo reminder

* working startup option

* remove fk drop

* fix creation issue

* add todo

* working delete

* invert checkbox ui

* add throw for unexpected no logging server

* rename variables to match descriptions

* fix bad merge

* fix autosave issue

* Bump Moq from 4.20.1 to 4.20.2

Bumps [Moq](https://github.com/moq/moq) from 4.20.1 to 4.20.2.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](moq/moq.spikes@v4.20.1...v4.20.2)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add Clear User Settings Functionality (RDMP-7/GH#749) (#1586)

* Add Clear User Settings button, command and unit test
* Update SelfCertifyingDataAccessPoint.cs - Fix typo


---------

Co-authored-by: jas88 <[email protected]>

* Update UserSettings.cs

Merge fixup

* Bump Moq from 4.20.2 to 4.20.69

Bumps [Moq](https://github.com/moq/moq) from 4.20.2 to 4.20.69.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](moq/moq.spikes@v4.20.2...v4.20.69)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.7.0 to 3.8.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.7.0 to 3.8.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v3.7.0...v3.8.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.1 to 13.2.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.1 to 13.2.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](aaubry/YamlDotNet@v13.1.1...v13.2.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp.Drawing from 1.0.0-beta15 to 1.0.0

Bumps [SixLabors.ImageSharp.Drawing](https://github.com/SixLabors/ImageSharp.Drawing) from 1.0.0-beta15 to 1.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp.Drawing/releases)
- [Commits](SixLabors/ImageSharp.Drawing@v1.0.0-beta15...v1.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp.Drawing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* start to update tests

* compiling tests

* tidy up unused

* attempt to fix some tests

* update tests

* update ui tests

* remove moq

* fix up tests

* fix up test

* fix test

* update tests

* tidy up code

* Bump actions/setup-node from 3.8.0 to 3.8.1

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.0 to 3.8.1.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v3.8.0...v3.8.1)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.7.0 to 17.7.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.7.0...v17.7.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.3 to 1.8.4

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.3 to 1.8.4.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](ravibpatel/AutoUpdater.NET@v1.8.3...v1.8.4)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Redo ProgressLog handling (#1603)

* Update DataLoadInfo.cs - Implement worker thread for writing ProgressLog entries in background
---------

Co-authored-by: James A Sutherland <>
Co-authored-by: James Friel <[email protected]>

* backout incorrect change

* Bump VPKSoft.ScintillaLexers.NET from 1.1.15 to 1.1.16

Bumps [VPKSoft.ScintillaLexers.NET](https://github.com/VPKSoft/ScintillaLexers) from 1.1.15 to 1.1.16.
- [Release notes](https://github.com/VPKSoft/ScintillaLexers/releases)
- [Commits](https://github.com/VPKSoft/ScintillaLexers/commits)

---
updated-dependencies:
- dependency-name: VPKSoft.ScintillaLexers.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update LoadDirectory.cs

Fix typo

* Feature/rdmp 18 remove moq (#1602)

* start to update tests

* compiling tests

* tidy up unused

* attempt to fix some tests

* update tests

* update ui tests

* remove moq

* fix up tests

* fix up test

* fix test

* update tests

* tidy up code

* backout incorrect change

---------

Co-authored-by: James A Sutherland <[email protected]>

* Feature/RDMP-28 Add BeginLoadData & EndLoadData to Datatables (#1598)

* partial fix

* add row peaker update

* fix up whitespace

* add a lot of daat begin loads

* more data load

* fix typo

* RDMP-16 Add Max Message Length Check to Logging Notifications (#1595)

* add message length check

* fix tabbing

* fix codescan alert

* update max length and add env config

* attempt to allow RDMP_

* fix typo

* add codeql update

* Update ToLoggingDatabaseDataLoadEventListener.cs

Adjust string trimming logic, handle ultra-short limits, only parse the environment variable once instead of per logging, avoid double-lookup in OnProgress handler

---------

Co-authored-by: James A Sutherland <[email protected]>

* Bump YamlDotNet from 13.2.0 to 13.3.1 (#1611)

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.2.0 to 13.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](aaubry/YamlDotNet@v13.2.0...v13.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Typo and syntax fixes

* syntax fixes

* Remove CheckForVersionMismatches, no longer needed

* Update DocumentationCrossExaminationTest.cs

Adjust ignorelist - AppData is a system file path not a piece of code

* Update DatabaseTests.cs

Need to initialise MSSQL driver in Fansi before configuring it!

* Fix flatfileattacher circularity

* Test typo fixes

* Syntax cleanups

* Create directory.build.props

* Fix plugin version check code

* Better plugin load failure debugging

* Better plugin load error reporting

* Plugin work

Add Mongo for plugin use, document

* Update ExecuteCommandPrunePlugin.cs

Make plugin pruning more informative, enforce managed-only

* Update ExecuteCommandPrunePlugin.cs

Remove native dependencies instead of rejecting - too hard to avoid inclusion in build

* Update Startup.cs

Add DLL load failure debugging

* Update LoadModuleAssembly.cs

Reset MemoryStream after reading

* Syntax tidy, simplify PersistStringHelper

* Syntax, duplicate dictionary lookups

* Booleans and args.Empty

* Fix infinite loop in time window checker, LINQ cleanup

* Tidy up ObjectConstructor and usage

* Syntax, pattern matching

* Compile fix, remove redundancies

* Syntax cleanups

Type specifiers, commas in lists

* Final syntax cleanup

private/internal modifiers

* Redundancies, unnecessary generics

* Build and syntax fixes

* Tune ColumnForbidder

* Fix Microsoft.NET.Test.Sdk versioning

* System.Resources.Extensions version mismatch

* API and naming fixups

* Update DatabaseTests.cs

Workaround for FAnsi missing OperationCanceledException

* ANOTable recursion fix

* Update DatabaseTests.cs

Explicit variable init

* Update DatabaseTests.cs

Temporary workaround for FAnsi not catching OperationCanceledException

* Update UnitTests.cs

Fix recursion on WhenIHaveA  ObjectExport

* Adjust docs, date bound checking, validation serialisation

* Cleanup, better logging in startup reflection

* RC4

Add Terminal.Gui to Win front end for compatibility with plugins

* String interp

* Syntax, pattern matching

* Make IgnoreAllErrorsCheckNotifier singleton, fix MEF event issue

* Update IgnoreAllErrorsCheckNotifier.cs

Bite the bullet and force singleton mode

* Syntax clean

* Fixup ThrowImmediatelyCheckNotifier.Quiet()

* Remove unit test for obsolete method

* Refactor MEF

* Update ConsoleInputManager.cs

API fixup

* Syntax, MEF

* Syntax

* Update ProposeExecutionWhenTargetIsLoadStageNode.cs

Fix missing f

* Syntax clean

* Type checking fix

* MEF caching, distincting

* Regexes, .Net 7

* API fixup for .Net 7 internal changes

* Prune all non-DLLs in plugins

* Syntax cleaning

* Pattern matching

* Cleanup

* Coalesce

* Update ExecuteCommandPrunePlugin.cs

Fix pruning logic to protect .nuspec files

* Cleanup, dependency update

* Cleanup

* MEF adjustments

* Fix Lazy MEF init

* Update QueryCachingCrossServerTests.cs

Acknowledge that MySQL does have EXCEPT queries now

* Compound assignments

* Syntax

* Dictionary

Avoid double-lookups in dictionary types

* Null propogation

* Null coalesce

* Regexes

* Docs fixup

* Syntax cleanup, remove old DWM check (Win7 only)

* Tidy XML handling

* Whitespace cleanup

* Update DbDataCommandDataFlowSource.cs

Cache schema chunk and clone as needed, begin/end dataload explicitly

* Update Packages.md

Add missing entry for XMLSerializer generator

* Update DataLoadInfo.cs

Deconflict ProgressEventType XML tag

* Dispose of MEF references everywhere

* Update WebFileDownloader.cs

Longer timeout, copy to destination before disposing of request objects

* Update ResearchDataManagementPlatform.csproj

Clean up output directory pollution

* Post merge cleanup - duplicate lines, statics, inlining variables

* Add Equ, remote old Xam settings plugin

* Update LogManager.cs

Load ProgressLog without locking to reduce deadlock risks

* Specify string comparison locale

* Update Startup.cs

Read plugins from exe directory not db

* Update LoadModuleAssembly.cs

Enforce seekability on plugin files

* Update IPluginManager.cs

Namespace fix, docxml was incorrectly referencing a third party Plugin object not the RDMP object of that name

* Static methods where applicable

* Remove SetupMEF, no longer needed

* More readonly fields

* Whitespace and typo fixes

* Update UsefulStuff.cs

Fix BaseDirectory access, avoid Assembly.Location entirely since compiler objects now

* Statics, readonly

* Format fixups

* Pattern matching

* Whitespace, sealed classes

* Format, auto cleanup

* Docs fixup; allow non-public constructors for reflection-invoked classes

* Static and string cleanup

* Typos and string diff fixups

* Update DataFlowPipelineContext.cs

Debug across invoke boundary a bit

* Make ProgressLog timeout 1 hour - insane for single-row inserts, but 2 minutes is still too short...

* Update plugin pack to install to right place

* Move Terminal.Gui to Core rather than duplicating both CLI and GUI refs

* Implement async writer thread for ProgressLog

* Flush log queue unconditionally, even on duplicate DataLoadInfo closes.

* Bugfix: load Win code only in GUI mode, instead of whenever running in WinNT

* Disused files

* Add alias for mistyped Nullity predictor

* Stray newline

* Update ValuePredictsOtherValueNullity.cs

Workaround legacy ValuePredictsOtherValueNullness name

* Format cleanup

* Tidyup

* feature/rc4 cleanup (#1608)

* resharper refactor

* ui refactor from resharper

* refactor tools from resharper

* add fixes

* remove dud file

* attempt fix

* revert db

* add trust server to db yaml

* bugfix/RDMP 31 extraction delect ui issue (#1609)

* fix extraction ui crash

* attempt build fix

* revert build issue

* repoint test db

* remove ampersands

* commend out hang

* bump version

* uncomment

* replace cat with sed

* update build

* fix command hang issue

* add close

* revert changes

* update sripts

* tidy up

---------

Co-authored-by: James A Sutherland <[email protected]>

* partial fix

* passing build

* fixup

* more bad merge fix

* fix explicit disallow

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James A Sutherland <[email protected]>
Co-authored-by: James A Sutherland <>
JFriel added a commit that referenced this pull request Sep 20, 2023
* Bump Newtonsoft.Json from 13.0.1 to 13.0.2

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.1 to 13.0.2.
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](https://github.com/JamesNK/Newtonsoft.Json/compare/13.0.1...13.0.2)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.0.5 to 5.1.0

Bumps [NLog](https://github.com/NLog/NLog) from 5.0.5 to 5.1.0.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.0.5...v5.1.0)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.0.5 to 5.1.0

* Fix -r flag - should have been --results-directory all along

* Bump Newtonsoft.Json from 13.0.1 to 13.0.2

* Bump YamlDotNet from 12.0.2 to 12.1.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.0.2 to 12.1.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.0.2...v12.1.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Moq from 4.18.2 to 4.18.3

Bumps [Moq](https://github.com/moq/moq4) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq4/compare/v4.18.2...v4.18.3)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Moq from 4.18.2 to 4.18.3

* Bump YamlDotNet from 12.0.2 to 12.1.0

* Add CodeQL workflow for GitHub code scanning

* Bump YamlDotNet from 12.1.0 to 12.2.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.1.0 to 12.2.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.1.0...v12.2.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add EnableWindowsTargeting for CodeQL to run on Linux properly

* Bump YamlDotNet from 12.1.0 to 12.2.0

* Bump to latest actions-setup-perl release

* Bump YamlDotNet from 12.2.0 to 12.2.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.2.0 to 12.2.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.2.0...v12.2.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 12.2.0 to 12.2.1

* Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.0 to 17.4.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.4.0...v17.4.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1

* Bump YamlDotNet from 12.2.1 to 12.3.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.2.1 to 12.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.2.1...v12.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 12.2.1 to 12.3.1

* Bump NLog from 5.1.0 to 5.1.1

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.0...v5.1.1)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.0 to 5.1.1

* Bump Moq from 4.18.3 to 4.18.4

Bumps [Moq](https://github.com/moq/moq4) from 4.18.3 to 4.18.4.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq4/compare/v4.18.3...v4.18.4)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Moq from 4.18.3 to 4.18.4

* Bump Terminal.Gui from 1.7.2 to 1.9.0

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.7.2 to 1.9.0.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.7.2...v1.9.0)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.5.1 to 3.6.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.5.1 to 3.6.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.5.1...v3.6.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Method name fixups

* Bump Spectre.Console from 0.45.0 to 0.46.0

Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.45.0 to 0.46.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.45.0...0.46.0)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.3.0 to 2.4.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.3.0...2.4.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Spectre.Console from 0.45.0 to 0.46.0

* Bump System.Threading.AccessControl from 7.0.0 to 7.0.1

Bumps [System.Threading.AccessControl](https://github.com/dotnet/runtime) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](https://github.com/dotnet/runtime/compare/v7.0.0...v7.0.1)

---
updated-dependencies:
- dependency-name: System.Threading.AccessControl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump System.Threading.AccessControl from 7.0.0 to 7.0.1

* Bump NunitXml.TestLogger from 3.0.127 to 3.0.131

Bumps [NunitXml.TestLogger](https://github.com/spekt/nunit.testlogger) from 3.0.127 to 3.0.131.
- [Release notes](https://github.com/spekt/nunit.testlogger/releases)
- [Changelog](https://github.com/spekt/nunit.testlogger/blob/master/CHANGELOG.md)
- [Commits](https://github.com/spekt/nunit.testlogger/compare/v3.0.127...v3.0.131)

---
updated-dependencies:
- dependency-name: NunitXml.TestLogger
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.4.0 to 2.4.1

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.4.0 to 2.4.1.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.4.0...2.4.1)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Syntax cleanup

* Make DB file locator accept both / and \ as delimiters

* Make file locator handle Unix and DOS style paths more smartly, fix typos

* Trim trailing slashes from SQL Server directory location

* Replace clunky slow file copier which got file permissions wrong with integral .Net version

* Bump NLog from 5.1.1 to 5.1.2

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.1 to 5.1.2.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.1...v5.1.2)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.1 to 5.1.2

* famfamfam.com icon site domain expired, use archive.org copies for now

* Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.1 to 17.5.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.4.1...v17.5.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.4.1 to 2.5.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.4.1 to 2.5.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.4.1...2.5.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0

* Bump YamlDotNet from 12.3.1 to 13.0.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.3.1 to 13.0.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.3.1...v13.0.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 12.3.1 to 13.0.1

* Bump NUnit3TestAdapter from 4.3.1 to 4.4.2

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.3.1 to 4.4.2.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](https://github.com/nunit/nunit3-vs-adapter/compare/V4.3.1...V4.4.2)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp from 2.1.3 to 3.0.0

Bumps [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 2.1.3 to 3.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp/releases)
- [Commits](https://github.com/SixLabors/ImageSharp/compare/v2.1.3...v3.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp from 2.1.3 to 3.0.0

* Bump Autoupdater.NET.Official from 1.7.6 to 1.7.7

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.7.6 to 1.7.7.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.7.6...v1.7.7)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Newtonsoft.Json from 13.0.2 to 13.0.3

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.2 to 13.0.3.
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](https://github.com/JamesNK/Newtonsoft.Json/compare/13.0.2...13.0.3)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update solution file

* Bump NLog from 5.1.2 to 5.1.3

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.2 to 5.1.3.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.2...v5.1.3)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.2 to 5.1.3

* Revert premature .sln change

* Bump shogo82148/actions-setup-perl from 1.20.1 to 1.20.2 (#1535)

* Bump SixLabors.ImageSharp from 3.0.0 to 3.0.1 (#1539)

* Bump Newtonsoft.Json from 13.0.2 to 13.0.3

* Bump Terminal.Gui from 1.9.0 to 1.10.0 (#1536)

* Bump YamlDotNet from 13.0.1 to 13.0.2 (#1533)

* Bump Terminal.Gui from 1.10.0 to 1.10.1 (#1541)

* Bump Autoupdater.NET.Official from 1.7.7 to 1.8.0

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.7.7 to 1.8.0.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.7.7...v1.8)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.0.2 to 13.1.0 (#1542)

* Bump shogo82148/actions-setup-perl from 1.20.2 to 1.21.0

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.20.2 to 1.21.0.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.20.2...v1.21.0)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.3 to 5.1.4

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.3 to 5.1.4.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.3...v5.1.4)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.0 to 1.8.1

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.0 to 1.8.1.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8...v1.8.1)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.5.0 to 17.6.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.5.0...v17.6.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.1 to 1.8.2

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.1 to 1.8.2.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8.1...v1.8.2)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* v8.1.0-rc2 (#1534)

Dependency and syntax updates, notably Scintilla, updates to plugin handling (WIP)

* Bump Spectre.Console from 0.46.0 to 0.47.0

Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.46.0 to 0.47.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.46.0...0.47.0)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Scintilla.NET from 5.3.2.6 to 5.3.2.7

Bumps [Scintilla.NET](https://github.com/VPKSoft/ScintillaNET) from 5.3.2.6 to 5.3.2.7.
- [Release notes](https://github.com/VPKSoft/ScintillaNET/releases)
- [Commits](https://github.com/VPKSoft/ScintillaNET/compare/v.5.3.2.6...v.5.3.2.7)

---
updated-dependencies:
- dependency-name: Scintilla.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump coverlet.collector from 3.2.0 to 6.0.0

Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 3.2.0 to 6.0.0.
- [Release notes](https://github.com/coverlet-coverage/coverlet/releases)
- [Commits](https://github.com/coverlet-coverage/coverlet/compare/v3.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.10.1 to 1.11.2

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.10.1 to 1.11.2.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.10.1...v1.11.2)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.5.0 to 2.6.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.5.0 to 2.6.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.5.0...2.6.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.11.2 to 1.12.1

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.11.2 to 1.12.1.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.11.2...v1.12.1)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.4 to 5.1.5

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.4 to 5.1.5.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.4...v5.1.5)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-dotnet from 3.0.3 to 3.1.0

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3.0.3 to 3.1.0.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v3.0.3...v3.1.0)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-dotnet from 3.1.0 to 3.2.0

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v3.1.0...v3.2.0)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* RC3 (#1548)

* Remove old SafeDirectoryCatalog constructor, update XML doc, ensure all pre-loaded assemblies reflected in lookup
* Syntax cleanup
* Fix typo, mark AssemblyResolver class static since it is never instantiated
* Enable PublishSingleFile for main GUI EXE now it works cleanly
* Remove redundant resolver check for already-loaded assemblies
* Fix typos, give more information on problem types
* Move string-handling unit test out of db-specific test class, parameterise test cases
* Stop documentation code trying to find docs for Moq fake classes
* Streamline Github CI
* Mark DatabaseTests non-parallel for nUnit
* Remove unused usings
* PermissionWindow test fixup, avoid confusion between UTC and local time
* Merge MapsDirectlyToDatabaseTable into Rdmp.Core
* Tidy tests, write CSV to streams
* Add CHI unit tests
* Fix CHANGELOG test to be flexible about paths, speed up misses on RecentHistoryOfControls add/update path
* Rename the multiple Readme.md files to reduce confusion
* Remove appveyor leftover file
* Refactor into nuspec-free build
* Streamline comment store loading, use libarchive for more flexible formats (7z)
* Update Scintilla and Hunspell
* Tidy multi-threaded catalogue unit tests
* Use 'read committed' since snapshot is problematic to enable
* Make UsefulStuff NonBatchQuery respect transactions when in use
* Re-do RSA code avoiding XML assembly exceptions
* Make MDFAttacher less eager to delete files and re-copy
* XMLDoc fixup
* Reinstate warning when MDFAttacher overwrites destination, fix up unit test accordingly
* Make ToMemoryCheckNotifier get worst constant time not linear
* Update RDMP versioning call
* Update YamlDotNet to 13.0.2
* Remove disused pencil.cur, nhunspell DLLs
* Stop UpdateMaxRowVer throwing exceptions querying non-existent versioning data
* Make CommentStore ignore non-XML files
* Make displayed version info consistent
* Bump NLog from 5.1.1 to 5.1.2
* Fix MDF attacher test cleanup
* Typo fixes; only set isolation on MSSQL transactions not other engines
* Update build.yml
* Update pack,push stages for nospec build
* Fix syntax for setting Github variables
* Add license info, fix name of UI package
* Fixup unit test exception specs
* Fix up prune implementation, add new entries to known files list
* Fix HIC.RDMP.Plugin.UI nupkg name
* Add Github headers for dead link checker per docs
* Skip checking RDMP source compare links, too many Github errors
* Warning fixups
* Namespace and Array.Empty cleanup
* Replace direct hex-RSA-encrypted string with base64(rsa encrypted aes key)+base64(aes encrypted string) - removing length limits on plaintext. Support reading existing ciphertext for backwards compatibility.
* Rename RSA object, make non-static
* Update for Terminal.Gui Autocomplete API change
* Fallback crypto: use the really bad crypto if we have no key for now
* Update CommitInProgress.cs
* Remove LibHarmony thanks to Scintilla fix upstream
* Command type checking fixups
* Dependencies update
* Improve package list error reporting, remove disused Protocols package (only used for Oracle, and already imported transitively by FAnsiSql once we reach 3..1)
* HTTP fetcher update
* Remove duplicate inheritance
* Swallow file not found exceptions on wonky dependencies too
* Adjust iteration in type loader
* Update ThrowImmediatelyActivator.cs: ThrowImmediatelyActivator is not interactive, so mark it as such
* Update RowVerCache.cs - Get buffer sizing right when building hex strings
* Update DitaExtractorTests.cs - Tidy syntax, try to avoid quadratic-time search for name duplicates
* Refactor HTML clipboard handling, add unit test - No more random numbers and string searching!
* Lazy without wrapping constants: Give Lazy constants directly instead of capturing as Lambdas
* Server GC
* Update AggregateGraphUI.cs

* Bump NLog from 5.1.5 to 5.2.0

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.5 to 5.2.0.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.5...v5.2.0)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NUnit3TestAdapter from 4.4.2 to 4.5.0

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.4.2 to 4.5.0.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](https://github.com/nunit/nunit3-vs-adapter/compare/V4.4.2...V4.5.0)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.6.0 to 2.6.1

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.6.0 to 2.6.1.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.6.0...2.6.1)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump HIC.FAnsiSql from 3.0.1 to 3.1.0 (#1559)

* Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.0 to 17.6.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.0...v17.6.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.0 to 1.21.1

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.0 to 1.21.1.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.0...v1.21.1)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.1 to 17.6.2

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.1 to 17.6.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.1...v17.6.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.1 to 1.21.2

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.1 to 1.21.2.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.1...v1.21.2)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.2 to 1.8.3

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.2 to 1.8.3.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8.2...v1.8.3)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.2 to 17.6.3.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.2...v17.6.3)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.2 to 1.21.3

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.2 to 1.21.3.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.2...v1.21.3)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.0 to 13.1.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.0 to 13.1.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.0...v13.1.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.0 to 5.2.1

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.0 to 5.2.1.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.0...v5.2.1)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump LibArchive.Net from 0.1.3 to 0.1.4

Bumps LibArchive.Net from 0.1.3 to 0.1.4.

---
updated-dependencies:
- dependency-name: LibArchive.Net
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.3 to 1.22.0

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.3 to 1.22.0.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.3...v1.22.0)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.1 to 5.2.2

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.1 to 5.2.2.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.1...v5.2.2)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.6.0 to 3.7.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.6.0 to 3.7.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.6.0...v3.7.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NunitXml.TestLogger from 3.0.131 to 3.1.15

Bumps [NunitXml.TestLogger](https://github.com/spekt/nunit.testlogger) from 3.0.131 to 3.1.15.
- [Release notes](https://github.com/spekt/nunit.testlogger/releases)
- [Changelog](https://github.com/spekt/nunit.testlogger/blob/master/CHANGELOG.md)
- [Commits](https://github.com/spekt/nunit.testlogger/compare/v3.0.131...v3.1.15)

---
updated-dependencies:
- dependency-name: NunitXml.TestLogger
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Syntax cleanup (#1577)

* [auto] Accessibility modifiers

* [auto] Trailing commas

* [auto] Redundant parentheses

* [auto] Redundant qualifiers

* [auto] Built in types

* Update PluginCohortCompilerFactory.cs

Missed redundant qualifier

* [auto] Nameof not bare string for variable names

* [auto] Type specifiers

* [auto] Nullprop

* [auto] Range indexer

* Update DatabaseTests.cs

Need to load FAnsi before trying to change settings in it, not after!

* Fix typo in 'committed', use collection inits

* Docs fix

Match example code in Markdown with actual code

* [auto] Remove redundant brackets on object construction calls

* [auto] Remove redundant lambda parentheses

* [auto] Semicolon not needed after Enum

* Update ICheckable.cs

Typos

* [auto] Redundant array creation syntax

* [auto] Redundant array parens

* [auto] Redundant else

* [auto] Static methods

* Remove disused test bits

* [auto] TryGetValue

Avoid double-lookups

* [auto] TryAdd instead of Contains/Add

* [auto] Stray semicolons

* Indentation fixes

* [auto] Inline out variable declarations

* [auto] Use pattern matching instead of cast-nulls

* [auto] Pattern matching 2

* [auto] Static invocation fixes

* [auto] Object initialisers

* Update TestDatabasesSettings.cs

Yaml fixup

* Update SelectedDataSetsCheckerTests.cs

TestDB prefix fix

* Update DoubleClickAndDragDrop.md

Docs fix

* Update DelimitedFlatFileAttacher.cs

Circular dependency - tried to copy Culture from itself

* Update FlatFileAttacher.cs

Fix typo

* Annotation cleanup

Remove disused, add Usage annotation where needed

* Statics

* .Net 7

* Adjust CodeQL build step

* Put TargetFramework back in csproj since sharing fails

* [auto] Statics

* Array.Empty instead of new

* Avoid counting when not needed

* [auto] StringBuilder Append char

* Container tuning

* [auto] String.Contains char

* [auto] Reference comparison cleanup

* Update UITests.cs

Re-do grotty reflection based poking inside WinForms innards for error finding

* Clean up persistence strings, UI list handling

* Inline variable declarations

* Update UITests.cs

Fix up ErrorProvider retrieval

* [auto] Variable init

* [auto] MaxBy/MinBy instead of order+first

* [auto] Null coalesce

* [auto] EventArgs.Empty

* [auto] Variable scoping

* More efficient delete and key handling

* [auto] Variable scoping and whitespace

* [auto] LINQ and ternaries

* Fix indent

* Ternaries and whitespace

* [auto] Nameof, with, interpolations, whitespace

* [Auto] Switch expressions

* Regex, simplify news

* [auto] Pattern matching, double lookups

* Fix double-lookups

* Update ConsoleGuiActivator.cs

Avoid using FilePaths as Enumerable

* Update CohortIdentificationTaskExecution.cs

Adjust GC finalize

* Update UITimeoutAttribute.cs

Adjust UI timeout for GUI tests

* switch expression

* Timeouts, library import

* Update Rdmp.UI.Tests.csproj

Allow unsafe blocks for static library import code

* [auto] Switch expressions

* Update Annotations.cs

Flip order of enums so Default isn't flagged as a "duplicate"

* Update RDMPConcept.cs

Fix copyright line

* Make colour values internal not public

---------

Co-authored-by: James A Sutherland <>

* Bump Terminal.Gui from 1.12.1 to 1.13.1

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.12.1 to 1.13.1.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.12.1...v1.13.1)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.22.0 to 1.23.0

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.22.0...v1.23.0)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.13.1 to 1.13.4

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.1 to 1.13.4.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.1...v1.13.4)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.13.4 to 1.13.5

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.4 to 1.13.5.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.4...v1.13.5)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.6.1 to 2.7.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.6.1 to 2.7.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.6.1...2.7.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.2 to 5.2.3

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.2 to 5.2.3.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.2...v5.2.3)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.3 to 17.7.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.3...v17.7.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/whitespaceetc (#1583)

* Automated formatting and syntax clean
* Match docs to source; whitespace unit test cleanup

* Bump Moq from 4.18.4 to 4.20.1

Bumps [Moq](https://github.com/moq/moq) from 4.18.4 to 4.20.1.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq/compare/v4.18.4...v4.20.1)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.23.0 to 1.23.1

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.23.0...v1.23.1)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/rdmp 13 removable default logging server (#1589)

* make external serverremovable

* no longer throwing out errors

* add catalogue fix

* added todo reminder

* working startup option

* remove fk drop

* fix creation issue

* add todo

* working delete

* invert checkbox ui

* add throw for unexpected no logging server

* rename variables to match descriptions

* fix bad merge

* fix autosave issue

* Bump Moq from 4.20.1 to 4.20.2

Bumps [Moq](https://github.com/moq/moq) from 4.20.1 to 4.20.2.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq/compare/v4.20.1...v4.20.2)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add Clear User Settings Functionality (RDMP-7/GH#749) (#1586)

* Add Clear User Settings button, command and unit test
* Update SelfCertifyingDataAccessPoint.cs - Fix typo


---------

Co-authored-by: jas88 <[email protected]>

* Update UserSettings.cs

Merge fixup

* Bump Moq from 4.20.2 to 4.20.69

Bumps [Moq](https://github.com/moq/moq) from 4.20.2 to 4.20.69.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq/compare/v4.20.2...v4.20.69)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.7.0 to 3.8.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.7.0 to 3.8.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.7.0...v3.8.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.1 to 13.2.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.1 to 13.2.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.1...v13.2.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp.Drawing from 1.0.0-beta15 to 1.0.0

Bumps [SixLabors.ImageSharp.Drawing](https://github.com/SixLabors/ImageSharp.Drawing) from 1.0.0-beta15 to 1.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp.Drawing/releases)
- [Commits](https://github.com/SixLabors/ImageSharp.Drawing/compare/v1.0.0-beta15...v1.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp.Drawing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.8.0 to 3.8.1

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.0 to 3.8.1.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.8.0...v3.8.1)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.7.0 to 17.7.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.0...v17.7.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.3 to 1.8.4

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.3 to 1.8.4.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8.3...v1.8.4)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Redo ProgressLog handling (#1603)

* Update DataLoadInfo.cs - Implement worker thread for writing ProgressLog entries in background
---------

Co-authored-by: James A Sutherland <>
Co-authored-by: James Friel <[email protected]>

* Bump VPKSoft.ScintillaLexers.NET from 1.1.15 to 1.1.16

Bumps [VPKSoft.ScintillaLexers.NET](https://github.com/VPKSoft/ScintillaLexers) from 1.1.15 to 1.1.16.
- [Release notes](https://github.com/VPKSoft/ScintillaLexers/releases)
- [Commits](https://github.com/VPKSoft/ScintillaLexers/commits)

---
updated-dependencies:
- dependency-name: VPKSoft.ScintillaLexers.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update LoadDirectory.cs

Fix typo

* Feature/rdmp 18 remove moq (#1602)

* start to update tests

* compiling tests

* tidy up unused

* attempt to fix some tests

* update tests

* update ui tests

* remove moq

* fix up tests

* fix up test

* fix test

* update tests

* tidy up code

* backout incorrect change

---------

Co-authored-by: James A Sutherland <[email protected]>

* Feature/RDMP-28 Add BeginLoadData & EndLoadData to Datatables (#1598)

* partial fix

* add row peaker update

* fix up whitespace

* add a lot of daat begin loads

* more data load

* fix typo

* RDMP-16 Add Max Message Length Check to Logging Notifications (#1595)

* add message length check

* fix tabbing

* fix codescan alert

* update max length and add env config

* attempt to allow RDMP_

* fix typo

* add codeql update

* Update ToLoggingDatabaseDataLoadEventListener.cs

Adjust string trimming logic, handle ultra-short limits, only parse the environment variable once instead of per logging, avoid double-lookup in OnProgress handler

---------

Co-authored-by: James A Sutherland <[email protected]>

* Bump YamlDotNet from 13.2.0 to 13.3.1 (#1611)

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.2.0 to 13.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.2.0...v13.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.7.1 to 17.7.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.1...v17.7.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp from 3.0.1 to 3.0.2 (#1616)

Bumps [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/SixLabors/ImageSharp/releases)
- [Commits](https://github.com/SixLabors/ImageSharp/compare/v3.0.1...v3.0.2)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Terminal.Gui from 1.13.5 to 1.14.0 (#1615)

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.5 to 1.14.0.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.5...v1.14.0)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump NLog from 5.2.3 to 5.2.4

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.3 to 5.2.4.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.3...v5.2.4)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Scintilla.NET from 5.3.2.7 to 5.3.2.9

Bumps [Scintilla.NET](https://github.com/VPKSoft/ScintillaNET) from 5.3.2.7 to 5.3.2.9.
- [Release notes](https://github.com/VPKSoft/ScintillaNET/releases)
- [Commits](https://github.com/VPKSoft/ScintillaNET/compare/v.5.3.2.7...v.5.3.2.9)

---
updated-dependencies:
- dependency-name: Scintilla.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump crazy-max/ghaction-chocolatey from 2 to 3

Bumps [crazy-max/ghaction-chocolatey](https://github.com/crazy-max/ghaction-chocolatey) from 2 to 3.
- [Release notes](https://github.com/crazy-max/ghaction-chocolatey/releases)
- [Commits](https://github.com/crazy-max/ghaction-chocolatey/compare/v2...v3)

---
updated-dependencies:
- dependency-name: crazy-max/ghaction-chocolatey
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp.Drawing from 1.0.0 to 2.0.0

Bumps [SixLabors.ImageSharp.Drawing](https://github.com/SixLabors/ImageSharp.Drawing) from 1.0.0 to 2.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp.Drawing/releases)
- [Commits](https://github.com/SixLabors/ImageSharp.Drawing/compare/v1.0.0...v2.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp.Drawing
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NSubstitute from 5.0.0 to 5.1.0

Bumps NSubstitute from 5.0.0 to 5.1.0.

---
updated-dependencies:
- dependency-name: NSubstitute
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/checkout from 3 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/rc4 (#1570)

* Syntax tidying
* Dependency updates
* Event handling singletons (ThrowImmediately and co)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: James A Sutherland <>
Co-authored-by: James Friel <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 8.1.0 changelog (#1627)

* 8.1.0 changelog
---------
Co-authored-by: James A Sutherland <>

* Bump HIC.FAnsiSql from 3.1.0 to 3.1.1 (#1621)

* Bump Terminal.Gui from 1.13.5 to 1.14.0

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.5 to 1.14.0.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.5...v1.14.0)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump MongoDB.Driver from 2.20.0 to 2.21.0

Bumps [MongoDB.Driver](https://github.com/mongodb/mongo-csharp-driver) from 2.20.0 to 2.21.0.
- [Release notes](https://github.com/mongodb/mongo-csharp-driver/releases)
- [Commits](https://github.com/mongodb/mongo-csharp-driver/compare/v2.20.0...v2.21.0)

---
updated-dependencies:
- dependency-name: MongoDB.Driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.1 to 13.3.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.1 to 13.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.1...v13.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix logging server lookup logic (#1629)

Co-authored-by: James A Sutherland <>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James A Sutherland <>
Co-authored-by: James A Sutherland <[email protected]>
Co-authored-by: LGTM Migrator <[email protected]>
Co-authored-by: malmas001 <[email protected]>
JFriel added a commit that referenced this pull request Jan 9, 2024
* 8.1.0 Release (#1628)

* Bump Newtonsoft.Json from 13.0.1 to 13.0.2

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.1 to 13.0.2.
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](https://github.com/JamesNK/Newtonsoft.Json/compare/13.0.1...13.0.2)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.0.5 to 5.1.0

Bumps [NLog](https://github.com/NLog/NLog) from 5.0.5 to 5.1.0.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.0.5...v5.1.0)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.0.5 to 5.1.0

* Fix -r flag - should have been --results-directory all along

* Bump Newtonsoft.Json from 13.0.1 to 13.0.2

* Bump YamlDotNet from 12.0.2 to 12.1.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.0.2 to 12.1.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.0.2...v12.1.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Moq from 4.18.2 to 4.18.3

Bumps [Moq](https://github.com/moq/moq4) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq4/compare/v4.18.2...v4.18.3)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Moq from 4.18.2 to 4.18.3

* Bump YamlDotNet from 12.0.2 to 12.1.0

* Add CodeQL workflow for GitHub code scanning

* Bump YamlDotNet from 12.1.0 to 12.2.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.1.0 to 12.2.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.1.0...v12.2.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add EnableWindowsTargeting for CodeQL to run on Linux properly

* Bump YamlDotNet from 12.1.0 to 12.2.0

* Bump to latest actions-setup-perl release

* Bump YamlDotNet from 12.2.0 to 12.2.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.2.0 to 12.2.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.2.0...v12.2.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 12.2.0 to 12.2.1

* Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.0 to 17.4.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.4.0...v17.4.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1

* Bump YamlDotNet from 12.2.1 to 12.3.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.2.1 to 12.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.2.1...v12.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 12.2.1 to 12.3.1

* Bump NLog from 5.1.0 to 5.1.1

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.0...v5.1.1)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.0 to 5.1.1

* Bump Moq from 4.18.3 to 4.18.4

Bumps [Moq](https://github.com/moq/moq4) from 4.18.3 to 4.18.4.
- [Release notes](https://github.com/moq/moq4/releases)
- [Changelog](https://github.com/moq/moq4/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq4/compare/v4.18.3...v4.18.4)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Moq from 4.18.3 to 4.18.4

* Bump Terminal.Gui from 1.7.2 to 1.9.0

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.7.2 to 1.9.0.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.7.2...v1.9.0)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.5.1 to 3.6.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.5.1 to 3.6.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.5.1...v3.6.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Method name fixups

* Bump Spectre.Console from 0.45.0 to 0.46.0

Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.45.0 to 0.46.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.45.0...0.46.0)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.3.0 to 2.4.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.3.0...2.4.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Spectre.Console from 0.45.0 to 0.46.0

* Bump System.Threading.AccessControl from 7.0.0 to 7.0.1

Bumps [System.Threading.AccessControl](https://github.com/dotnet/runtime) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](https://github.com/dotnet/runtime/compare/v7.0.0...v7.0.1)

---
updated-dependencies:
- dependency-name: System.Threading.AccessControl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump System.Threading.AccessControl from 7.0.0 to 7.0.1

* Bump NunitXml.TestLogger from 3.0.127 to 3.0.131

Bumps [NunitXml.TestLogger](https://github.com/spekt/nunit.testlogger) from 3.0.127 to 3.0.131.
- [Release notes](https://github.com/spekt/nunit.testlogger/releases)
- [Changelog](https://github.com/spekt/nunit.testlogger/blob/master/CHANGELOG.md)
- [Commits](https://github.com/spekt/nunit.testlogger/compare/v3.0.127...v3.0.131)

---
updated-dependencies:
- dependency-name: NunitXml.TestLogger
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.4.0 to 2.4.1

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.4.0 to 2.4.1.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.4.0...2.4.1)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Syntax cleanup

* Make DB file locator accept both / and \ as delimiters

* Make file locator handle Unix and DOS style paths more smartly, fix typos

* Trim trailing slashes from SQL Server directory location

* Replace clunky slow file copier which got file permissions wrong with integral .Net version

* Bump NLog from 5.1.1 to 5.1.2

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.1 to 5.1.2.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.1...v5.1.2)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.1 to 5.1.2

* famfamfam.com icon site domain expired, use archive.org copies for now

* Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.4.1 to 17.5.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.4.1...v17.5.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.4.1 to 2.5.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.4.1 to 2.5.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.4.1...2.5.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0

* Bump YamlDotNet from 12.3.1 to 13.0.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 12.3.1 to 13.0.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v12.3.1...v13.0.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 12.3.1 to 13.0.1

* Bump NUnit3TestAdapter from 4.3.1 to 4.4.2

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.3.1 to 4.4.2.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](https://github.com/nunit/nunit3-vs-adapter/compare/V4.3.1...V4.4.2)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp from 2.1.3 to 3.0.0

Bumps [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 2.1.3 to 3.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp/releases)
- [Commits](https://github.com/SixLabors/ImageSharp/compare/v2.1.3...v3.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp from 2.1.3 to 3.0.0

* Bump Autoupdater.NET.Official from 1.7.6 to 1.7.7

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.7.6 to 1.7.7.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.7.6...v1.7.7)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Newtonsoft.Json from 13.0.2 to 13.0.3

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.2 to 13.0.3.
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](https://github.com/JamesNK/Newtonsoft.Json/compare/13.0.2...13.0.3)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update solution file

* Bump NLog from 5.1.2 to 5.1.3

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.2 to 5.1.3.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.2...v5.1.3)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.2 to 5.1.3

* Revert premature .sln change

* Bump shogo82148/actions-setup-perl from 1.20.1 to 1.20.2 (#1535)

* Bump SixLabors.ImageSharp from 3.0.0 to 3.0.1 (#1539)

* Bump Newtonsoft.Json from 13.0.2 to 13.0.3

* Bump Terminal.Gui from 1.9.0 to 1.10.0 (#1536)

* Bump YamlDotNet from 13.0.1 to 13.0.2 (#1533)

* Bump Terminal.Gui from 1.10.0 to 1.10.1 (#1541)

* Bump Autoupdater.NET.Official from 1.7.7 to 1.8.0

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.7.7 to 1.8.0.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.7.7...v1.8)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.0.2 to 13.1.0 (#1542)

* Bump shogo82148/actions-setup-perl from 1.20.2 to 1.21.0

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.20.2 to 1.21.0.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.20.2...v1.21.0)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.3 to 5.1.4

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.3 to 5.1.4.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.3...v5.1.4)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.0 to 1.8.1

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.0 to 1.8.1.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8...v1.8.1)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.5.0 to 17.6.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.5.0...v17.6.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.1 to 1.8.2

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.1 to 1.8.2.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8.1...v1.8.2)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* v8.1.0-rc2 (#1534)

Dependency and syntax updates, notably Scintilla, updates to plugin handling (WIP)

* Bump Spectre.Console from 0.46.0 to 0.47.0

Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.46.0 to 0.47.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.46.0...0.47.0)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Scintilla.NET from 5.3.2.6 to 5.3.2.7

Bumps [Scintilla.NET](https://github.com/VPKSoft/ScintillaNET) from 5.3.2.6 to 5.3.2.7.
- [Release notes](https://github.com/VPKSoft/ScintillaNET/releases)
- [Commits](https://github.com/VPKSoft/ScintillaNET/compare/v.5.3.2.6...v.5.3.2.7)

---
updated-dependencies:
- dependency-name: Scintilla.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump coverlet.collector from 3.2.0 to 6.0.0

Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 3.2.0 to 6.0.0.
- [Release notes](https://github.com/coverlet-coverage/coverlet/releases)
- [Commits](https://github.com/coverlet-coverage/coverlet/compare/v3.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.10.1 to 1.11.2

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.10.1 to 1.11.2.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.10.1...v1.11.2)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.5.0 to 2.6.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.5.0 to 2.6.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.5.0...2.6.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.11.2 to 1.12.1

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.11.2 to 1.12.1.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.11.2...v1.12.1)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.1.4 to 5.1.5

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.4 to 5.1.5.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.4...v5.1.5)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-dotnet from 3.0.3 to 3.1.0

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3.0.3 to 3.1.0.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v3.0.3...v3.1.0)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-dotnet from 3.1.0 to 3.2.0

Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](https://github.com/actions/setup-dotnet/compare/v3.1.0...v3.2.0)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* RC3 (#1548)

* Remove old SafeDirectoryCatalog constructor, update XML doc, ensure all pre-loaded assemblies reflected in lookup
* Syntax cleanup
* Fix typo, mark AssemblyResolver class static since it is never instantiated
* Enable PublishSingleFile for main GUI EXE now it works cleanly
* Remove redundant resolver check for already-loaded assemblies
* Fix typos, give more information on problem types
* Move string-handling unit test out of db-specific test class, parameterise test cases
* Stop documentation code trying to find docs for Moq fake classes
* Streamline Github CI
* Mark DatabaseTests non-parallel for nUnit
* Remove unused usings
* PermissionWindow test fixup, avoid confusion between UTC and local time
* Merge MapsDirectlyToDatabaseTable into Rdmp.Core
* Tidy tests, write CSV to streams
* Add CHI unit tests
* Fix CHANGELOG test to be flexible about paths, speed up misses on RecentHistoryOfControls add/update path
* Rename the multiple Readme.md files to reduce confusion
* Remove appveyor leftover file
* Refactor into nuspec-free build
* Streamline comment store loading, use libarchive for more flexible formats (7z)
* Update Scintilla and Hunspell
* Tidy multi-threaded catalogue unit tests
* Use 'read committed' since snapshot is problematic to enable
* Make UsefulStuff NonBatchQuery respect transactions when in use
* Re-do RSA code avoiding XML assembly exceptions
* Make MDFAttacher less eager to delete files and re-copy
* XMLDoc fixup
* Reinstate warning when MDFAttacher overwrites destination, fix up unit test accordingly
* Make ToMemoryCheckNotifier get worst constant time not linear
* Update RDMP versioning call
* Update YamlDotNet to 13.0.2
* Remove disused pencil.cur, nhunspell DLLs
* Stop UpdateMaxRowVer throwing exceptions querying non-existent versioning data
* Make CommentStore ignore non-XML files
* Make displayed version info consistent
* Bump NLog from 5.1.1 to 5.1.2
* Fix MDF attacher test cleanup
* Typo fixes; only set isolation on MSSQL transactions not other engines
* Update build.yml
* Update pack,push stages for nospec build
* Fix syntax for setting Github variables
* Add license info, fix name of UI package
* Fixup unit test exception specs
* Fix up prune implementation, add new entries to known files list
* Fix HIC.RDMP.Plugin.UI nupkg name
* Add Github headers for dead link checker per docs
* Skip checking RDMP source compare links, too many Github errors
* Warning fixups
* Namespace and Array.Empty cleanup
* Replace direct hex-RSA-encrypted string with base64(rsa encrypted aes key)+base64(aes encrypted string) - removing length limits on plaintext. Support reading existing ciphertext for backwards compatibility.
* Rename RSA object, make non-static
* Update for Terminal.Gui Autocomplete API change
* Fallback crypto: use the really bad crypto if we have no key for now
* Update CommitInProgress.cs
* Remove LibHarmony thanks to Scintilla fix upstream
* Command type checking fixups
* Dependencies update
* Improve package list error reporting, remove disused Protocols package (only used for Oracle, and already imported transitively by FAnsiSql once we reach 3..1)
* HTTP fetcher update
* Remove duplicate inheritance
* Swallow file not found exceptions on wonky dependencies too
* Adjust iteration in type loader
* Update ThrowImmediatelyActivator.cs: ThrowImmediatelyActivator is not interactive, so mark it as such
* Update RowVerCache.cs - Get buffer sizing right when building hex strings
* Update DitaExtractorTests.cs - Tidy syntax, try to avoid quadratic-time search for name duplicates
* Refactor HTML clipboard handling, add unit test - No more random numbers and string searching!
* Lazy without wrapping constants: Give Lazy constants directly instead of capturing as Lambdas
* Server GC
* Update AggregateGraphUI.cs

* Bump NLog from 5.1.5 to 5.2.0

Bumps [NLog](https://github.com/NLog/NLog) from 5.1.5 to 5.2.0.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.1.5...v5.2.0)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NUnit3TestAdapter from 4.4.2 to 4.5.0

Bumps [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 4.4.2 to 4.5.0.
- [Release notes](https://github.com/nunit/nunit3-vs-adapter/releases)
- [Commits](https://github.com/nunit/nunit3-vs-adapter/compare/V4.4.2...V4.5.0)

---
updated-dependencies:
- dependency-name: NUnit3TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.6.0 to 2.6.1

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.6.0 to 2.6.1.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.6.0...2.6.1)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump HIC.FAnsiSql from 3.0.1 to 3.1.0 (#1559)

* Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.0 to 17.6.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.0...v17.6.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.0 to 1.21.1

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.0 to 1.21.1.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.0...v1.21.1)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.1 to 17.6.2

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.1 to 17.6.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.1...v17.6.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.1 to 1.21.2

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.1 to 1.21.2.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.1...v1.21.2)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.2 to 1.8.3

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.2 to 1.8.3.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8.2...v1.8.3)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.2 to 17.6.3.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.2...v17.6.3)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.2 to 1.21.3

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.2 to 1.21.3.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.2...v1.21.3)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.0 to 13.1.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.0 to 13.1.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.0...v13.1.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.0 to 5.2.1

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.0 to 5.2.1.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.0...v5.2.1)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump LibArchive.Net from 0.1.3 to 0.1.4

Bumps LibArchive.Net from 0.1.3 to 0.1.4.

---
updated-dependencies:
- dependency-name: LibArchive.Net
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.21.3 to 1.22.0

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.21.3 to 1.22.0.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.21.3...v1.22.0)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.1 to 5.2.2

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.1 to 5.2.2.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.1...v5.2.2)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.6.0 to 3.7.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.6.0 to 3.7.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.6.0...v3.7.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NunitXml.TestLogger from 3.0.131 to 3.1.15

Bumps [NunitXml.TestLogger](https://github.com/spekt/nunit.testlogger) from 3.0.131 to 3.1.15.
- [Release notes](https://github.com/spekt/nunit.testlogger/releases)
- [Changelog](https://github.com/spekt/nunit.testlogger/blob/master/CHANGELOG.md)
- [Commits](https://github.com/spekt/nunit.testlogger/compare/v3.0.131...v3.1.15)

---
updated-dependencies:
- dependency-name: NunitXml.TestLogger
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Syntax cleanup (#1577)

* [auto] Accessibility modifiers

* [auto] Trailing commas

* [auto] Redundant parentheses

* [auto] Redundant qualifiers

* [auto] Built in types

* Update PluginCohortCompilerFactory.cs

Missed redundant qualifier

* [auto] Nameof not bare string for variable names

* [auto] Type specifiers

* [auto] Nullprop

* [auto] Range indexer

* Update DatabaseTests.cs

Need to load FAnsi before trying to change settings in it, not after!

* Fix typo in 'committed', use collection inits

* Docs fix

Match example code in Markdown with actual code

* [auto] Remove redundant brackets on object construction calls

* [auto] Remove redundant lambda parentheses

* [auto] Semicolon not needed after Enum

* Update ICheckable.cs

Typos

* [auto] Redundant array creation syntax

* [auto] Redundant array parens

* [auto] Redundant else

* [auto] Static methods

* Remove disused test bits

* [auto] TryGetValue

Avoid double-lookups

* [auto] TryAdd instead of Contains/Add

* [auto] Stray semicolons

* Indentation fixes

* [auto] Inline out variable declarations

* [auto] Use pattern matching instead of cast-nulls

* [auto] Pattern matching 2

* [auto] Static invocation fixes

* [auto] Object initialisers

* Update TestDatabasesSettings.cs

Yaml fixup

* Update SelectedDataSetsCheckerTests.cs

TestDB prefix fix

* Update DoubleClickAndDragDrop.md

Docs fix

* Update DelimitedFlatFileAttacher.cs

Circular dependency - tried to copy Culture from itself

* Update FlatFileAttacher.cs

Fix typo

* Annotation cleanup

Remove disused, add Usage annotation where needed

* Statics

* .Net 7

* Adjust CodeQL build step

* Put TargetFramework back in csproj since sharing fails

* [auto] Statics

* Array.Empty instead of new

* Avoid counting when not needed

* [auto] StringBuilder Append char

* Container tuning

* [auto] String.Contains char

* [auto] Reference comparison cleanup

* Update UITests.cs

Re-do grotty reflection based poking inside WinForms innards for error finding

* Clean up persistence strings, UI list handling

* Inline variable declarations

* Update UITests.cs

Fix up ErrorProvider retrieval

* [auto] Variable init

* [auto] MaxBy/MinBy instead of order+first

* [auto] Null coalesce

* [auto] EventArgs.Empty

* [auto] Variable scoping

* More efficient delete and key handling

* [auto] Variable scoping and whitespace

* [auto] LINQ and ternaries

* Fix indent

* Ternaries and whitespace

* [auto] Nameof, with, interpolations, whitespace

* [Auto] Switch expressions

* Regex, simplify news

* [auto] Pattern matching, double lookups

* Fix double-lookups

* Update ConsoleGuiActivator.cs

Avoid using FilePaths as Enumerable

* Update CohortIdentificationTaskExecution.cs

Adjust GC finalize

* Update UITimeoutAttribute.cs

Adjust UI timeout for GUI tests

* switch expression

* Timeouts, library import

* Update Rdmp.UI.Tests.csproj

Allow unsafe blocks for static library import code

* [auto] Switch expressions

* Update Annotations.cs

Flip order of enums so Default isn't flagged as a "duplicate"

* Update RDMPConcept.cs

Fix copyright line

* Make colour values internal not public

---------

Co-authored-by: James A Sutherland <>

* Bump Terminal.Gui from 1.12.1 to 1.13.1

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.12.1 to 1.13.1.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.12.1...v1.13.1)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.22.0 to 1.23.0

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.22.0 to 1.23.0.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.22.0...v1.23.0)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.13.1 to 1.13.4

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.1 to 1.13.4.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.1...v1.13.4)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Terminal.Gui from 1.13.4 to 1.13.5

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.4 to 1.13.5.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.4...v1.13.5)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump svenstaro/upload-release-action from 2.6.1 to 2.7.0

Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.6.1 to 2.7.0.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/svenstaro/upload-release-action/compare/2.6.1...2.7.0)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.2 to 5.2.3

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.2 to 5.2.3.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.2...v5.2.3)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.6.3 to 17.7.0.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.6.3...v17.7.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/whitespaceetc (#1583)

* Automated formatting and syntax clean
* Match docs to source; whitespace unit test cleanup

* Bump Moq from 4.18.4 to 4.20.1

Bumps [Moq](https://github.com/moq/moq) from 4.18.4 to 4.20.1.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq/compare/v4.18.4...v4.20.1)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.23.0 to 1.23.1

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.23.0...v1.23.1)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/rdmp 13 removable default logging server (#1589)

* make external serverremovable

* no longer throwing out errors

* add catalogue fix

* added todo reminder

* working startup option

* remove fk drop

* fix creation issue

* add todo

* working delete

* invert checkbox ui

* add throw for unexpected no logging server

* rename variables to match descriptions

* fix bad merge

* fix autosave issue

* Bump Moq from 4.20.1 to 4.20.2

Bumps [Moq](https://github.com/moq/moq) from 4.20.1 to 4.20.2.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq/compare/v4.20.1...v4.20.2)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add Clear User Settings Functionality (RDMP-7/GH#749) (#1586)

* Add Clear User Settings button, command and unit test
* Update SelfCertifyingDataAccessPoint.cs - Fix typo


---------

Co-authored-by: jas88 <[email protected]>

* Update UserSettings.cs

Merge fixup

* Bump Moq from 4.20.2 to 4.20.69

Bumps [Moq](https://github.com/moq/moq) from 4.20.2 to 4.20.69.
- [Release notes](https://github.com/moq/moq/releases)
- [Changelog](https://github.com/moq/moq/blob/main/CHANGELOG.md)
- [Commits](https://github.com/moq/moq/compare/v4.20.2...v4.20.69)

---
updated-dependencies:
- dependency-name: Moq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.7.0 to 3.8.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.7.0 to 3.8.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.7.0...v3.8.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.1 to 13.2.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.1 to 13.2.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.1...v13.2.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp.Drawing from 1.0.0-beta15 to 1.0.0

Bumps [SixLabors.ImageSharp.Drawing](https://github.com/SixLabors/ImageSharp.Drawing) from 1.0.0-beta15 to 1.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp.Drawing/releases)
- [Commits](https://github.com/SixLabors/ImageSharp.Drawing/compare/v1.0.0-beta15...v1.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp.Drawing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/setup-node from 3.8.0 to 3.8.1

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.0 to 3.8.1.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.8.0...v3.8.1)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.7.0 to 17.7.1.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.0...v17.7.1)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Autoupdater.NET.Official from 1.8.3 to 1.8.4

Bumps [Autoupdater.NET.Official](https://github.com/ravibpatel/AutoUpdater.NET) from 1.8.3 to 1.8.4.
- [Release notes](https://github.com/ravibpatel/AutoUpdater.NET/releases)
- [Commits](https://github.com/ravibpatel/AutoUpdater.NET/compare/v1.8.3...v1.8.4)

---
updated-dependencies:
- dependency-name: Autoupdater.NET.Official
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Redo ProgressLog handling (#1603)

* Update DataLoadInfo.cs - Implement worker thread for writing ProgressLog entries in background
---------

Co-authored-by: James A Sutherland <>
Co-authored-by: James Friel <[email protected]>

* Bump VPKSoft.ScintillaLexers.NET from 1.1.15 to 1.1.16

Bumps [VPKSoft.ScintillaLexers.NET](https://github.com/VPKSoft/ScintillaLexers) from 1.1.15 to 1.1.16.
- [Release notes](https://github.com/VPKSoft/ScintillaLexers/releases)
- [Commits](https://github.com/VPKSoft/ScintillaLexers/commits)

---
updated-dependencies:
- dependency-name: VPKSoft.ScintillaLexers.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update LoadDirectory.cs

Fix typo

* Feature/rdmp 18 remove moq (#1602)

* start to update tests

* compiling tests

* tidy up unused

* attempt to fix some tests

* update tests

* update ui tests

* remove moq

* fix up tests

* fix up test

* fix test

* update tests

* tidy up code

* backout incorrect change

---------

Co-authored-by: James A Sutherland <[email protected]>

* Feature/RDMP-28 Add BeginLoadData & EndLoadData to Datatables (#1598)

* partial fix

* add row peaker update

* fix up whitespace

* add a lot of daat begin loads

* more data load

* fix typo

* RDMP-16 Add Max Message Length Check to Logging Notifications (#1595)

* add message length check

* fix tabbing

* fix codescan alert

* update max length and add env config

* attempt to allow RDMP_

* fix typo

* add codeql update

* Update ToLoggingDatabaseDataLoadEventListener.cs

Adjust string trimming logic, handle ultra-short limits, only parse the environment variable once instead of per logging, avoid double-lookup in OnProgress handler

---------

Co-authored-by: James A Sutherland <[email protected]>

* Bump YamlDotNet from 13.2.0 to 13.3.1 (#1611)

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.2.0 to 13.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.2.0...v13.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.7.1 to 17.7.2.
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](https://github.com/microsoft/vstest/compare/v17.7.1...v17.7.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp from 3.0.1 to 3.0.2 (#1616)

Bumps [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/SixLabors/ImageSharp/releases)
- [Commits](https://github.com/SixLabors/ImageSharp/compare/v3.0.1...v3.0.2)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump Terminal.Gui from 1.13.5 to 1.14.0 (#1615)

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.5 to 1.14.0.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.5...v1.14.0)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump NLog from 5.2.3 to 5.2.4

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.3 to 5.2.4.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.3...v5.2.4)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Scintilla.NET from 5.3.2.7 to 5.3.2.9

Bumps [Scintilla.NET](https://github.com/VPKSoft/ScintillaNET) from 5.3.2.7 to 5.3.2.9.
- [Release notes](https://github.com/VPKSoft/ScintillaNET/releases)
- [Commits](https://github.com/VPKSoft/ScintillaNET/compare/v.5.3.2.7...v.5.3.2.9)

---
updated-dependencies:
- dependency-name: Scintilla.NET
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump crazy-max/ghaction-chocolatey from 2 to 3

Bumps [crazy-max/ghaction-chocolatey](https://github.com/crazy-max/ghaction-chocolatey) from 2 to 3.
- [Release notes](https://github.com/crazy-max/ghaction-chocolatey/releases)
- [Commits](https://github.com/crazy-max/ghaction-chocolatey/compare/v2...v3)

---
updated-dependencies:
- dependency-name: crazy-max/ghaction-chocolatey
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump SixLabors.ImageSharp.Drawing from 1.0.0 to 2.0.0

Bumps [SixLabors.ImageSharp.Drawing](https://github.com/SixLabors/ImageSharp.Drawing) from 1.0.0 to 2.0.0.
- [Release notes](https://github.com/SixLabors/ImageSharp.Drawing/releases)
- [Commits](https://github.com/SixLabors/ImageSharp.Drawing/compare/v1.0.0...v2.0.0)

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp.Drawing
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NSubstitute from 5.0.0 to 5.1.0

Bumps NSubstitute from 5.0.0 to 5.1.0.

---
updated-dependencies:
- dependency-name: NSubstitute
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/checkout from 3 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Feature/rc4 (#1570)

* Syntax tidying
* Dependency updates
* Event handling singletons (ThrowImmediately and co)

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: James A Sutherland <>
Co-authored-by: James Friel <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 8.1.0 changelog (#1627)

* 8.1.0 changelog
---------
Co-authored-by: James A Sutherland <>

* Bump HIC.FAnsiSql from 3.1.0 to 3.1.1 (#1621)

* Bump Terminal.Gui from 1.13.5 to 1.14.0

Bumps [Terminal.Gui](https://github.com/gui-cs/Terminal.Gui) from 1.13.5 to 1.14.0.
- [Release notes](https://github.com/gui-cs/Terminal.Gui/releases)
- [Commits](https://github.com/gui-cs/Terminal.Gui/compare/v1.13.5...v1.14.0)

---
updated-dependencies:
- dependency-name: Terminal.Gui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump MongoDB.Driver from 2.20.0 to 2.21.0

Bumps [MongoDB.Driver](https://github.com/mongodb/mongo-csharp-driver) from 2.20.0 to 2.21.0.
- [Release notes](https://github.com/mongodb/mongo-csharp-driver/releases)
- [Commits](https://github.com/mongodb/mongo-csharp-driver/compare/v2.20.0...v2.21.0)

---
updated-dependencies:
- dependency-name: MongoDB.Driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.1.1 to 13.3.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.1.1 to 13.3.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.1.1...v13.3.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix logging server lookup logic (#1629)

Co-authored-by: James A Sutherland <>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James A Sutherland <>
Co-authored-by: James A Sutherland <[email protected]>
Co-authored-by: LGTM Migrator <[email protected]>
Co-authored-by: malmas001 <[email protected]>

* Merge Latest Release into main (#1702)

* Bump YamlDotNet from 13.3.1 to 13.4.0

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.3.1 to 13.4.0.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.3.1...v13.4.0)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump shogo82148/actions-setup-perl from 1.23.1 to 1.24.1

Bumps [shogo82148/actions-setup-perl](https://github.com/shogo82148/actions-setup-perl) from 1.23.1 to 1.24.1.
- [Release notes](https://github.com/shogo82148/actions-setup-perl/releases)
- [Commits](https://github.com/shogo82148/actions-setup-perl/compare/v1.23.1...v1.24.1)

---
updated-dependencies:
- dependency-name: shogo82148/actions-setup-perl
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix checkbox issue

* improve confirmation text (#1639)

* improve confirmation text
* Loop tidyup, use var where possible

---------

Co-authored-by: jas88 <[email protected]>

* correct typo in create logging sql (#1640)

* Feature/ci codescan (#1641)

* Move SecurityCodescan.VS2019 to run on Github CI alone, integrate results with CodeQL
* Remove SecurityCodescan from Packages.md, no longer used via Nuget

---------

Co-authored-by: James A Sutherland <[email protected]>

* hide source control when not available

* Remove old Plugin object bits, tidy up (#1636)

* Remove old Plugin object bits, tidy up

* Purge remaining bits of AllExpiredPluginsNode

* Fix plugin display name in tree

* Update CreateNewDataExtractionProjectUI.cs

Casting fix

* Feature/rdmp42 delete plugins (#1642)

* add ui plugin delete functionality

* Warning and inheritance redundancy cleanups

* Narrow scope of catch clause per CodeQL warning

* Tidy Plugin name retrieval

---------

Co-authored-by: James A Sutherland <>
Co-authored-by: James Friel <[email protected]>

* Bump MongoDB.Driver from 2.21.0 to 2.22.0

Bumps [MongoDB.Driver](https://github.com/mongodb/mongo-csharp-driver) from 2.21.0 to 2.22.0.
- [Release notes](https://github.com/mongodb/mongo-csharp-driver/releases)
- [Commits](https://github.com/mongodb/mongo-csharp-driver/compare/v2.21.0...v2.22.0)

---
updated-dependencies:
- dependency-name: MongoDB.Driver
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump YamlDotNet from 13.4.0 to 13.5.2 (#1644)

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.4.0 to 13.5.2.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.4.0...v13.5.2)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump YamlDotNet from 13.5.2 to 13.7.0 (#1647)

* Bump SSH.NET from 2020.0.2 to 2023.0.0 (#1646)

* Bump YamlDotNet from 13.7.0 to 13.7.1

Bumps [YamlDotNet](https://github.com/aaubry/YamlDotNet) from 13.7.0 to 13.7.1.
- [Release notes](https://github.com/aaubry/YamlDotNet/releases)
- [Commits](https://github.com/aaubry/YamlDotNet/compare/v13.7.0...v13.7.1)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump NLog from 5.2.4 to 5.2.5

Bumps [NLog](https://github.com/NLog/NLog) from 5.2.4 to 5.2.5.
- [Release notes](https://github.com/NLog/NLog/releases)
- [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/NLog/NLog/compare/v5.2.4...v5.2.5)

---
updated-dependencies:
- dependency-name: NLog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* New FTP/FTPS support, improve SFTP (#1649)

Co-authored-by: James Friel <[email protected]>

* Cut Windows exe file counts (#1650)

* Cut Windows exe file counts

* Remove manual deletion of files dotnet publish used to create

* Fix up docs links

* More doc link fixups

* Fix FAnsiSql Implementations README links

* Make GUI and CLI Windows exes single-file, update MSI accordingly

* Build source zip early on for inclusion later

---------

Co-authored-by: James Friel <[email protected]>
Co-authored-by: James A Sutherland <>

* Bump actions/setup-node from 3.8.1 to 4.0.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.1 to 4.0.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3.8.1...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Task/rdmp-32 Fix Progress Log writing using excessive resources (#1657)

* add load

* readd sorting

* revert sorting

* tidy up code

* Task/rdmp 32 Name DataTable Chunks (#1658)

* add chunk naming
* bump to 8.1.1-r1
* Add heading for WIP 8.1.1 release

---------

Co-authored-by: James A Sutherland <[email protected]>

* RDMP-15 Use .bak files as Data Loads (#1656)

* basic ui triggers
* working dl

---------

Co-authored-by: James A Sutherland <[email protected]>

* Bump FluentFTP from 48.0.1 to 48.0.3

Bumps [FluentFTP](https://github.com/robinrodricks/FluentFTP) from 48.0.1 to 48.0.3.
- [Release notes](https://github.com/robinrodricks/FluentFTP/releases)
- [Changelog](https://github.…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants