Skip to content
Open
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.90.0"
".": "0.91.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.91.0](https://github.com/kernel/kernel-go-sdk/compare/v0.90.0...v0.91.0) (2026-08-13)


### Features

* Require a name on credential providers and backfill unnamed rows ([1f70e73](https://github.com/kernel/kernel-go-sdk/commit/1f70e735bad95b73c3eb89535479eac45f1c6dc3))

## [0.90.0](https://github.com/kernel/kernel-go-sdk/compare/v0.89.0...v0.90.0) (2026-08-12)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/kernel/kernel-go-sdk@v0.90.0'
go get -u 'github.com/kernel/kernel-go-sdk@v0.91.0'
```

<!-- x-release-please-end -->
Expand Down
6 changes: 4 additions & 2 deletions credentialprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ func (r *CredentialProviderService) Test(ctx context.Context, id string, opts ..
type CreateCredentialProviderRequestParam struct {
// Service account token for the provider (e.g., 1Password service account token)
Token string `json:"token" api:"required"`
// Human-readable name for this provider instance (unique per org)
// Human-readable name for this provider instance (unique per org). Surrounding
// whitespace is trimmed and the trimmed value must be non-empty.
Name string `json:"name" api:"required"`
// Type of credential provider
//
Expand Down Expand Up @@ -299,7 +300,8 @@ type UpdateCredentialProviderRequestParam struct {
CacheTtlSeconds param.Opt[int64] `json:"cache_ttl_seconds,omitzero"`
// Whether the provider is enabled for credential lookups
Enabled param.Opt[bool] `json:"enabled,omitzero"`
// Human-readable name for this provider instance
// Human-readable name for this provider instance. Surrounding whitespace is
// trimmed and the trimmed value must be non-empty.
Name param.Opt[string] `json:"name,omitzero"`
// Priority order for credential lookups (lower numbers are checked first)
Priority param.Opt[int64] `json:"priority,omitzero"`
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.90.0" // x-release-please-version
const PackageVersion = "0.91.0" // x-release-please-version
Loading