Skip to content

Commit 1f116fa

Browse files
committed
feat: add changelog page and fix topbar styling
1 parent e96aa3d commit 1f116fa

File tree

5 files changed

+111
-12
lines changed

5 files changed

+111
-12
lines changed

changelog.mdx

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
title: "Changelog"
3+
description: "Latest updates, improvements, and fixes to the Knowrithm platform."
4+
---
5+
6+
<Update label="2025-11-20" description="v1.2.0 - Multi-agent Orchestration">
7+
## Multi-agent Orchestration
8+
9+
We've released a major update to how agents coordinate. You can now define "supervisor" agents that delegate tasks to specialized sub-agents.
10+
11+
### Features
12+
- **Supervisor Mode**: New agent type that routes queries to other agents based on intent.
13+
- **Shared Memory**: Agents in the same workspace now share a short-term memory context.
14+
- **Debug Console**: Inspect the reasoning trace of multi-agent handoffs in real-time.
15+
16+
### Improvements
17+
- Reduced latency for agent-to-agent communication by 40%.
18+
- Added `X-Agent-Trace-Id` header to all API responses for better observability.
19+
</Update>
20+
21+
<Update label="2025-11-05" description="v1.1.5 - Knowledge Base Enhancements">
22+
## Vector Search Upgrades
23+
24+
Improved the accuracy of document retrieval and added support for more file types.
25+
26+
### Features
27+
- **Hybrid Search**: Combine keyword search with semantic search for better precision.
28+
- **New File Types**: Added native support for `.pptx` and `.xlsx` ingestion.
29+
- **Re-ranking**: Optional re-ranking step using Cohere or BGE models.
30+
31+
### Fixes
32+
- Fixed an issue where PDF tables were sometimes parsed incorrectly.
33+
- Resolved a timeout bug when uploading files larger than 50MB.
34+
</Update>
35+
36+
<Update label="2025-10-22" description="v1.1.0 - Enterprise Security">
37+
## SSO & Audit Logs
38+
39+
Launched comprehensive security features for enterprise tenants.
40+
41+
### Features
42+
- **SAML 2.0 / OIDC**: Connect your own identity provider (Okta, Azure AD).
43+
- **Audit Trail**: Download CSV logs of every administrative action.
44+
- **IP Allowlisting**: Restrict API access to specific IP ranges.
45+
</Update>
46+
47+
<Update label="2025-10-01" description="v1.0.0 - General Availability">
48+
## Platform Launch
49+
50+
Knowrithm is now generally available!
51+
52+
- **Core API**: Stable release of all v1 endpoints.
53+
- **SDKs**: Python and TypeScript SDKs are now 1.0.
54+
- **Documentation**: Complete reference guides and tutorials.
55+
</Update>

docs.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"index",
2020
"quickstart",
2121
"development",
22-
"platform/architecture"
22+
"platform/architecture",
23+
"changelog"
2324
]
2425
},
2526
{
@@ -66,11 +67,6 @@
6667
"anchor": "Status",
6768
"href": "https://status.knowrithm.org",
6869
"icon": "chart-bar"
69-
},
70-
{
71-
"anchor": "Changelog",
72-
"href": "https://docs.knowrithm.org/changelog",
73-
"icon": "sparkles"
7470
}
7571
]
7672
}

styles/custom.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,21 @@ html.dark img {
444444
opacity: 0.95;
445445
}
446446

447-
html.dark img[src$=".svg"],
448-
html.dark img[src$=".png"] {
447+
/* Add background to transparent images (excluding logo) */
448+
html.dark img[src$=".svg"]:not([src*="logo"]),
449+
html.dark img[src$=".png"]:not([src*="logo"]) {
449450
background: rgba(255, 255, 255, 0.03);
450451
border-radius: var(--radius-md);
451452
padding: 4px;
452453
}
453454

455+
/* Explicitly clear logo background */
456+
html.dark img[src*="logo"] {
457+
background: transparent !important;
458+
padding: 0 !important;
459+
border-radius: 0 !important;
460+
}
461+
454462
/* ============================================
455463
Layout & Utility
456464
============================================ */
@@ -461,6 +469,14 @@ main {
461469
margin: 0 auto !important;
462470
}
463471

472+
/* Navbar Alignment Fixes */
473+
header,
474+
.sticky,
475+
nav {
476+
display: flex !important;
477+
align-items: center !important;
478+
}
479+
464480
/* Ensure images don't overflow */
465481
img {
466482
max-width: 100% !important;

styles/global.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,21 @@ html.dark img {
444444
opacity: 0.95;
445445
}
446446

447-
html.dark img[src$=".svg"],
448-
html.dark img[src$=".png"] {
447+
/* Add background to transparent images (excluding logo) */
448+
html.dark img[src$=".svg"]:not([src*="logo"]),
449+
html.dark img[src$=".png"]:not([src*="logo"]) {
449450
background: rgba(255, 255, 255, 0.03);
450451
border-radius: var(--radius-md);
451452
padding: 4px;
452453
}
453454

455+
/* Explicitly clear logo background */
456+
html.dark img[src*="logo"] {
457+
background: transparent !important;
458+
padding: 0 !important;
459+
border-radius: 0 !important;
460+
}
461+
454462
/* ============================================
455463
Layout & Utility
456464
============================================ */
@@ -461,6 +469,14 @@ main {
461469
margin: 0 auto !important;
462470
}
463471

472+
/* Navbar Alignment Fixes */
473+
header,
474+
.sticky,
475+
nav {
476+
display: flex !important;
477+
align-items: center !important;
478+
}
479+
464480
/* Ensure images don't overflow */
465481
img {
466482
max-width: 100% !important;

styles/website.css

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,21 @@ html.dark img {
444444
opacity: 0.95;
445445
}
446446

447-
html.dark img[src$=".svg"],
448-
html.dark img[src$=".png"] {
447+
/* Add background to transparent images (excluding logo) */
448+
html.dark img[src$=".svg"]:not([src*="logo"]),
449+
html.dark img[src$=".png"]:not([src*="logo"]) {
449450
background: rgba(255, 255, 255, 0.03);
450451
border-radius: var(--radius-md);
451452
padding: 4px;
452453
}
453454

455+
/* Explicitly clear logo background */
456+
html.dark img[src*="logo"] {
457+
background: transparent !important;
458+
padding: 0 !important;
459+
border-radius: 0 !important;
460+
}
461+
454462
/* ============================================
455463
Layout & Utility
456464
============================================ */
@@ -461,6 +469,14 @@ main {
461469
margin: 0 auto !important;
462470
}
463471

472+
/* Navbar Alignment Fixes */
473+
header,
474+
.sticky,
475+
nav {
476+
display: flex !important;
477+
align-items: center !important;
478+
}
479+
464480
/* Ensure images don't overflow */
465481
img {
466482
max-width: 100% !important;

0 commit comments

Comments
 (0)