Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions .changeset/brave-moles-occur.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"google-workspace-developer-tools": patch
---

[Please add a user-facing description of the changes here]
5 changes: 5 additions & 0 deletions .changeset/sixty-days-sin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---

---

Changeset main
5 changes: 0 additions & 5 deletions .changeset/wild-peaches-relate.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/vscode-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# google-workspace-vscode-extension

## 0.6.3

### Patch Changes

- 496529e: Add `https://www.googleapis.com/auth/script.container.ui` and `https://www.googleapis.com/auth/script.send_mail` to hardcoded scopes.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The change being released introduces two new scopes, https://www.googleapis.com/auth/script.container.ui and https://www.googleapis.com/auth/script.send_mail, but fails to classify them.

  • script.send_mail allows sending email on the user's behalf, which is a sensitive operation, similar to gmail.send (which is already classified as sensitive in this extension).
  • script.container.ui allows displaying web content in sidebars, which can also be a sensitive capability.

Without proper classification, the linter will not warn users about the sensitive nature of these scopes, defeating a core purpose of this extension. This should be addressed before releasing this version.


## 0.6.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "google-workspace-developer-tools",
"displayName": "Google Workspace Developer Tools",
"description": "Lint Google Workspace OAuth2 scopes and more.",
"version": "0.6.2",
"version": "0.6.3",
"publisher": "google-workspace",
"license": "Apache-2.0",
"private": true,
Expand Down