Changelog & Platform Releases
Real-time tracking of new features, SS7 carrier mesh optimizations, SDK upgrades, and security enhancements across all connectify APIs.
WhatsApp Business Flows 2.0 & Global SS7 Carrier Mesh Upgrade
Major infrastructure update introducing direct Meta Business Service Provider (BSP) v2.0 endpoint hooks, interactive dynamic forms inside WhatsApp, and direct SS7 carrier routes across 180+ countries.
- Added dynamic form state submission inside WhatsApp without external browser redirects.
- Zero-latency SMS failover: if WhatsApp message remains unread for 45s, automatic SMS fallback triggers.
- Support for end-to-end encrypted media payload streaming up to 100MB.
import { Connectify } from '@connectify/sdk';
const client = new Connectify({ apiKey: 'nx_live_key' });
await client.whatsapp.sendFlow({
to: '+14155552671',
flowId: 'fl_checkout_882',
data: { cartTotal: 149.00 }
});Sub-20ms SIP Trunking Route Optimization & WebRTC Softphone SDK
Optimized voice packet routing across Frankfurt, Virginia, Singapore, and Tokyo edge clusters. Reduced SIP session setup times by 38% for global call centers.
- WebSockets WebRTC softphone library now supports active noise suppression.
- Custom IVR speech recognition powered by native Whisper-v3 engine.
- Added real-time MOS (Mean Opinion Score) metrics to webhook call completion events.
Python, Node.js & Go SDK v4.0 Release with Type-Safe Async Handlers
Complete overhaul of official client libraries with native async/await, auto-retry exponential backoff, and full TypeScript autocompletion for all webhook event payloads.
- Added native Python asyncio and Go goroutine client pools.
- Automatic rate-limit queuing and circuit breaker integration.
- Simplified HMAC-SHA256 signature verification helper methods.
// Verify incoming webhook signature
const isValid = client.webhooks.verifySignature({
payload: req.rawBody,
signature: req.headers['x-connectify-signature'],
secret: process.env.WEBHOOK_SECRET
});SOC 2 Type II Certification & ISO 27001 Annual Renewal
Successfully passed annual independent audits for SOC 2 Type II, ISO 27001, and HIPAA compliance with zero non-conformances across global data centers.
- Enforced AES-256 field-level data encryption at rest for all OTP credentials.
- Audit logs now exportable directly to AWS S3, Datadog, or Splunk in real-time.
- Granular team RBAC (Role-Based Access Control) with IP restriction whitelisting.