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 1
1
{
2
- "." : " 0.3.0 "
2
+ "." : " 0.3.1 "
3
3
}
Original file line number Diff line number Diff line change 1
1
configured_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 1
1
# Changelog
2
2
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
+
3
11
## 0.3.0 (2025-02-18)
4
12
5
13
Full 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:
24
24
<!-- x-release-please-start-version -->
25
25
26
26
``` sh
27
- go get -u
' github.com/gitpod-io/[email protected] .0 '
27
+ go get -u
' github.com/gitpod-io/[email protected] .1 '
28
28
```
29
29
30
30
<!-- x-release-please-end -->
Original file line number Diff line number Diff line change @@ -27,12 +27,6 @@ const ErrorCodeUnavailable = apierror.ErrorCodeUnavailable
27
27
const ErrorCodeDataLoss = apierror .ErrorCodeDataLoss
28
28
const ErrorCodeUnauthenticated = apierror .ErrorCodeUnauthenticated
29
29
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
-
36
30
// An AutomationTrigger represents a trigger for an automation action. The
37
31
// `post_environment_start` field indicates that the automation should be triggered
38
32
// 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 {
18
18
// The status code, which should be an enum value of
19
19
// [google.rpc.Code][google.rpc.Code].
20
20
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"`
24
21
// A developer-facing error message, which should be in English. Any user-facing
25
22
// error message should be localized and sent in the
26
23
// [google.rpc.Status.details][google.rpc.Status.details] field, or localized by
@@ -36,7 +33,6 @@ type Error struct {
36
33
// errorJSON contains the JSON metadata for the struct [Error]
37
34
type errorJSON struct {
38
35
Code apijson.Field
39
- Detail apijson.Field
40
36
Message apijson.Field
41
37
raw string
42
38
ExtraFields map [string ]apijson.Field
Original file line number Diff line number Diff line change 2
2
3
3
package internal
4
4
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