Skip to content

Commit b0e2f60

Browse files
authored
Merge pull request #66 from stainless-api/release-please--branches--main--changes--next
release: 0.1.0-alpha.51
2 parents 8f8c16b + 627ccf2 commit b0e2f60

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.50"
2+
".": "0.1.0-alpha.51"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.1.0-alpha.51 (2025-10-25)
4+
5+
Full Changelog: [v0.1.0-alpha.50...v0.1.0-alpha.51](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.50...v0.1.0-alpha.51)
6+
7+
### Features
8+
9+
* use scope:"*" ([6b45c41](https://github.com/stainless-api/stainless-api-cli/commit/6b45c41e78d6992355533234986ee07f212d92c0))
10+
11+
12+
### Bug Fixes
13+
14+
* fix builds for non-public Go repos ([725ff05](https://github.com/stainless-api/stainless-api-cli/commit/725ff05a2078bef1e4081e8a19bc3be12ce20a0f))
15+
* remove some bootstrapping logic ([a3f713d](https://github.com/stainless-api/stainless-api-cli/commit/a3f713d5551ca6c0b6d1bdf4d83999652c15d9cf))
16+
317
## 0.1.0-alpha.50 (2025-10-23)
418

519
Full Changelog: [v0.1.0-alpha.49...v0.1.0-alpha.50](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.49...v0.1.0-alpha.50)

pkg/cmd/auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func authenticate(ctx context.Context, cmd *cli.Command, forceAuthentication boo
7070

7171
cc := getAPICommandContext(cmd)
7272
clientID := cmd.String("client-id")
73-
scope := "openapi:read project:write project:read"
73+
scope := "*"
7474
authResult, err := startDeviceFlow(ctx, cmd, cc.client, clientID, scope)
7575
if err != nil {
7676
return err

pkg/cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package cmd
44

5-
const Version = "0.1.0-alpha.50" // x-release-please-version
5+
const Version = "0.1.0-alpha.51" // x-release-please-version

0 commit comments

Comments
 (0)