Changelog
Version history, new features, and breaking changes for Pushary
Intelligence Layer, June 2026
Current agent-side version:
- Agent hooks (
@pushary/agent-hooks): 0.14.0
Pushary started watching your decisions and learning from them. It now shows what every agent is working on, records what they actually did, and brings the same depth to Codex that Claude Code already had.
New
- Policy Autopilot. Pushary mines your approval history and suggests the rules you keep approving by hand. Approve
git push14 times in a repo, get a one-tap rule that auto-approves it. Your phone buzzes less every week. Policies - Fleet Board. Fire several prompts and walk away. One board shows every agent as a card with its task title and live state (working, waiting on you, done, errored), answerable inline. Control Panel
- Agent Receipts. Every session ends with a receipt of what changed: files edited, commands run, commits created. Paths and command heads only, never your code. Searchable and exportable. (Agent Pro / Team.)
- Weekly digest. One email a week: how many times your agents stopped to ask, how many your policies cleared automatically, and the rules worth adding next.
- Codex native hooks. Codex now gets the full control loop through its native hooks: per-tool policy, phone approvals, the kill switch, task titles, and receipts. Setup writes
~/.codex/hooks.jsonon Codex 0.122 and above, with a notify fallback for older versions. Codex setup - Arg-aware policies. Rules now match command shape, not just tool name:
Bash(npm test:*),Bash(git status), or a bareBash. "Always denyrm -rf" is finally something you can express. Policies - Mobile-aware onboarding. Sign up on a phone and the flow connects your phone first, then emails you the one-line setup command for when you are back at your computer. No more dead-ending on a terminal step.
Changed
- A rule set to deny with a zero-second timeout now denies instantly with no push, instead of pushing and timing out into a deny. If you had such a rule, the push will stop. That is the rule doing what it says.
- The policies panel and the subscription page were redesigned: plain-language rules with controls behind a tap, and a calm billing page in place of the upgrade wall.
Fixed
- Accepted policy suggestions and saved rules take effect on the agent immediately, instead of waiting up to five minutes for the local cache to expire.
- The append-only audit trail now also pins the tool and command-target columns, so the immutable record covers receipts.
Awareness Layer — May 2026
Current agent-side version:
- Agent hooks (
@pushary/agent-hooks): 0.9.0
The multi-agent control layer for AI coding agents. Run agents in parallel, see which one is blocked, and stay in control from your phone.
New
- Per-agent identity. Every session is keyed by
sessionId+ a hashedmachineId, so parallel windows of the same agent no longer collapse into one row. Control Panel - Multi-agent control panel &
list_sessions. A read-only MCP tool and dashboard view of the live fleet, with a Blocked Queue that floats the agent waiting on you to the top. Control Panel - Kill switch. Halt a runaway session from the dashboard or the lock screen — denies every tool call, even auto-approved ones, until you release it. (Agent Pro / Team.) Kill Switch
- Permission policy editor. Set per-tool approval mode, timeout, and timeout action in the dashboard. Policies
- Teach-on-Tap. "Always allow this tool" on the decision page mints a durable auto-approve policy. Policies
- Append-only audit trail + export. Database-enforced immutable record of every question, approval, and notification, with CSV/JSON export. (Agent Pro / Team.) Audit Trail
- Delivery receipts, fallback & telemetry. Web-push acknowledgment tracking, latency telemetry, and an email fallback for undelivered agent approvals. Receiving Notifications
- Agent pricing tiers. Free / Agent / Agent Pro / Team, every paid plan a card-first 7-day trial. Pricing
Fixed
- Parallel-agent decision loss. Ending one session no longer cancels another live session's pending approval — cleanup is now scoped to the finishing session.
- Per-session rate limits. Approval questions are bounded per session (3) and per site (25) so a fan-out of agents is never throttled by a single one.
- MCP scaling. Replaced a full Redis keyspace scan with a per-site pending-question index.
Latest Release - January 2026
Current versions:
- Client SDK (
@pushary/sdk): 1.0.5 - Server SDK (
@pushary/server): 1.0.1 - Platform: 1.0.0
Initial public release of Pushary push notification platform.
Features
Client SDK (@pushary/sdk)
- Browser push notification support (Chrome, Firefox, Safari, Edge, Opera)
- Service worker integration
- Auto-prompt and manual permission flow
- Subscriber identification with external IDs
- Tag-based segmentation
- Click and impression tracking
- iOS Safari PWA support
- Retry queue for offline reliability
- Device detection utilities
- TypeScript support with full type definitions
Server SDK (@pushary/server)
- Complete REST API client for Node.js
- Subscriber management (list, get, update, delete, count)
- Campaign management (create, update, send, pause, resume, stats)
- Template management for reusable notifications
- Direct notification sending (by subscriber ID, external ID, or tags)
- Flow automation (trigger-based notification sequences)
- TypeScript support with full type definitions
Platform Features
- Multi-site support with isolated VAPID keys
- Team collaboration with role-based access
- A/B testing for campaigns (Starter plan and above)
- Flow automation with triggers and steps
- Analytics dashboard with delivery and engagement metrics
- Rate limiting per plan tier
- Plan-based feature gating
- Subscriber segmentation with tags and filters
- Campaign scheduling
- Data retention based on plan
Authentication
- Two-tier API key system:
- Site Key (
pk_xxx) for client-side use - Full API Key (
pk_xxx.sk_xxx) for server-side use
- Site Key (
- Domain validation for client requests
- SHA-256 hashed API key storage
- Rate limiting per workspace and plan
Integrations
- Shopify integration (via extension)
- Webhook support for events
- REST API for custom integrations
API Endpoints
Client SDK Endpoints:
POST /api/v1/subscribe- Subscribe to notificationsPOST /api/v1/unsubscribe- Unsubscribe from notificationsPOST /api/v1/track- Track eventsPOST /api/v1/identify- Set external ID and tagsPOST /api/v1/subscription-change- Update subscription endpointGET /api/v1/site/:siteSlug- Get site configuration
Server API Endpoints:
POST /api/v1/server/send- Send notifications directlyGET /api/v1/server/subscribers- List subscribersGET /api/v1/server/subscribers/:id- Get subscriberPATCH /api/v1/server/subscribers/:id- Update subscriberDELETE /api/v1/server/subscribers/:id- Delete subscriberGET /api/v1/server/subscribers/count- Get subscriber countGET /api/v1/server/campaigns- List campaignsPOST /api/v1/server/campaigns- Create campaignGET /api/v1/server/campaigns/:id- Get campaignPATCH /api/v1/server/campaigns/:id- Update campaignDELETE /api/v1/server/campaigns/:id- Delete campaignPOST /api/v1/server/campaigns/:id/send- Send campaignPOST /api/v1/server/campaigns/:id/pause- Pause campaignPOST /api/v1/server/campaigns/:id/resume- Resume campaignGET /api/v1/server/campaigns/:id/stats- Get campaign statisticsGET /api/v1/server/templates- List templatesPOST /api/v1/server/templates- Create templateGET /api/v1/server/templates/:id- Get templatePATCH /api/v1/server/templates/:id- Update templateDELETE /api/v1/server/templates/:id- Delete templateGET /api/v1/server/flows- List flowsPOST /api/v1/server/flows- Create flowGET /api/v1/server/flows/:id- Get flowPATCH /api/v1/server/flows/:id- Update flowDELETE /api/v1/server/flows/:id- Delete flowPOST /api/v1/server/flows/:id/activate- Activate flowPOST /api/v1/server/flows/:id/pause- Pause flow
Pricing Plans
- Free: 100 subscribers, 500 notifications/month
- Starter: 5K subscribers, 25K notifications/month - €29/month
- Growth: 25K subscribers, 100K notifications/month - €99/month
- Enterprise: Unlimited, custom pricing
Known Limitations
- Free plan does not have API access (client SDK only)
- iOS Safari requires PWA installation (not available in browser tab)
- Service worker must be at root path (
/pushary-sw.js) - HTTPS required (except localhost for development)
- Rate limits vary by plan (100-1000 requests/minute)
- Data retention: 7-90 days depending on plan
Migration Guides
For New Users
No migration needed. Follow the Getting Started guide to begin.
Future Migrations
As Pushary evolves, migration guides will be added here for major version updates.
Deprecation Policy
Policy
- Breaking changes will be announced at least 90 days in advance
- Deprecated features remain functional during deprecation period
- Migration guides provided for all breaking changes
- Enterprise customers receive dedicated migration support
Current Deprecations
No deprecations at this time.
Breaking Changes
Platform 1.0.0 / SDK 1.0.5 / Server SDK 1.0.1
Initial release - no breaking changes.
SDK Versions
Client SDK (@pushary/sdk)
Current: 1.0.5
Compatibility:
- Works with Pushary API v1
- Supports all modern browsers (see Browser Support)
- Service worker compatible with all supported browsers
Server SDK (@pushary/server)
Current: 1.0.1
Compatibility:
- Node.js 18.0.0 or higher
- TypeScript 5.0 or higher (optional)
- Works with Pushary API v1
Upcoming Features
We're constantly improving Pushary. Here's what's on the roadmap:
Q1 2026
- Advanced segmentation with computed properties
- Webhook event stream
- Campaign A/B testing enhancements
- Custom notification actions
- Rich notification templates
Q2 2026
- Mobile SDKs (React Native, Flutter)
- Advanced analytics dashboard
- Predictive send time optimization
- Multi-language template support
- Workflow builder UI
Q3 2026
- AI-powered notification optimization
- Advanced automation rules
- Custom integrations marketplace
- Geo-targeting
- Time zone optimization
Future
- SMS and email channels
- In-app messaging
- Push notification previews
- Advanced permission prompts
- Message scheduling AI
Want to influence the roadmap? Contact us at business@pushary.com
Security Updates
We take security seriously. Security updates are released as needed and communicated via:
- Email to all workspace owners
- Dashboard notifications
- Status page updates
Current Status: All systems operational
API Versioning
Pushary uses URL-based API versioning:
- Current:
/api/v1/ - Future versions will be announced with migration guides
Version Support:
- Latest version: Full support
- Previous version: Security updates only (12 months)
- Older versions: No support
Getting Updates
Stay informed about new features and changes:
Documentation:
- This changelog is updated with every release
- Breaking changes are highlighted
- Migration guides provided when needed
Communication:
- Email announcements for major releases
- Dashboard notifications for updates
- Status page for incidents
Community:
- GitHub Discussions (coming soon)
- Twitter: @pushary (coming soon)
- Discord community (coming soon)
Feedback
Have feedback or feature requests?
- Email: business@pushary.com
- Dashboard: Send feedback button
- Enterprise customers: Contact your account manager
We review all feedback and use it to shape our roadmap.