Release Notes: v0.3.0¶
Release Date: 2026-03-01
Summary¶
This release updates the module path following the GitHub organization rename from agentplexus to plexusone.
Breaking Changes¶
Module Path Changed¶
The Go module path has changed from github.com/agentplexus/omnichat to github.com/plexusone/omnichat.
Before:
After:
Upgrade Guide¶
Update all import statements in your code:
# Using sed (macOS)
find . -name "*.go" -exec sed -i '' 's|github.com/agentplexus/omnichat|github.com/plexusone/omnichat|g' {} +
# Using sed (Linux)
find . -name "*.go" -exec sed -i 's|github.com/agentplexus/omnichat|github.com/plexusone/omnichat|g' {} +
Then update your dependencies:
Other Changes¶
Tests¶
- Added router tests for
containsURLandProcessWithVoicecovering response modes and URL detection
Internal¶
- Fixed
gofmtformatting in router tests