Skip to content

Commit fd897a2

Browse files
chore: release v0.0.4 (#140)
* chore: bump version to 0.0.4 * doc: add drive.createFolder to index * doc: add custom commands and release notes * Update docs/release_notes.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent bf2e801 commit fd897a2

4 files changed

Lines changed: 45 additions & 2 deletions

File tree

docs/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ The extension provides the following tools:
3030
### Google Drive
3131
- `drive.search`: Searches for files and folders in Google Drive.
3232
- `drive.findFolder`: Finds a folder by name in Google Drive.
33+
- `drive.createFolder`: Creates a new folder in Google Drive.
3334
- `drive.downloadFile`: Downloads a file from Google Drive to a local path.
3435

3536
### Google Calendar
@@ -72,3 +73,16 @@ The extension provides the following tools:
7273
- `people.getMe`: Gets the profile information of the authenticated user.
7374
- `people.getUserRelations`: Gets a user's relations (e.g., manager, spouse, assistant). Defaults to the authenticated user and supports filtering by relation type.
7475

76+
## Custom Commands
77+
78+
The extension includes several pre-configured commands for common tasks:
79+
80+
- `/calendar/get-schedule`: Show your schedule for today, or a specified date.
81+
- `/calendar/clear-schedule`: Clear all events for a specific date or range by deleting or declining them.
82+
- `/drive/search`: Searches Google Drive for files matching a query and displays their name and ID.
83+
- `/gmail/search`: Searches for emails in Gmail matching a query and displays the sender, subject, and snippet.
84+
85+
## Release Notes
86+
87+
See the [Release Notes](release_notes.md) for details on new features and changes.
88+

docs/release_notes.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Release Notes
2+
3+
## 0.0.4 (2026-01-05)
4+
5+
### New Features
6+
7+
- **Google Drive**: Added `drive.createFolder` to create new folders.
8+
- **People**: Added `people.getUserRelations` to retrieve user relationships (manager, reports, etc.).
9+
- **Google Chat**: Added threading support to `chat.sendMessage` and `chat.sendDm`, and filtering by thread in `chat.getMessages`.
10+
- **Gmail**: Added `gmail.downloadAttachment` to download email attachments.
11+
- **Google Drive**: Added `drive.downloadFile` to download files from Google Drive.
12+
- **Calendar**: Added `calendar.deleteEvent` to delete calendar events.
13+
- **Google Docs**: Added support for Tabs in DocsService.
14+
15+
### Improvements
16+
17+
- **Dependencies**: Updated various dependencies including `@googleapis/drive`, `google-googleapis`, and `jsdom`.
18+
- **CI/CD**: Added a weekly preview release workflow and updated GitHub Actions versions.
19+
- **Testing**: Added documentation for the testing process with Gemini CLI.
20+
21+
### Fixes
22+
23+
- Fixed an issue where the `v` prefix was not stripped correctly in the release script.
24+
- Fixed an issue with invalid assignees in dependabot config.
25+
- Fixed log directory creation.
26+
27+
## 0.0.3
28+
29+
- Initial release with support for Google Docs, Sheets, Slides, Drive, Calendar, Gmail, Chat, Time, and People.

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.3",
3+
"version": "0.0.4",
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.3",
3+
"version": "0.0.4",
44
"description": "",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)