Skip to content

Commit

Permalink
release: 0.3.1 (#43)
Browse files Browse the repository at this point in the history
* feat(api): manual updates (#42)

* release: 0.3.1

---------

Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
  • Loading branch information
stainless-app[bot] authored Feb 18, 2025
1 parent 2a11720 commit ff2a3e5
Showing 7 changed files with 12 additions and 14 deletions.
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)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/gitpod-io/gitpod-sdk-go@v0.3.0'
go get -u 'github.com/gitpod-io/gitpod-sdk-go@v0.3.1'
```

<!-- x-release-please-end -->
6 changes: 0 additions & 6 deletions aliases.go
Original file line number Diff line number Diff line change
@@ -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
4 changes: 0 additions & 4 deletions internal/apierror/apierror.go
Original file line number Diff line number Diff line change
@@ -18,9 +18,6 @@ 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

GitHub Actions / test

undefined: shared.ErrorCode

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

GitHub Actions / lint

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
@@ -36,7 +33,6 @@ type Error struct {
// 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
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@

package internal

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

0 comments on commit ff2a3e5

Please sign in to comment.