Skip to content

Commit 5ebaf9c

Browse files
chore: release versions (npm#91)
1 parent 70d0cdd commit 5ebaf9c

10 files changed

Lines changed: 30 additions & 47 deletions

.changeset/fix-credential-masking.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/fix-path-template-encoding.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/fix-typo-author-email.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/flatpath-fallback.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changeset/nix-flake.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/prominent-disclaimer.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @googleworkspace/cli
22

3+
## 0.3.5
4+
5+
### Patch Changes
6+
7+
- 4bca693: fix: credential masking panic and silent token write errors
8+
9+
Fixed `gws auth export` masking which panicked on short strings and showed
10+
the entire secret instead of masking it. Also fixed silent token cache write
11+
failures in `save_to_disk` that returned `Ok(())` even when the write failed.
12+
13+
- f84ce37: Fix URL template path expansion to safely encode path parameters, including
14+
Sheets `range` values with Unicode and reserved characters. `{var}` expansions
15+
now encode as a path segment, `{+var}` preserves slashes while encoding each
16+
segment, and invalid path parameter/template mismatches fail fast.
17+
- eb0347a: fix: correct author email typo in package.json
18+
- 70d0cdd: Fix Slides presentations.get failure caused by flatPath placeholder mismatch
19+
20+
When a Discovery Document's `flatPath` uses placeholder names that don't match
21+
the method's parameter names (e.g., `{presentationsId}` vs `presentationId`),
22+
`build_url` now falls back to the `path` field which uses RFC 6570 operators
23+
that resolve correctly.
24+
25+
Fixes #118
26+
27+
- 37ab483: Add flake.nix for nix & NixOS installs
28+
- 1991d53: Add prominent disclaimer that this is not an officially supported Google product to README, --help, and --version output
29+
330
## 0.3.4
431

532
### Patch Changes

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "gws"
17-
version = "0.3.4"
17+
version = "0.3.5"
1818
edition = "2021"
1919
description = "Google Workspace CLI — dynamic command surface from Discovery Service"
2020
license = "Apache-2.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@googleworkspace/cli",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"private": true,
55
"description": "Google Workspace CLI — dynamic command surface from Discovery Service",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)