Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.16"
".": "0.1.0-alpha.17"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 15
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-ddcc03297d5649ca543ccff5be72ca1c148696cdddf63cb640e3f8a9b86ab59e.yml
openapi_spec_hash: 2870606e51060e9080104b1089f28b83
config_hash: 5fc708f77aa1d07b7376eb5cbb78f389
config_hash: 94d0bc0af5fa718b5ab095e1d934e834
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.1.0-alpha.17 (2025-06-19)

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

### Features

* **api:** make project nullable ([d51a660](https://github.com/stainless-api/stainless-api-cli/commit/d51a660892fa1b5196f37c8a4c297788c2ad7683))


### Chores

* bump go sdk version ([3865229](https://github.com/stainless-api/stainless-api-cli/commit/38652297409fbc08d4990fd631d0ee9d828f0005))
* **internal:** codegen related update ([5c194ff](https://github.com/stainless-api/stainless-api-cli/commit/5c194ff980c215b29ff16acef55cc0655d710537))

## 0.1.0-alpha.16 (2025-06-19)

Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/stainless-api/stainless-api-cli/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require (
github.com/logrusorgru/aurora/v4 v4.0.0
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/stainless-api/stainless-api-go v0.7.0
github.com/stainless-api/stainless-api-go v0.8.0
github.com/tidwall/gjson v1.17.0
github.com/tidwall/pretty v1.2.1
github.com/tidwall/sjson v1.2.5
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/stainless-api/stainless-api-go v0.7.0 h1:nT4DT9qo7IvnhSnJs6aekGhiW662aeWeN34f/JiQBpA=
github.com/stainless-api/stainless-api-go v0.7.0/go.mod h1:9Q2t8xq6EFgw8HYOsVxqKEfSDVe9eqCoh1zC0HMRwTY=
github.com/stainless-api/stainless-api-go v0.8.0 h1:GD3U3B20zG9FW/O2I//6zqiMJSpw6AterUn0x08QU5c=
github.com/stainless-api/stainless-api-go v0.8.0/go.mod h1:9Q2t8xq6EFgw8HYOsVxqKEfSDVe9eqCoh1zC0HMRwTY=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,9 @@ var buildsCreate = cli.Command{
&jsonflag.JSONBoolFlag{
Name: "allow-empty",
Config: jsonflag.JSONConfig{
Kind: jsonflag.Body,
Path: "allow_empty",
Kind: jsonflag.Body,
Path: "allow_empty",
SetValue: true,
},
},
&jsonflag.JSONStringFlag{
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/projectbranch.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ var projectsBranchesCreate = cli.Command{
&jsonflag.JSONBoolFlag{
Name: "force",
Config: jsonflag.JSONConfig{
Kind: jsonflag.Body,
Path: "force",
Kind: jsonflag.Body,
Path: "force",
SetValue: true,
},
},
},
Expand Down
Loading