[PR #10] [MERGED] Dev irc abstraction fixes #12

Closed
opened 2026-09-04 00:49:41 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RedWizardsLab/EchoHub/pull/10
Author: @HueByte
Created: 2/21/2026
Status: Merged
Merged: 2/21/2026
Merged by: @HueByte

Base: devHead: dev_irc_abstraction_fixes


📝 Commits (1)

  • c0d3801 Add comprehensive unit tests for IRC command handling and message formatting

📊 Changes

14 files changed (+1907 additions, -23 deletions)

View changed files

📝 docs/changelog/index.md (+2 -0)
📝 docs/changelog/toc.yml (+2 -0)
📝 docs/changelog/v0.2.4.md (+1 -1)
docs/changelog/v0.2.5.md (+14 -0)
📝 src/Directory.Build.props (+1 -1)
📝 src/EchoHub.Server.Irc/IrcClientConnection.cs (+8 -2)
📝 src/EchoHub.Server.Irc/IrcCommandHandler.cs (+20 -16)
📝 src/EchoHub.Server.Irc/IrcGatewayService.cs (+4 -3)
src/EchoHub.Tests/Irc/IrcBroadcasterTests.cs (+316 -0)
src/EchoHub.Tests/Irc/IrcClientConnectionTests.cs (+213 -0)
src/EchoHub.Tests/Irc/IrcCommandHandlerTests.cs (+620 -0)
src/EchoHub.Tests/Irc/IrcMessageFormatterTests.cs (+294 -0)
src/EchoHub.Tests/Irc/IrcMessageTests.cs (+183 -0)
src/EchoHub.Tests/Irc/TestHelpers.cs (+229 -0)

📄 Description

Summary

Attempts to make IRC connection more stable


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RedWizardsLab/EchoHub/pull/10 **Author:** [@HueByte](https://github.com/HueByte) **Created:** 2/21/2026 **Status:** ✅ Merged **Merged:** 2/21/2026 **Merged by:** [@HueByte](https://github.com/HueByte) **Base:** `dev` ← **Head:** `dev_irc_abstraction_fixes` --- ### 📝 Commits (1) - [`c0d3801`](https://github.com/RedWizardsLab/EchoHub/commit/c0d38015ff8188e7127aa3bb9dbbdf6629696607) Add comprehensive unit tests for IRC command handling and message formatting ### 📊 Changes **14 files changed** (+1907 additions, -23 deletions) <details> <summary>View changed files</summary> 📝 `docs/changelog/index.md` (+2 -0) 📝 `docs/changelog/toc.yml` (+2 -0) 📝 `docs/changelog/v0.2.4.md` (+1 -1) ➕ `docs/changelog/v0.2.5.md` (+14 -0) 📝 `src/Directory.Build.props` (+1 -1) 📝 `src/EchoHub.Server.Irc/IrcClientConnection.cs` (+8 -2) 📝 `src/EchoHub.Server.Irc/IrcCommandHandler.cs` (+20 -16) 📝 `src/EchoHub.Server.Irc/IrcGatewayService.cs` (+4 -3) ➕ `src/EchoHub.Tests/Irc/IrcBroadcasterTests.cs` (+316 -0) ➕ `src/EchoHub.Tests/Irc/IrcClientConnectionTests.cs` (+213 -0) ➕ `src/EchoHub.Tests/Irc/IrcCommandHandlerTests.cs` (+620 -0) ➕ `src/EchoHub.Tests/Irc/IrcMessageFormatterTests.cs` (+294 -0) ➕ `src/EchoHub.Tests/Irc/IrcMessageTests.cs` (+183 -0) ➕ `src/EchoHub.Tests/Irc/TestHelpers.cs` (+229 -0) </details> ### 📄 Description # Summary Attempts to make IRC connection more stable --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Stone_Red added the pull-request label 2026-09-04 00:49:41 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RedWizardsLab/EchoHub#12