GitLabApiClient
GitLabApiClient copied to clipboard
GitLab API client
When working with branch names that contain special characters (including but not limited to slashes), [BranchClient](https://github.com/nmklotas/GitLabApiClient/blob/89e2a169cf7e3a4d0388050c61450570a4be04ad/src/GitLabApiClient/BranchClient.cs) performs incorrect HTTP requests. URL encoding for the `branchName` parameter should be added to...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Gitlab has an API for events - a stream of things that happened to objects. https://docs.gitlab.com/ee/api/events.html For example, I want to know when a particular issue was closed - the...
Added in functionality to allow specifying sort order and including HTML descriptions for Releases. Git was ignoring Models/Releases due to the standard [Rr]eleases in .gitignore. Both have been fixed/implemented.
Gitlab returns a list of tags for each job. I have added it to the Job response. Also the id field on a job has been changed to a string,...
The GitLab API supports finding pipelines by 'source' (whatever triggered the pipeline). I have added the source element to the pipeline request and detailed response.
Kindly let me know did we handled 429 "Too Many Request" exception in this library?
This PR adds support for the [GitLab Environments API](https://docs.gitlab.com/ee/api/environments.html). I attempted to follow the established coding patterns precisely. I added some unit tests for URL building. I attempted to add...
I am using your code to integrate gitlab instance with one my automation project and its super useful, will you be able to add code to get artifacts from pipeline...