📅
Rollout Timeline Phased deployment schedule for all changes

Migration Progress

Week 3 of 8
✓ API v4 endpoints live
✓ Knowledge Graph v2
✓ AI Search beta
✓ Webhook system
○ Real-time sync (Week 4)
○ Data model migration (Week 5)
○ Cache layer update (Week 6)
○ Legacy API sunset (Week 8)
May 15, 2025 — Phase 1
API v4 Endpoints Live
New API endpoints deployed alongside v3. All new integrations should target v4. Rate limits increased by 3x.
May 20, 2025 — Phase 2
Knowledge Graph v2 Launch
Upgraded graph engine with 40% faster query resolution. New relationship types: causation, contradiction, and temporal dependency.
May 25, 2025 — Phase 3
AI Search Beta
Semantic search engine powered by fine-tuned LLM. Supports natural language queries, context-aware ranking, and multi-hop reasoning.
May 28, 2025 — Phase 4
Webhook System
Real-time event notifications for article updates, new entries, and moderation actions. Supports retry policies and signature verification.
June 1, 2025 — Phase 5 (Current)
Real-time Sync & Content Pipeline
WebSocket-based live updates. New content ingestion pipeline with automated fact-checking and source verification stages.
June 15, 2025 — Phase 6
Data Model Migration
Article schema changes: new fields, restructured metadata. Legacy fields will return null values. Automated migration tool available.
June 29, 2025 — Phase 7
Caching Layer Update
Transition from Redis to distributed cache mesh. Cache invalidation strategy changed — cache headers updated.
July 20, 2025 — Phase 8
Legacy API Sunset
v3.x API endpoints return 410 Gone. All integrations must be migrated to v4. Final migration window closes.
⚡
Breaking API Changes 6 breaking changes requiring immediate migration attention
Breaking Base URL Restructured
â–ŧ

All API endpoints have been restructured under the /v4/ path prefix. The previous versionless and /v3/ paths are deprecated and will return 410 Gone after July 20, 2025.

URL mapping
# Old (deprecated)
GET https://api.aevum.com/articles/12345
GET https://api.aevum.com/v3/search?q=quantum

# New (v4)
GET https://api.aevum.com/v4/articles/12345
GET https://api.aevum.com/v4/search?q=quantum

Action required: Update all base URLs in your integration configuration to include the /v4 prefix.

Breaking Pagination Model Changed
â–ŧ

The offset-based pagination (?offset=&limit=) has been replaced with cursor-based pagination (?cursor=&page_size=) for improved performance on large result sets.

Before (v3)
  • Offset-based pagination
  • Performance degrades on deep pages
  • Items may be duplicated or skipped
  • No total count available
After (v4)
  • Cursor-based pagination
  • Consistent O(1) performance
  • Guaranteed consistent ordering
  • Has_more boolean in response
JSON response
{
  "data": [ ... ],
  "pagination": {
    "total": 1250,
    "offset": 0,
    "limit": 20
    "cursor": "eyJpZCI6MjAsImNyZWF0ZWRfYXQiOiIyMDI1LTA2LTAxIn0",
    "has_more": true,
    "page_size": 20
  }
}
Breaking Content-Type: application/hal+json
â–ŧ

All v4 API responses now use application/hal+json as the Content-Type, including HAL links for navigation. The _links and _embedded keys are now standard in all responses.

Response structure
{
  "id": "art_8x29m4k",
  "title": "Quantum Computing",
  "_links": {
    "self": { "href": "/v4/articles/art_8x29m4k" },
    "categories": { "href": "/v4/articles/art_8x29m4k/categories" },
    "graph": { "href": "/v4/knowledge-graph/nodes/art_8x29m4k" }
  }
}
Changed Rate Limiting Headers Updated
â–ŧ

Rate limit headers have been changed to align with RFC 6585 (Extended HTTP Status Codes). Limits are now per-endpoint rather than global.

Old Header New Header Description
X-RateLimit-Limit RateLimit-Limit Max requests per window
X-RateLimit-Remaining RateLimit-Remaining Remaining requests
X-RateLimit-Reset RateLimit-Reset Unix timestamp of reset
— RateLimit-Policy Policy identifier
đŸ—ī¸
Data Model Changes Article schema and metadata restructuring
Breaking Article Schema Overhaul
â–ŧ

The core article data model has been restructured to support multi-language content, versioned editing, and provenance tracking. Several top-level fields have been moved or renamed.

Old Field New Field Type Change
article.title article.localized.title String → Object map
article.content article.localized.content String → Object map
article.tags article.metadata.tags String[] → Tag[]
article.author article.contributors[].primary Object → Array
article.edits article.version_history Number → Array
— article.provenance New field
Breaking Resource ID Format Change
â–ŧ

All resource IDs now use a prefixed format (type_identifier) for type safety and collision avoidance. Simple numeric IDs are no longer accepted.

ID format
# Old format
{
  "id": 12345,
  "article": 12345
}

# New format
{
  "id": "art_8x29m4k",
  "category": "cat_physics",
  "contributor": "usr_a1b2c3d"
}
🔐
Authentication Changes OAuth 2.1 and token management updates
Breaking OAuth 2.0 → OAuth 2.1
â–ŧ

The authentication system has been upgraded to OAuth 2.1 per RFC 9207. The access_type=offline parameter is no longer supported; use the refresh_token grant type explicitly.

Authorization request
# Old (OAuth 2.0)
GET /oauth/authorize?
  client_id=xxx&
  response_type=code&
  scope=read&
  access_type=offline

# New (OAuth 2.1)
GET /oauth/authorize?
  client_id=xxx&
  response_type=code&
  scope=read

# Refresh tokens must be requested explicitly
POST /oauth/token
  grant_type=refresh_token&
  refresh_token=xxx&
  scope=read

Additionally, token lifetimes have been reduced: access tokens now expire in 15 minutes (was 1 hour), and refresh tokens expire in 7 days (was 30 days).

✨
New Features Major additions in v4.2.0
Added Knowledge Graph v2 — Relationship Types Expanded
â–ŧ

The knowledge graph engine has been rebuilt from the ground up. v2 introduces three new relationship types that were not possible in v1:

  • causation — Direct cause-effect relationships between events and phenomena
  • contradiction — Identifies conflicting claims between articles with source citations
  • temporal — Time-based relationships showing evolution of concepts across eras
API endpoint
GET /v4/knowledge-graph/edges?
  source=art_8x29m4k&
  type=causation,contradiction,temporal

# Returns graph edges with confidence scores
{
  "edges": [
    {
      "type": "causation",
      "source": "art_8x29m4k",
      "target": "art_q9r1s2t",
      "confidence": 0.94,
      "sources": 12
    }
  ]
}
Added AI-Powered Semantic Search
â–ŧ

A new search engine powered by a fine-tuned large language model enables natural language queries with context-aware ranking. This replaces the legacy keyword-based search as the primary search method.

Semantic query
POST /v4/search/semantic
{
  "query": "What led to the development of quantum error correction,\nand how does it relate to fault-tolerant computing?",
  "depth": "multi-hop",
  "context": "research-level"
}

The search now returns ranked results with relevance scores, extracted snippets, and automatic source attribution.

Added Real-time Synchronization (WebSocket)
â–ŧ

WebSocket connections now allow real-time article update streaming. Subscribers receive delta updates when content changes, moderation actions occur, or new articles are published in watched categories.

WebSocket
WS wss://stream.aevum.com/v4/realtime?token=xxx

// Subscribe to category updates
→ { "action": "subscribe", "category": "cat_physics" }

// Receive real-time events
← { "event": "article.updated", "article": "art_8x29m4k", "delta": {...} }
← { "event": "article.created", "article": "art_new1234", "category": "cat_physics" }
Added Webhook Event System
â–ŧ

A new webhook infrastructure allows integrations to receive HTTP POST notifications for platform events. Supports configurable retry policies, signature verification, and event filtering.

Webhook payload
{
  "id": evt_9a8b7c6d,
  "type": "article.fact_checked",
  "timestamp": "2025-06-01T14:32:00Z",
  "data": {
    "article_id": "art_8x29m4k",
    "verdict": "verified",
    "confidence": 0.97
  }
}

// Headers include signature verification
X-Aevum-Signature: sha256=abc123...
X-Aevum-Event-ID: evt_9a8b7c6d
🔧
Functional Changes Non-breaking changes to existing systems
Changed Search Ranking Algorithm
â–ŧ

The keyword search ranking algorithm has been updated to incorporate recency, verification status, and cross-reference density. Results are now weighted more heavily toward recently verified and well-sourced articles.

New query parameters available:

Query parameters
GET /v4/search?query=photosynthesis&
  ranking_strategy=relevance|recency|verification&
  min_verification=high|medium|low&
  include_cross_refs=true
Changed Content Ingestion Pipeline
â–ŧ

The article ingestion pipeline now includes two new mandatory stages before publication:

  1. Stage 3 — AI Fact-Checking: Automatic verification of claims against indexed primary sources. Claims below 0.8 confidence are flagged for human review.
  2. Stage 4 — Source Triangulation: Each factual claim must be supported by at least 2 independent credible sources before the article is marked as "verified.""

Articles that fail Stage 3 or 4 are placed in status:pending_review and notify the original contributor for revision.

Changed Cache Invalidation Strategy
â–ŧ

Cache invalidation has changed from time-based (TTL) to event-driven (TTL + pub/sub). This means content updates are reflected in cache immediately rather than waiting for TTL expiry.

Cache headers updated:

Old Behavior New Behavior
Cache-Control: max-age=300 Cache-Control: max-age=300, stale-while-revalidate=60
ETag based on last_modified ETag based on content_hash (SHA-256)
Invalidation: TTL expiry only Invalidation: TTL + event pub/sub
Performance Performance Improvements
â–ŧ

Multiple infrastructure changes have resulted in significant performance gains:

Metric v3.x v4.2 Improvement
API p50 latency 120ms 45ms 62.5% faster
API p99 latency 850ms 180ms 78.8% faster
Graph query time 340ms 95ms 72.1% faster
Search response time 200ms 65ms 67.5% faster
Daily throughput 2.1B req 4.8B req 129% increase
đŸ“Ļ
Deprecations Features and endpoints being phased out
Deprecated Legacy API Endpoints
â–ŧ

The following endpoints are deprecated and will be removed on July 20, 2025:

Deprecated Endpoint Replacement Sunset Date
GET /v3/articles/:id GET /v4/articles/:id Jul 20, 2025
GET /v3/search POST /v4/search/semantic Jul 20, 2025
GET /v3/categories/:slug/children GET /v4/categories/:id/descendants Jul 20, 2025
POST /v3/articles/:id/edits PATCH /v4/articles/:id Jul 20, 2025

Deprecated endpoints return Sunset: Sat, 20 Jul 2025 00:00:00 GMT and Deprecation: true headers.

Deprecated Deprecated Response Fields
â–ŧ

Several response fields are deprecated and will return null or be removed entirely:

Deprecated Field Replacement Notes
article.view_count article.analytics.page_views Granular analytics available
article.word_count article.metadata.reading_time Reading time in minutes
article.rating article.quality_scores[].score Multi-dimensional scoring
article.language article.primary_locale BCP 47 locale format
đŸ›Ąī¸
Security Updates Critical and recommended security changes
Security TLS 1.3 Required for API
â–ŧ

All API connections now require TLS 1.3. TLS 1.2 connections will be rejected starting August 1, 2025. Earlier clients must upgrade their TLS stack.

TLS configuration
# Minimum required cipher suites
TLS_AES_256_GCM_SHA384
TLS_CHACHA20_POLY1305_SHA256
TLS_AES_128_GCM_SHA256

# Client certificate rotation
Certificate validity reduced from 365 to 90 days
Automatic rotation via ACME protocol supported
Added IP Allowlisting for Enterprise
â–ŧ

Enterprise tier integrations can now configure IP allowlists via the dashboard or API. Requests from non-allowlisted IPs will receive a 403 Forbidden response.

Configuration
POST /v4/enterprise/security/ip-allowlist
{
  "allowed_ips": [
    "203.0.113.0/24",
    "198.51.100.0/24"
  ],
  "mode": "strict"
}