Changelog
Stay updated with the latest releases, new features, and improvements in ProductBridge.
Recent Changes
Keep track of ProductBridge's evolution with these release highlights. Each version includes new features, performance improvements, bug fixes, and occasional breaking changes.
New Features
- Added real-time collaboration for documentation pages, allowing multiple users to edit simultaneously.
- Introduced webhook support for custom integrations with external services like Slack and Discord.
Improvements
- Enhanced search functionality with fuzzy matching and advanced filters.
- Optimized page load times by 40% through improved caching mechanisms.
Bug Fixes
- Fixed issue where embedded images failed to load in preview mode.
- Resolved synchronization errors during offline edits.
New Features
- New analytics dashboard to track page views, edit history, and user engagement.
- Support for custom CSS themes and brand colors directly in the editor.
Improvements
- Streamlined navigation with a revamped sidebar and quick search.
Bug Fixes
- Corrected export to PDF functionality that was truncating long pages.
- Patched security vulnerability in public page sharing (CVE-2024-XXXX).
New Features
- Core documentation workspace with page organization, version history, and role-based access.
- Integrated Markdown and MDX editor with live preview.
Breaking Changes
- Updated API authentication to use JWT tokens instead of API keys. Migrate using the guide below.
Initial Setup
- Full user authentication system with SSO support.
Quick Release Overview
How to Update ProductBridge
Follow these steps to upgrade to the latest version safely.
Backup Your Data
Export all workspaces via the dashboard at https://dashboard.productbridge.com/export.
Check Release Notes
Review changes in this changelog, focusing on breaking changes.
Run the Update
docker pull productbridge:latest
docker-compose up -d
npm update productbridge
productbridge migrate
Verify Installation
Test core features like editing and sharing.
Subscribe to the ProductBridge GitHub repository or RSS feed for instant notifications on new releases.
Migration Notes
For major updates, review these version-specific instructions.
No breaking changes. Run productbridge migrate to apply schema updates.
Your endpoint for receiving events, e.g., https://your-webhook-url.com/webhook.
Update authentication:
// Old API key
const config = { apiKey: 'YOUR_API_KEY' };
// New JWT
const config = {
token: 'YOUR_JWT_TOKEN',
authUrl: 'https://auth.productbridge.com/token'
};
Last updated 2 weeks ago
Built with Documentation.AI