Updated release notes

This commit is contained in:
Karthik KK
2025-04-22 19:17:50 +12:00
parent 0474ef1dde
commit 1857e8828c
7 changed files with 66 additions and 3 deletions

BIN
docs/docs/img/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 416 KiB

View File

@@ -15,7 +15,11 @@ With the MCP Database Server, you can:
- Export query results as CSV or JSON
- Track business insights discovered during database analysis
![MCP Database Server](./img/mcp-server.png)
![MCP Database Server](./img/mcp-server.gif)
:::tip What's New
Check our [Release Notes](./release-notes) to see what's new in version 1.0.2!
:::
## Installation

View File

@@ -0,0 +1,56 @@
# Release Notes
## Version 1.0.2 (Current)
**Release Date:** April 2025
### New Features
- Complete overhaul of documentation with new Docusaurus implementation
- Updated branding with blue color scheme
- Added comprehensive connection reference guide
- Improved database tools documentation
- New getting started guide for easier onboarding
### Improvements
- Better error handling for database connections
- Enhanced SQL query performance, particularly for large result sets
- Updated Node.js dependencies to the latest stable versions
- Improved security for credential handling
- Added environment variable support for sensitive connection information
### Bug Fixes
- Fixed connection issue with SQL Server when using Windows Authentication
- Corrected error in PostgreSQL RETURNING clause handling
- Addressed memory leak in connection pooling
- Fixed date formatting in SQLite exports
## Version 1.0.1
**Release Date:** April 2025
### New Features
- Initial support for PostgreSQL databases
- Added export functionality for CSV and JSON formats
- Introduced business insights tracking with memo feature
### Improvements
- Enhanced error reporting for failed queries
- Better handling of large result sets
- Optimized connection pooling for SQL Server
### Bug Fixes
- Fixed SQL Server authentication with special characters in password
- Addressed timeout issues with long-running queries
- Resolved schema detection problems with certain table names
## Version 1.0.0
**Release Date:** April 2025
### Initial Release Features
- Support for SQLite and SQL Server databases
- Basic SQL query execution (SELECT, INSERT, UPDATE, DELETE)
- Table management (CREATE, ALTER, DROP)
- Schema introspection
- MCP integration for Claude Desktop
- Node.js-based implementation for cross-platform support

View File

@@ -19,12 +19,15 @@ const sidebars: SidebarsConfig = {
// But you can create a sidebar manually
tutorialSidebar: [
'intro',
'release-notes',
'getting-started',
{
type: 'category',
label: 'Database Setup',
items: [
'sqlite-setup',
'sql-server-setup',
'postgresql-setup',
'connection-reference',
],
},

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@executeautomation/database-server",
"version": "1.0.1",
"version": "1.0.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@executeautomation/database-server",
"version": "1.0.1",
"version": "1.0.2",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.9.0",