feat(gitlab): add repository branches and tags endpoints and corresponding types

This commit is contained in:
2026-03-02 09:32:47 +00:00
parent e94004742f
commit 879f16dd98
5 changed files with 48 additions and 1 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2026-03-02 - 2.4.0 - feat(gitlab)
add repository branches and tags endpoints and corresponding types
- Add getRepoBranches(projectId, opts?) to list repository branches (supports pagination with page and perPage; defaults to page=1, perPage=50).
- Add getRepoTags(projectId, opts?) to list repository tags (supports pagination with page and perPage; defaults to page=1, perPage=50).
- Introduce IGitLabBranch and IGitLabTag interfaces and export them from ts/index.ts.
## 2026-02-28 - 2.3.0 - feat(gitlab)
add support for GitLab protected branches (list and unprotect)