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.77.0"
".": "0.78.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 127
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-f0003e336fc8dc54d9cac4728c847fb80c32d50a9165738c5b70aa83a09bb0f5.yml
openapi_spec_hash: a2099eec27728b1cfd9032dc71b9bb57
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-1413d61d06059008b4c1e204c783d8b2e7dca9af23f6e3b6d2552493ea2d9853.yml
openapi_spec_hash: 80aca500caddd300cb03a6daf568fddb
config_hash: 77ee715aa17061166f9a02b264a21b8d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.78.0 (2026-07-13)

Full Changelog: [v0.77.0...v0.78.0](https://github.com/kernel/kernel-go-sdk/compare/v0.77.0...v0.78.0)

### Features

* Expose telemetry exception message in API/SDK ([7426310](https://github.com/kernel/kernel-go-sdk/commit/74263107550f6d13d74a06f0df0c8d603920d62f))

## 0.77.0 (2026-07-13)

Full Changelog: [v0.76.0...v0.77.0](https://github.com/kernel/kernel-go-sdk/compare/v0.76.0...v0.77.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/kernel/kernel-go-sdk@v0.77.0'
go get -u 'github.com/kernel/kernel-go-sdk@v0.78.0'
```

<!-- x-release-please-end -->
Expand Down
5 changes: 4 additions & 1 deletion browsertelemetry.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,10 @@ func (r *BrowserConsoleErrorEvent) UnmarshalJSON(data []byte) error {
// events. Identifies the target, frame, and navigation epoch in which the event
// occurred.
type BrowserConsoleErrorEventData struct {
// Error message text. Present in both source paths.
// Human-readable error text, as the browser console would display it. For
// console.error() calls, the first argument coerced to a string. For uncaught
// exceptions, the prefix and error message, e.g. "Uncaught Error: boom" or
// "Uncaught (in promise) TypeError: x is not a function".
Text string `json:"text" api:"required"`
// All console arguments coerced to strings. Present only when sourced from
// Runtime.consoleAPICalled.
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.77.0" // x-release-please-version
const PackageVersion = "0.78.0" // x-release-please-version
Loading