Skip to content

Commit e106d64

Browse files
Merge branch 'main' into bkellam/bedrock_service_accounts
2 parents 950680e + b217fbe commit e106d64

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Added fallback to default the Node.JS AWS SDK's `fromNodeProviderChain` when no credentials are provided for a bedrock config. [#513](https://github.com/sourcebot-dev/sourcebot/pull/513)
1212

13+
### Fixed
14+
- Fixed "At least one project, user, or group must be specified" for GitLab configs with `all` in web configurator. [#512](https://github.com/sourcebot-dev/sourcebot/pull/512)
15+
1316
## [4.6.8] - 2025-09-15
1417

1518
### Fixed

packages/web/src/app/[domain]/components/connectionCreationForms/gitlabConnectionCreationForm.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ const additionalConfigValidation = (config: GitlabConnectionConfig): { message:
1313
const hasProjects = config.projects && config.projects.length > 0 && config.projects.some(p => p.trim().length > 0);
1414
const hasUsers = config.users && config.users.length > 0 && config.users.some(u => u.trim().length > 0);
1515
const hasGroups = config.groups && config.groups.length > 0 && config.groups.some(g => g.trim().length > 0);
16+
const hasAll = config.all;
1617

17-
if (!hasProjects && !hasUsers && !hasGroups) {
18+
if (!hasProjects && !hasUsers && !hasGroups && !hasAll) {
1819
return {
1920
message: "At least one project, user, or group must be specified",
2021
isValid: false,

0 commit comments

Comments
 (0)