File tree Expand file tree Collapse file tree 7 files changed +12
-14
lines changed Expand file tree Collapse file tree 7 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 0.3.0 "
2+ "." : " 0.3.1 "
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 111
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-bef0e79f204c51c91f5dca61e621e5e31c7494dccccb200e51da0c7654340816 .yml
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-cd6a05ae99d2a050577fa0e729e6ae89b4eacd78f61366a77269398368f8a877 .yml
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.3.1 (2025-02-18)
4+
5+ Full Changelog: [ v0.3.0...v0.3.1] ( https://github.com/gitpod-io/gitpod-sdk-go/compare/v0.3.0...v0.3.1 )
6+
7+ ### Features
8+
9+ * ** api:** manual updates ([ #42 ] ( https://github.com/gitpod-io/gitpod-sdk-go/issues/42 ) ) ([ faa83bf] ( https://github.com/gitpod-io/gitpod-sdk-go/commit/faa83bff9c5d16b8a514fef030b79b9b4de37da8 ) )
10+
311## 0.3.0 (2025-02-18)
412
513Full Changelog: [ v0.2.0...v0.3.0] ( https://github.com/gitpod-io/gitpod-sdk-go/compare/v0.2.0...v0.3.0 )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Or to pin the version:
2424<!-- x-release-please-start-version -->
2525
2626``` sh
27- go get -u
' github.com/gitpod-io/[email protected] .0 ' 27+ go get -u
' github.com/gitpod-io/[email protected] .1 ' 2828```
2929
3030<!-- x-release-please-end -->
Original file line number Diff line number Diff line change @@ -27,12 +27,6 @@ const ErrorCodeUnavailable = apierror.ErrorCodeUnavailable
2727const ErrorCodeDataLoss = apierror .ErrorCodeDataLoss
2828const ErrorCodeUnauthenticated = apierror .ErrorCodeUnauthenticated
2929
30- type ArbitraryData = apierror.ArbitraryData
31- type ArbitraryDataDebug = apierror.ArbitraryDataDebug
32- type ArbitraryDataType = apierror.ArbitraryDataType
33- type ArbitraryDataValue = apierror.ArbitraryDataValue
34- type ArbitraryData = apierror.ArbitraryData
35-
3630// An AutomationTrigger represents a trigger for an automation action. The
3731// `post_environment_start` field indicates that the automation should be triggered
3832// after the environment has started. The `post_devcontainer_start` field indicates
Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ type Error struct {
1818 // The status code, which should be an enum value of
1919 // [google.rpc.Code][google.rpc.Code].
2020 Code shared.ErrorCode `json:"code"`
21- // Contains an arbitrary serialized message along with a @type that describes the
22- // type of the serialized message.
23- Detail shared.ArbitraryData `json:"detail"`
2421 // A developer-facing error message, which should be in English. Any user-facing
2522 // error message should be localized and sent in the
2623 // [google.rpc.Status.details][google.rpc.Status.details] field, or localized by
@@ -36,7 +33,6 @@ type Error struct {
3633// errorJSON contains the JSON metadata for the struct [Error]
3734type errorJSON struct {
3835 Code apijson.Field
39- Detail apijson.Field
4036 Message apijson.Field
4137 raw string
4238 ExtraFields map [string ]apijson.Field
Original file line number Diff line number Diff line change 22
33package internal
44
5- const PackageVersion = "0.3.0 " // x-release-please-version
5+ const PackageVersion = "0.3.1 " // x-release-please-version
You can’t perform that action at this time.
0 commit comments