You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: bulk sharing - invite multiple collaborators in one API call (Issue #73)
- Core: add_collaborators_bulk() on SharingMixin
- Services: invite_collaborators_bulk() with upfront validation
- MCP: notebook_share_batch tool with recipients list + confirm
- CLI: nlm share batch <notebook> 'emails' --role viewer
- 10 new unit tests for bulk sharing
- Version bump to 0.4.0
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
## [Unreleased / 0.3.21]
7
+
## [0.4.0] - 2026-03-05
8
+
9
+
### Added
10
+
-**Bulk Sharing (`notebook_share_batch`)** — Invite multiple collaborators to a notebook in a single API call (Issue #73). Supports mixed roles (viewer/editor) per recipient.
11
+
- Core: `add_collaborators_bulk(notebook_id, recipients)` on `SharingMixin`
12
+
- Service: `invite_collaborators_bulk(client, notebook_id, recipients)` with upfront validation
13
+
- MCP: `notebook_share_batch` tool with `recipients` list and `confirm` flag
0 commit comments