545 display issues with csv columnizer#548
Merged
Hirogen merged 6 commits intoDevelopmentfrom Mar 8, 2026
Merged
Conversation
This was
linked to
issues
Mar 6, 2026
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a significant refactor to the columnizer interfaces and related classes, moving from legacy interfaces to new memory-based interfaces. The changes deprecate the old interfaces, update implementations to use the new ones, and remove obsolete code. This modernizes the codebase, clarifies interface usage, and improves maintainability.
Interface Modernization and Deprecation:
Marked legacy interfaces such as
IColumn,IColumnizedLogLine,IColumnizerConfigurator,IColumnizerPriority, andIInitColumnizeras obsolete, guiding developers to use their new memory-based counterparts (e.g.,IColumnMemory,IColumnizedLogLineMemory, etc.) instead. [1] [2] [3] [4] [5] [6]Updated memory-based interfaces (
IColumnMemory,IColumnizedLogLineMemory,IAutoLogLineMemoryColumnizerCallback,IColumnizerConfiguratorMemory,IColumnizerPriorityMemory,IInitColumnizerMemory) to no longer inherit from their obsolete counterparts, and removed redundantnewmembers. [1] [2] [3] [4] [5] [6] [7]Implementation Updates:
Refactored
AutoColumnizerto implementILogLineMemoryColumnizerinstead of the obsoleteILogLineColumnizer, and updated its method signatures to use memory-based types. [1] [2] [3]Removed obsolete interface implementations and members from
ColumnizedLogLineandColumnclasses. [1] [2]API and Usability Improvements:
Enhanced the
IContextMenuEntryinterface by marking old methods as obsolete and adding new overloads that use memory-based types, including improved XML documentation for clarity. [1] [2]Added a
LoadConfigmethod toIColumnizerConfiguratorMemoryfor improved configuration management.Other Notable Changes:
Removed the
LogLineExtensionsTestsunit test class and updated theToClipBoardTextextension to only support memory-based log lines. [1] [2]Minor project file and namespace updates, such as adding a root namespace and suppressing a new compiler warning. [1] [2]
These changes collectively modernize the columnizer API, encourage migration to safer and more efficient memory-based interfaces, and clean up obsolete code paths.