Changelog
Track the latest updates and improvements in RaaziSpace. Review recent releases and what's coming next to stay informed on platform enhancements.
Recent Updates
Stay current with RaaziSpace's evolution. You can find detailed release notes for each version below, highlighting new features, improvements, bug fixes, and any breaking changes.
New Features
- Added real-time collaboration for project documentation, allowing multiple users to edit simultaneously.
- Introduced version history with diff views to compare document changes over time.
Improvements
- Enhanced search functionality with full-text indexing across all projects.
- Optimized dashboard loading times by
>40%for large documentation spaces.
Bug Fixes
- Fixed issue where embedded images failed to load in preview mode.
- Resolved authentication token refresh errors during long editing sessions.
New Features
- Launched custom themes and branding options using your brand color like
#3B82F6. - Integrated webhook support for automating documentation workflows.
Breaking Changes
- Updated API endpoints from
/v1/docsto/v2/docs– update your integrations accordingly.
Bug Fixes
- Corrected export to PDF failures for documents with tables.
- Patched cross-site scripting vulnerability in user-generated content.
Improvements
- Streamlined project import from Markdown, GitHub, and Notion.
- Added keyboard shortcuts for faster navigation:
<kbd>Ctrl</kbd>+<kbd>K</kbd>for search.
Bug Fixes
- Fixed sync issues between web editor and mobile app.
- Resolved permission errors when sharing docs with external teams.
Upcoming Roadmap
RaaziSpace continues to evolve based on your feedback. Here's a preview of key initiatives on the horizon.
AI-Powered Editing
Smart suggestions and auto-summaries for your docs coming in v2.2.0.
Advanced Analytics
Track document usage and engagement metrics in the next release.
Subscribe to our RSS feed or join the Discord community to get notified about new releases instantly.
How to Upgrade
Follow these steps to ensure a smooth update to the latest version.
Check Compatibility
Review the breaking changes section in each release note above.
Backup Your Data
Export your projects via the dashboard before proceeding.
Update Client
npm update raazi-space-client --save
Or use your preferred package manager.
Test in Staging
Deploy to a staging environment first and verify all features work.
Detailed Migration Guide
If you're upgrading from v1.x, note these key changes:
- API base URL changed to
https://api.raazispace.com/v2. - New required header:
X-API-Version: 2.0.
Update your code like this:
const response = await fetch('https://api.raazispace.com/v2/docs', {
headers: {
'Authorization': `Bearer ${YOUR_API_KEY}`,
'X-API-Version': '2.0'
}
});
import requests
headers = {
'Authorization': f'Bearer {YOUR_API_KEY}',
'X-API-Version': '2.0'
}
response = requests.get('https://api.raazispace.com/v2/docs', headers=headers)
This changelog serves as a starter template. Customize it with your actual release history as you build out RaaziSpace.
Last updated 2 days ago
Built with Documentation.AI