Skip to content

OmniSerp v0.8.0 Release Notes

Release Date: March 2026

This release migrates the module path from the agentplexus organization to plexusone.

Breaking Changes

Module Path Changed

The Go module path has changed from github.com/agentplexus/omniserp to github.com/plexusone/omniserp.

Before (v0.7.0):

import "github.com/agentplexus/omniserp"
import "github.com/agentplexus/omniserp/client"

After (v0.8.0):

import "github.com/plexusone/omniserp"
import "github.com/plexusone/omniserp/client"

What's Changed

Changed

  • Module path migrated from github.com/agentplexus/omniserp to github.com/plexusone/omniserp
  • Updated omnivault-keyring dependency to github.com/plexusone/omnivault-keyring v0.2.0
  • Updated vaultguard dependency to github.com/plexusone/vaultguard v0.3.0
  • All internal imports updated to use new module path
  • Documentation URLs updated to plexusone organization
  • Policy path changed from ~/.agentplexus to ~/.vaultguard
  • CI workflows migrated to standard plexusone reusable workflows

Fixed

  • Add gosec G704 suppressions for SSRF false positives in API clients

Build

  • Remove rendered HTML documentation (regenerate with Marp)
  • Add example binaries to .gitignore

Installation

go get github.com/plexusone/omniserp@v0.8.0

Migration Guide

  1. Update your go.mod imports:
  2. Change github.com/agentplexus/omniserp to github.com/plexusone/omniserp

  3. Run go mod tidy

  4. Update any import statements in your code

  5. If using secure mode, update policy path:

  6. Move ~/.agentplexus/policy.json to ~/.vaultguard/policy.json

Dependencies

This release requires:

  • github.com/plexusone/omnivault-keyring v0.2.0
  • github.com/plexusone/vaultguard v0.3.0