Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Release Notes

## 0.0.8 (2026-05-01)

### New Features

- **Google Calendar**: Added support for `eventType` (Out of Office, Focus Time,
Working Location) in Calendar Service.
- **Feature Configuration**: Introduced a new feature configuration service for
scope-based toggles, allowing more granular control over available tools.

### Improvements

- **Authentication**: Refactored OAuth scope management to use a single source
of truth and deduplicate read scopes, improving security and consistency.
- **Google Calendar**: Refactored validation logic to be independent of the
service layer.
- **Google Docs**: Improved `getText` and `getSuggestions` tools to include the
document title in their output.

### Fixes

- **Google Docs**: Resolved API errors in `docs.getText`.
- **Windows Support**: Fixed issues with `npm run clean` and handled `npm.cmd`
correctly on Windows.
- **Documentation**: Fixed various documentation links and improved clarity of
API usage.

### Chores

- **Dependencies**: Major update to TypeScript 6.0.3 and various other
dependency bumps (Vite 8, Hono 4.12, etc.).

## 0.0.7 (2026-03-11)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-workspace",
"version": "0.0.7",
"version": "0.0.8",
"contextFileName": "workspace-server${/}WORKSPACE-Context.md",
"mcpServers": {
"google-workspace": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gemini-workspace-extension",
"version": "0.0.7",
"version": "0.0.8",
"description": "Google Workspace Server Extension",
"private": true,
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion workspace-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workspace-server",
"version": "0.0.7",
"version": "0.0.8",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand Down
Loading