Changelog for #54

This commit is contained in:
bkellam 2024-10-29 15:14:45 -07:00
parent 26779dd84d
commit 8a619b7145
3 changed files with 6 additions and 2 deletions

View file

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added filtering panel for filtering results by repository and by language. ([#48](https://github.com/sourcebot-dev/sourcebot/pull/48)) - Added filtering panel for filtering results by repository and by language. ([#48](https://github.com/sourcebot-dev/sourcebot/pull/48))
### Fixed
- Fixed issue with GitLab sub-projects not being included recursively. ([#54](https://github.com/sourcebot-dev/sourcebot/pull/54))
## [2.1.1] - 2024-10-25 ## [2.1.1] - 2024-10-25
### Fixed ### Fixed

View file

@ -84,7 +84,7 @@ export interface GitLabConfig {
*/ */
users?: string[]; users?: string[];
/** /**
* List of groups to sync with. All projects in the group visible to the provided `token` (if any) will be synced, unless explicitly defined in the `exclude` property. Subgroups can be specified by providing the path to the subgroup (e.g. `my-group/sub-group-a`). * List of groups to sync with. All projects in the group (and recursive subgroups) visible to the provided `token` (if any) will be synced, unless explicitly defined in the `exclude` property. Subgroups can be specified by providing the path to the subgroup (e.g. `my-group/sub-group-a`).
*/ */
groups?: string[]; groups?: string[];
/** /**

View file

@ -165,7 +165,7 @@
"my-group/sub-group-b" "my-group/sub-group-b"
] ]
], ],
"description": "List of groups to sync with. All projects in the group visible to the provided `token` (if any) will be synced, unless explicitly defined in the `exclude` property. Subgroups can be specified by providing the path to the subgroup (e.g. `my-group/sub-group-a`)." "description": "List of groups to sync with. All projects in the group (and recursive subgroups) visible to the provided `token` (if any) will be synced, unless explicitly defined in the `exclude` property. Subgroups can be specified by providing the path to the subgroup (e.g. `my-group/sub-group-a`)."
}, },
"projects": { "projects": {
"type": "array", "type": "array",