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.3.0"
".": "0.3.1"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 111
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-bef0e79f204c51c91f5dca61e621e5e31c7494dccccb200e51da0c7654340816.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-cd6a05ae99d2a050577fa0e729e6ae89b4eacd78f61366a77269398368f8a877.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.3.1 (2025-02-18)

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

### Features

* **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))

## 0.3.0 (2025-02-18)

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

```sh
go get -u 'github.com/gitpod-io/[email protected].0'
go get -u 'github.com/gitpod-io/[email protected].1'
```

<!-- x-release-please-end -->
Expand Down
6 changes: 0 additions & 6 deletions aliases.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ const ErrorCodeUnavailable = apierror.ErrorCodeUnavailable
const ErrorCodeDataLoss = apierror.ErrorCodeDataLoss
const ErrorCodeUnauthenticated = apierror.ErrorCodeUnauthenticated

type ArbitraryData = apierror.ArbitraryData
type ArbitraryDataDebug = apierror.ArbitraryDataDebug
type ArbitraryDataType = apierror.ArbitraryDataType
type ArbitraryDataValue = apierror.ArbitraryDataValue
type ArbitraryData = apierror.ArbitraryData

// An AutomationTrigger represents a trigger for an automation action. The
// `post_environment_start` field indicates that the automation should be triggered
// after the environment has started. The `post_devcontainer_start` field indicates
Expand Down
4 changes: 0 additions & 4 deletions internal/apierror/apierror.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@
type Error struct {
// The status code, which should be an enum value of
// [google.rpc.Code][google.rpc.Code].
Code shared.ErrorCode `json:"code"`

Check failure on line 20 in internal/apierror/apierror.go

View workflow job for this annotation

GitHub Actions / lint

undefined: shared.ErrorCode

Check failure on line 20 in internal/apierror/apierror.go

View workflow job for this annotation

GitHub Actions / test

undefined: shared.ErrorCode
// Contains an arbitrary serialized message along with a @type that describes the
// type of the serialized message.
Detail shared.ArbitraryData `json:"detail"`
// A developer-facing error message, which should be in English. Any user-facing
// error message should be localized and sent in the
// [google.rpc.Status.details][google.rpc.Status.details] field, or localized by
Expand All @@ -36,7 +33,6 @@
// errorJSON contains the JSON metadata for the struct [Error]
type errorJSON struct {
Code apijson.Field
Detail apijson.Field
Message apijson.Field
raw string
ExtraFields map[string]apijson.Field
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.3.0" // x-release-please-version
const PackageVersion = "0.3.1" // x-release-please-version
Loading