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.14.0"
".": "0.15.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fstagehand-4fb17cafc413ae3d575e3268602b01d2d0e9ebeb734a41b6086b3353ff0d2523.yml
openapi_spec_hash: 8d48d8564849246f6f14d900c6c5f60c
config_hash: 5c69fb596588b8ace08203858518c149
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fstagehand-ed52466945f2f8dfd3814a29e948d7bf30af7b76a7a7689079c03b8baf64e26f.yml
openapi_spec_hash: 5d57aaf2362b0d882372dbf76477ba23
config_hash: 989ddfee371586e9156b4d484ec0a6cc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.15.0 (2025-12-23)

Full Changelog: [v0.14.0...v0.15.0](https://github.com/browserbase/stagehand-go/compare/v0.14.0...v0.15.0)

### Features

* [STG-1053] [server] Use fastify-zod-openapi + zod v4 for openapi generation ([00248f3](https://github.com/browserbase/stagehand-go/commit/00248f34223b4bbb242d76d4f6780d0daeefa467))

## 0.14.0 (2025-12-19)

Full Changelog: [v0.13.2...v0.14.0](https://github.com/browserbase/stagehand-go/compare/v0.13.2...v0.14.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/browserbase/stagehand-go@v0.14.0'
go get -u 'github.com/browserbase/stagehand-go@v0.15.0'
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "0.14.0" // x-release-please-version
const PackageVersion = "0.15.0" // x-release-please-version
13 changes: 2 additions & 11 deletions session.go
Original file line number Diff line number Diff line change
Expand Up @@ -1393,8 +1393,8 @@ type SessionStartParams struct {
BrowserbaseSessionCreateParams SessionStartParamsBrowserbaseSessionCreateParams `json:"browserbaseSessionCreateParams,omitzero"`
// Logging verbosity level (0=quiet, 1=normal, 2=debug)
//
// Any of "0", "1", "2".
Verbose SessionStartParamsVerbose `json:"verbose,omitzero"`
// Any of 0, 1, 2.
Verbose float64 `json:"verbose,omitzero"`
// Client SDK language
//
// Any of "typescript", "python", "playground".
Expand Down Expand Up @@ -1809,15 +1809,6 @@ func (r *SessionStartParamsBrowserbaseSessionCreateParamsProxiesProxyConfigListI
return apijson.UnmarshalRoot(data, r)
}

// Logging verbosity level (0=quiet, 1=normal, 2=debug)
type SessionStartParamsVerbose string

const (
SessionStartParamsVerbose0 SessionStartParamsVerbose = "0"
SessionStartParamsVerbose1 SessionStartParamsVerbose = "1"
SessionStartParamsVerbose2 SessionStartParamsVerbose = "2"
)

// Client SDK language
type SessionStartParamsXLanguage string

Expand Down
2 changes: 1 addition & 1 deletion session_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func TestSessionStartWithOptionalParams(t *testing.T) {
Experimental: stagehand.Bool(true),
SelfHeal: stagehand.Bool(true),
SystemPrompt: stagehand.String("systemPrompt"),
Verbose: stagehand.SessionStartParamsVerbose1,
Verbose: 1,
WaitForCaptchaSolves: stagehand.Bool(true),
XLanguage: stagehand.SessionStartParamsXLanguageTypescript,
XSDKVersion: stagehand.String("3.0.6"),
Expand Down