⚡ Edge-First Rendering
Generate and serve sitemaps directly from Cloudflare Workers or Vercel Edge Functions. Zero cold starts, sub-50ms TTFB globally.
🤖 AI Priority Scoring
New machine learning model automatically assigns `
🔗 Live Search Console Sync
Bi-directional webhook integration with Google Search Console. Get instant alerts for coverage drops, indexing delays, and validation fixes.
📋 Detailed Changelog
Edge Sitemap Generation Pipeline
Added first-class support for Cloudflare Workers, Deno Deploy, and Vercel Edge Runtime. Sitemaps are now compiled serverlessly with zero infrastructure overhead.
AI-Powered Metadata Assignment
New `priority_mode: 'ai'` config option analyzes crawl history, engagement metrics, and content updates to automatically score URLs.
Streamed XML Generation
Memory usage reduced by 72% via chunked streaming. Supports 10M+ URL catalogs without OOM crashes.
Fixed hreflang circular reference bug
Resolved an issue where self-referential hreflang tags caused infinite loops during validation. Added cycle detection algorithm.
Webhook Retry Logic Overhaul
Implemented exponential backoff with jitter for Search Console and Bing submissions. Success rate improved from 94% to 99.8%.
Edge Sitemap Generation Pipeline
Added first-class support for Cloudflare Workers, Deno Deploy, and Vercel Edge Runtime.
AI-Powered Metadata Assignment
New `priority_mode: 'ai'` config option analyzes crawl history and content velocity.
Streamed XML Generation
Memory usage reduced by 72% via chunked streaming.
Webhook Retry Logic Overhaul
Exponential backoff with jitter. Success rate improved to 99.8%.
Fixed hreflang circular reference bug
Resolved self-referential hreflang loops. Added cycle detection.
Quick Integration Example
JavaScript / TypeScriptimport { SitemapClient } from '@sitemap/sdk'; const client = new SitemapClient({ apiKey: process.env.SITEMAP_API_KEY, edgeRuntime: 'cloudflare', priorityMode: 'ai' // Auto-scores URLs using ML model}); await client.generate({ source: 'https://myapp.com/api/pages', stream: true, validate: true });
Ready to upgrade to v12?
Follow our migration guide to enable edge rendering and AI priority scoring in under 5 minutes.