-
Notifications
You must be signed in to change notification settings - Fork 1
Release v0.5.0 #60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release v0.5.0 #60
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| # Changelog | ||
|
|
||
| All notable changes to this project will be documented in this file. | ||
|
|
||
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## [0.5.0] - 2026-02-11 | ||
|
|
||
| ### Added | ||
| - Cell style information retrieval with `include_cell_styles` parameter (#51) | ||
| - Automatic frozen row header detection with `include_frozen_rows` parameter (#48) | ||
| - Optional axis range expansion with `expand_axis_range` parameter (default: false) (#47, #53) | ||
| - Metadata-only mode with `metadata_only` parameter for efficient Excel file inspection | ||
|
|
||
| ### Changed | ||
| - Improved token efficiency by omitting redundant Excel response fields (#44, #52) | ||
| - Enhanced header detection logic to prevent excessive data reads | ||
| - Optimized cell style retrieval with caching mechanism (#51) | ||
|
|
||
| ### Fixed | ||
| - Refactored header detection to reduce code duplication (#58) | ||
| - Fixed freeze_panes scroll position bug | ||
| - Improved merged cell handling and cache efficiency (#35, #39, #40) | ||
| - Strengthened security validation for Excel operations | ||
|
|
||
| ### Performance | ||
| - Eliminated duplicate range normalization in merged cell cache (#39, #40) | ||
| - Optimized test performance and reduced warning logs (#52) | ||
|
|
||
| ### Documentation | ||
| - Updated MCP tool description guidelines based on lessons learned | ||
| - Clarified parameter behavior and validation rules | ||
| - Improved docstrings for better API understanding | ||
|
|
||
| ## [0.4.0] - Previous Release | ||
|
|
||
| Initial release with SharePoint Excel operations support. | ||
|
|
||
| [0.5.0]: https://github.com/ncdcdev/sharepoint-docs-mcp/compare/v0.4.0...v0.5.0 | ||
| [0.4.0]: https://github.com/ncdcdev/sharepoint-docs-mcp/releases/tag/v0.4.0 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CHANGELOGに「Metadata-only mode with
metadata_onlyparameter」が追加機能として記載されていますが、実際のコードベース(src/server.py、src/sharepoint_excel.py、README.md、テストファイル)を確認したところ、このパラメータは実装されていません。Issue #44とPR #35のメタデータによると、metadata_onlyは以前削除されており、再追加の検討が行われていましたが、v0.5.0には含まれていないようです。この行を削除するか、実際に実装されている場合は実装箇所を確認してください。