Skip to content

Commit ff2a3e5

Browse files
release: 0.3.1 (#43)
* feat(api): manual updates (#42) * release: 0.3.1 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 2a11720 commit ff2a3e5

File tree

7 files changed

+12
-14
lines changed

7 files changed

+12
-14
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.3.0"
2+
".": "0.3.1"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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

513
Full Changelog: [v0.2.0...v0.3.0](https://github.com/gitpod-io/gitpod-sdk-go/compare/v0.2.0...v0.3.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 -->

aliases.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,6 @@ const ErrorCodeUnavailable = apierror.ErrorCodeUnavailable
2727
const ErrorCodeDataLoss = apierror.ErrorCodeDataLoss
2828
const 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

internal/apierror/apierror.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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]
3734
type errorJSON struct {
3835
Code apijson.Field
39-
Detail apijson.Field
4036
Message apijson.Field
4137
raw string
4238
ExtraFields map[string]apijson.Field

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package internal
44

5-
const PackageVersion = "0.3.0" // x-release-please-version
5+
const PackageVersion = "0.3.1" // x-release-please-version

0 commit comments

Comments
 (0)