Skip to content

Commit 0bca2ad

Browse files
release: 0.10.0
1 parent da9576b commit 0bca2ad

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
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.9.0"
2+
".": "0.10.0"
33
}

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## 0.10.0 (2026-01-21)
4+
5+
Full Changelog: [v0.9.0...v0.10.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.9.0...v0.10.0)
6+
7+
### Features
8+
9+
* [api] Introduce RPCs to share resources with individual users ([f795699](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/f795699dfe92fcf2c930085845569844cddd67fd))
10+
* [api] sorting for `ListMembers` ([b473c48](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/b473c48922a5c2c3acb5c3a0bb64e6077378ace9))
11+
* [backend] Adding direct_share field to groups ([3d88aae](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/3d88aae430368a1507767f331632883382e5e136))
12+
* [backend] Introduce org:runners_admin organization role ([1ce1f99](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1ce1f99b15a489ae54e70576731c4cb120508ced))
13+
* [backend] Introduce role and member status filtering for `ListMembers` ([84cd88f](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/84cd88f927ffd3777d7b8e2a077db25b5fa4559f))
14+
* **agent:** add spec mode for planning before interactive implementation ([7c90701](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/7c907013b04eb971cf061138807924c24fec81e0))
15+
* API for SCIM configuration management ([ec502a0](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/ec502a0d19aeb88f2c4a854f571a33f0bc26aaa9))
16+
* **api:** add CheckRepositoryAccess API for repository access validation ([8ae77ad](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/8ae77ad1491bf100031b7263e41a9f87cb629849))
17+
* **api:** add draft and state fields to PullRequest proto ([839fe7e](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/839fe7e7b087641896dce9c79ea62af6bac36675))
18+
* **api:** add inputs array to UserInputBlock proto ([19f7c16](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/19f7c16b298c577b080e65ce464532242e18ac99))
19+
* **api:** add ListSCMOrganizations endpoint ([15f23b7](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/15f23b787045dd6a17a90ee960a1903553e3449a))
20+
* **api:** improve SearchRepositories pagination with next_page and total_count ([a5d31a4](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/a5d31a49ae5c6446019060a2c35f058d919aefb7))
21+
* **automations:** add before_snapshot trigger type ([c8729ef](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/c8729efc7036e7a8b0a4748e7dcdb6fec1e462d5))
22+
* **dashboard:** show tier badge in org selector ([1cd405d](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1cd405d34b3ca91d961fd424689960cf715a256b))
23+
* Define SCIMConfiguration database schema ([ca0a81c](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/ca0a81c7ba21a0011f546806dfce150ce83aa7dc))
24+
* move agent mode from Spec to Status, add AgentModeChange signals ([268e2f7](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/268e2f76cd9fbd1c4a8b359750a45ef9ca3390c1))
25+
* **secrets:** add ServiceAccountSecret entity with full support ([d29e178](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/d29e1783d540c88e9f1be7fd36e147d4a671d674))
26+
27+
28+
### Chores
29+
30+
* fix typo in descriptions ([4b2ec35](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/4b2ec351c29bad4f8ac8cb7491404f38fc434e19))
31+
* **internal:** update `actions/checkout` version ([4789c52](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/4789c523a6f077c7d31a5e939a3bad3735f1db7c))
32+
* **internal:** upgrade babel, qs, js-yaml ([1a41839](https://github.com/gitpod-io/gitpod-sdk-typescript/commit/1a418394fd33e8ef92fc9a557c20c331a6ce280e))
33+
334
## 0.9.0 (2026-01-09)
435

536
Full Changelog: [v0.8.0...v0.9.0](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.8.0...v0.9.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitpod/sdk",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "The official TypeScript library for the Gitpod API",
55
"author": "Gitpod <[email protected]>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.9.0'; // x-release-please-version
1+
export const VERSION = '0.10.0'; // x-release-please-version

0 commit comments

Comments
 (0)