feat(events): add event system and logging framework (closes #24)#61
Merged
developerfred merged 2 commits intomainfrom Mar 20, 2026
Merged
feat(events): add event system and logging framework (closes #24)#61developerfred merged 2 commits intomainfrom
developerfred merged 2 commits intomainfrom
Conversation
…ncies Implements Issue #21 - Package Manager - Add Package struct with name, version, dependencies, metadata - Add Version struct with parsing, comparison (semver) - Add PackageRegistry for storing and retrieving packages - Add PackageResolver for dependency resolution with conflict detection - Add 22 TDD tests covering package lifecycle, versioning, and resolution Co-authored-by: codingsh <codingsh>
Implements Issue #24 - Event System and Logging Framework Event System: - Event struct with level, topic, message, data, timestamp - EventLevel enum (Trace, Debug, Info, Warning, Error, Critical) - EventEmitter with emission, filtering, history management - EventSubscription for pattern-based filtering Logging Framework: - Logger with level filtering - LogEntry with structured metadata - InMemoryLogStorage with rotation policies (DeleteOldest, DeleteNewest, NoRotation) - LogCompressor for storage optimization - 24 new tests
30 tasks
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.
Summary
Implements Issue #24 - Event System and Logging Framework
Event System
Eventstruct with level, topic, message, data, timestampEventLevelenum (Trace, Debug, Info, Warning, Error, Critical)EventEmitterwith emission, filtering, history managementEventSubscriptionfor pattern-based filteringLogging Framework
Loggerwith level filteringLogEntrywith structured metadataInMemoryLogStoragewith rotation policies (DeleteOldest, DeleteNewest, NoRotation)LogCompressorfor storage optimizationTest Results