Skip to content

Commit 3a64a71

Browse files
chore: release v0.0.6 (#269)
* chore: bump version to 0.0.6 and update release notes * chore: fix formatting
1 parent c4e4578 commit 3a64a71

6 files changed

Lines changed: 53 additions & 6 deletions

File tree

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ The extension provides the following tools:
5151
- `drive.findFolder`: Finds a folder by name in Google Drive.
5252
- `drive.createFolder`: Creates a new folder in Google Drive.
5353
- `drive.downloadFile`: Downloads a file from Google Drive to a local path.
54+
- `drive.trashFile`: Moves a file or folder to the trash in Google Drive.
55+
- `drive.renameFile`: Renames a file or folder in Google Drive.
5456

5557
### Google Calendar
5658

docs/release_notes.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# Release Notes
22

3+
## 0.0.6 (2026-03-08)
4+
5+
### New Features
6+
7+
- **Google Docs**: Parse rich smart chips (person, date, rich link) in document
8+
text output.
9+
- **Google Docs**: Added `getSuggestions` and `getComments` tools for reading
10+
document suggestions and comments.
11+
- **Google Docs**: Added `formatText` tool for applying rich formatting (bold,
12+
italic, headings, etc.) to text ranges.
13+
- **Google Calendar**: Added Google Meet link generation and Google Drive file
14+
attachment support for `createEvent` and `updateEvent`.
15+
- **Google Calendar**: Added `sendUpdates` parameter to `createEvent` for
16+
controlling attendee notifications.
17+
- **Google Drive**: Added `trashFile` tool to move files and folders to trash.
18+
- **Google Drive**: Added `renameFile` tool to rename files and folders.
19+
- **Gmail**: Added `batchModify` tool for bulk modifying up to 1,000 messages at
20+
once.
21+
- **Gmail**: Added `modifyThread` tool for modifying all messages in a Gmail
22+
thread.
23+
- **Gmail**: Added `threadId` support in `createDraft` for creating reply
24+
drafts.
25+
- **Authentication**: Added headless OAuth login for SSH, WSL, and Cloud Shell
26+
environments.
27+
28+
### Skills
29+
30+
- **Gmail Skill**: Added rich HTML formatting guidance for email composition.
31+
- **Chat Skill**: Added Google Chat messaging and space management guidance.
32+
- **Docs Skill**: Added document formatting and simplified tool primitives.
33+
- **Calendar Skill**: Added consolidated calendar scheduling guidance.
34+
35+
### Fixes
36+
37+
- **Docs**: Fixed recursion into nested child tabs in DocsService.
38+
- **Docs**: Polished `getSuggestions` and `getComments` output formatting.
39+
- **Drive**: Fixed shared drive file downloads.
40+
41+
### Documentation & Chores
42+
43+
- Documented token storage locations (OS keychain and encrypted file fallback).
44+
- Updated tool reference documentation with latest features.
45+
- **Dependencies**: Updated MCP SDK, Hono, Google APIs, rollup, ajv, qs, and
46+
minimatch.
47+
348
## 0.0.5 (2026-02-11)
449

550
### New Features

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-workspace",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"contextFileName": "workspace-server${/}WORKSPACE-Context.md",
55
"mcpServers": {
66
"google-workspace": {

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gemini-workspace-extension",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Google Workspace Server Extension",
55
"private": true,
66
"bin": {

workspace-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "workspace-server",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)