{{ message }}
chore: release versions#228
Merged
Merged
Conversation
Contributor
Contributor
There was a problem hiding this comment.
Code Review
This pull request is an automated release generated by the Changesets action. It correctly bumps the package version to 0.6.3 in package.json, Cargo.toml, and Cargo.lock. The CHANGELOG.md has been updated with the release notes from the individual changeset files, which have been correctly removed. The changes are consistent with a standard release process and appear to be correct.
vitocchi
pushed a commit
to hodl-1/gws-cli
that referenced
this pull request
Mar 9, 2026
shigechika
pushed a commit
to shigechika/gws-mcp
that referenced
this pull request
Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@googleworkspace/cli@0.6.3
Patch Changes
322529d: Document all environment variables and enable GOOGLE_WORKSPACE_CLI_CONFIG_DIR in release builds
2173a92: Send x-goog-user-project header when using ADC with a quota_project_id
1f47420: fix: extract CLA label job into dedicated workflow to prevent feedback loop
The Automation workflow's
check_run: [completed]trigger caused a feedbackloop — every workflow completion fired a check_run event, re-triggering
Automation, which produced another check_run event, and so on. Moving the
CLA label job to its own
cla.ymlworkflow eliminates the trigger fromAutomation entirely.
132c3b1: fix: warn on credential file permission failures instead of ignoring
Replaced silent
let _ =onset_permissionscalls insave_encryptedwith
eprintln!warnings so users are aware if their credential filesend up with insecure permissions. Also log keyring access failures
instead of silently falling through to file storage.
a2cc523: Add
x86_64-unknown-linux-muslbuild target for Linux musl/static binary supportc86b964: Fix multi-account selection: MCP server now respects
GOOGLE_WORKSPACE_CLI_ACCOUNTenv var (MCP server ignores GOOGLE_WORKSPACE_CLI_ACCOUNT env var #221), and--accountflag before service name no longer causes parse errors (Bug: multiple accounts don't work as described #181)ff53538: Fix scope selection to use first (broadest) scope instead of all method scopes, preventing gmail.metadata restrictions from blocking query parameters
c80eb52: Replace strip_suffix(".readonly").unwrap() with unwrap_or fallback
Two call sites used
.strip_suffix(".readonly").unwrap()which wouldpanic if a scope URL marked as
is_readonlydidn't actually end with".readonly". While the current data makes this unlikely, using
unwrap_oris a defensive improvement that prevents potential panicsfrom inconsistent discovery data.
9a780d7: Log token cache decryption/parse errors instead of silently swallowing
Previously,
load_from_diskused four nestedif let Okblocks thatsilently returned an empty map on any failure. When the encryption key
changed or the cache was corrupted, tokens silently stopped loading and
users were forced to re-authenticate with no explanation.
Now logs specific warnings to stderr for decryption failures, invalid
UTF-8, and JSON parse errors, with a hint to re-authenticate.
6daf90d: Fix MCP tool schemas to conditionally include
body,upload, andpage_allproperties only when the underlying Discovery Document method supports them.bodyis included only when a request body is defined,uploadonly whensupportsMediaUploadis true, andpage_allonly when the method has apageTokenparameter. Also drops emptybody: {}objects that LLMs commonly send on GET methods, preventing 400 errors from Google APIs.