diff --git a/docs/release_notes.md b/docs/release_notes.md index ddfc1ba..894979e 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -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 diff --git a/gemini-extension.json b/gemini-extension.json index 0fddd90..9e44e0c 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -1,6 +1,6 @@ { "name": "google-workspace", - "version": "0.0.7", + "version": "0.0.8", "contextFileName": "workspace-server${/}WORKSPACE-Context.md", "mcpServers": { "google-workspace": { diff --git a/package.json b/package.json index ed36637..db2daa2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gemini-workspace-extension", - "version": "0.0.7", + "version": "0.0.8", "description": "Google Workspace Server Extension", "private": true, "bin": { diff --git a/workspace-server/package.json b/workspace-server/package.json index 31ca547..c2c37c0 100644 --- a/workspace-server/package.json +++ b/workspace-server/package.json @@ -1,6 +1,6 @@ { "name": "workspace-server", - "version": "0.0.7", + "version": "0.0.8", "description": "", "main": "dist/index.js", "scripts": {