Skip to content

Commit c9cc7e4

Browse files
fix: Add missing changes from #1170 (#1176)
* fix * changelog * changelog
1 parent a6116ca commit c9cc7e4

5 files changed

Lines changed: 11 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
- Add missing schema changes introduced in [#1170](https://github.com/sourcebot-dev/sourcebot/pull/1170). [#1176](https://github.com/sourcebot-dev/sourcebot/pull/1176)
12+
1013
## [4.17.1] - 2026-05-04
1114

1215
### Added

docs/snippets/schemas/v3/connection.schema.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@
985985
"type": "array",
986986
"items": {
987987
"type": "string",
988-
"pattern": "^[\\w.-]+\\/[\\w.-]+$"
988+
"pattern": "^[\\w.-]+\\/[\\w. -]+$"
989989
},
990990
"default": [],
991991
"examples": [
@@ -1000,7 +1000,7 @@
10001000
"type": "array",
10011001
"items": {
10021002
"type": "string",
1003-
"pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$"
1003+
"pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$"
10041004
},
10051005
"default": [],
10061006
"examples": [

docs/snippets/schemas/v3/index.schema.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,7 +1476,7 @@
14761476
"type": "array",
14771477
"items": {
14781478
"type": "string",
1479-
"pattern": "^[\\w.-]+\\/[\\w.-]+$"
1479+
"pattern": "^[\\w.-]+\\/[\\w. -]+$"
14801480
},
14811481
"default": [],
14821482
"examples": [
@@ -1491,7 +1491,7 @@
14911491
"type": "array",
14921492
"items": {
14931493
"type": "string",
1494-
"pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$"
1494+
"pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$"
14951495
},
14961496
"default": [],
14971497
"examples": [

packages/schemas/src/v3/connection.schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ const schema = {
984984
"type": "array",
985985
"items": {
986986
"type": "string",
987-
"pattern": "^[\\w.-]+\\/[\\w.-]+$"
987+
"pattern": "^[\\w.-]+\\/[\\w. -]+$"
988988
},
989989
"default": [],
990990
"examples": [
@@ -999,7 +999,7 @@ const schema = {
999999
"type": "array",
10001000
"items": {
10011001
"type": "string",
1002-
"pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$"
1002+
"pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$"
10031003
},
10041004
"default": [],
10051005
"examples": [

packages/schemas/src/v3/index.schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,7 @@ const schema = {
14751475
"type": "array",
14761476
"items": {
14771477
"type": "string",
1478-
"pattern": "^[\\w.-]+\\/[\\w.-]+$"
1478+
"pattern": "^[\\w.-]+\\/[\\w. -]+$"
14791479
},
14801480
"default": [],
14811481
"examples": [
@@ -1490,7 +1490,7 @@ const schema = {
14901490
"type": "array",
14911491
"items": {
14921492
"type": "string",
1493-
"pattern": "^[\\w.-]+\\/[\\w.-]+\\/[\\w.-]+$"
1493+
"pattern": "^[\\w.-]+\\/[\\w. -]+\\/[\\w. -]+$"
14941494
},
14951495
"default": [],
14961496
"examples": [

0 commit comments

Comments
 (0)