From 5d1ca5c51a5307deaffaef281f5ed96c84e2149c Mon Sep 17 00:00:00 2001 From: Brendan Kellam Date: Tue, 5 May 2026 15:23:52 -0700 Subject: [PATCH 1/3] fix --- docs/snippets/schemas/v3/connection.schema.mdx | 4 ++-- docs/snippets/schemas/v3/index.schema.mdx | 4 ++-- packages/schemas/src/v3/connection.schema.ts | 4 ++-- packages/schemas/src/v3/index.schema.ts | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/snippets/schemas/v3/connection.schema.mdx b/docs/snippets/schemas/v3/connection.schema.mdx index f0f81c476..4671abf74 100644 --- a/docs/snippets/schemas/v3/connection.schema.mdx +++ b/docs/snippets/schemas/v3/connection.schema.mdx @@ -985,7 +985,7 @@ "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+$" }, "default": [], "examples": [ @@ -1000,7 +1000,7 @@ "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$" }, "default": [], "examples": [ diff --git a/docs/snippets/schemas/v3/index.schema.mdx b/docs/snippets/schemas/v3/index.schema.mdx index 6e23ea4da..8076ab8e2 100644 --- a/docs/snippets/schemas/v3/index.schema.mdx +++ b/docs/snippets/schemas/v3/index.schema.mdx @@ -1476,7 +1476,7 @@ "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+$" }, "default": [], "examples": [ @@ -1491,7 +1491,7 @@ "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$" }, "default": [], "examples": [ diff --git a/packages/schemas/src/v3/connection.schema.ts b/packages/schemas/src/v3/connection.schema.ts index e40f3b39b..c539e918d 100644 --- a/packages/schemas/src/v3/connection.schema.ts +++ b/packages/schemas/src/v3/connection.schema.ts @@ -984,7 +984,7 @@ const schema = { "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+$" }, "default": [], "examples": [ @@ -999,7 +999,7 @@ const schema = { "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$" }, "default": [], "examples": [ diff --git a/packages/schemas/src/v3/index.schema.ts b/packages/schemas/src/v3/index.schema.ts index f66429185..8bc054ade 100644 --- a/packages/schemas/src/v3/index.schema.ts +++ b/packages/schemas/src/v3/index.schema.ts @@ -1475,7 +1475,7 @@ const schema = { "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+$" }, "default": [], "examples": [ @@ -1490,7 +1490,7 @@ const schema = { "type": "array", "items": { "type": "string", - "pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$" + "pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$" }, "default": [], "examples": [ From 4710daf160196e3b3293d05b5176f3cfb2f1a3df Mon Sep 17 00:00:00 2001 From: Brendan Kellam Date: Tue, 5 May 2026 15:28:01 -0700 Subject: [PATCH 2/3] changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index af857c42c..4cea08866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [4.17.1] - 2026-05-04 +### Fixed +- Add missing schema changes introduced in [#1170](https://github.com/sourcebot-dev/sourcebot/pull/1170). [#1176](https://github.com/sourcebot-dev/sourcebot/pull/1176) + ### Added - Added three new audit actions covering the full org membership lifecycle: `org.member_added`, `org.member_removed`, and `org.member_left`. [#1165](https://github.com/sourcebot-dev/sourcebot/pull/1165) - Added per-user JWT session versioning so admin-driven member removals (and voluntary leaves) invalidate the removed user's active JWT cookies, personal API keys, and OAuth tokens atomically on their next request. [#1168](https://github.com/sourcebot-dev/sourcebot/pull/1168) From f47af4a5ea8a7a4a751d168bba011590c2aea20d Mon Sep 17 00:00:00 2001 From: Brendan Kellam Date: Tue, 5 May 2026 15:28:31 -0700 Subject: [PATCH 3/3] changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cea08866..a2db78d7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [4.17.1] - 2026-05-04 - ### Fixed - Add missing schema changes introduced in [#1170](https://github.com/sourcebot-dev/sourcebot/pull/1170). [#1176](https://github.com/sourcebot-dev/sourcebot/pull/1176) +## [4.17.1] - 2026-05-04 + ### Added - Added three new audit actions covering the full org membership lifecycle: `org.member_added`, `org.member_removed`, and `org.member_left`. [#1165](https://github.com/sourcebot-dev/sourcebot/pull/1165) - Added per-user JWT session versioning so admin-driven member removals (and voluntary leaves) invalidate the removed user's active JWT cookies, personal API keys, and OAuth tokens atomically on their next request. [#1168](https://github.com/sourcebot-dev/sourcebot/pull/1168)