Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat: add support for merge_base API | Nejc Habjan | 2022-08-19 | 1 | -0/+10 |
| | |||||
* | fix: add `get_all` param (and `--get-all`) to allow passing `all` to API | Nejc Habjan | 2022-07-21 | 1 | -0/+20 |
| | |||||
* | test(functional): replace len() calls with list membership checks | Nejc Habjan | 2022-07-03 | 1 | -5/+3 |
| | |||||
* | feat(api): support head() method for get and list endpoints | Nejc Habjan | 2022-06-25 | 1 | -0/+3 |
| | |||||
* | fix: remove custom URL encoding | John L. Villalovos | 2022-01-08 | 1 | -2/+6 |
| | | | | | | | | | | We were using `str.replace()` calls to take care of URL encoding issues. Switch them to use our `utils._url_encode()` function which itself uses `urllib.parse.quote()` Closes: #1356 | ||||
* | chore: skip a functional test if not using >= py3.9jlvillal/repository_func_tests | John L. Villalovos | 2021-12-26 | 1 | -0/+4 |
| | | | | | One of the tests requires Python 3.9 or higher to run. Mark the test to be skipped if running Python less than 3.9. | ||||
* | feat(api): support file format for repository archive | Max Ludwig | 2021-12-21 | 1 | -2/+25 |
| | |||||
* | refactor: use f-strings for string formatting | Nejc Habjan | 2021-11-05 | 1 | -3/+1 |
| | |||||
* | chore: rename `master` branch to `main`chore/master-to-main | Nejc Habjan | 2021-10-11 | 1 | -11/+11 |
| | | | | | BREAKING CHANGE: As of python-gitlab 3.0.0, the default branch for development has changed from `master` to `main`. | ||||
* | chore: rename 'tools/functional/' to 'tests/functional/' | John L. Villalovos | 2021-05-26 | 1 | -0/+126 |
Rename the 'tools/functional/' directory to 'tests/functional/' This makes more sense as these are functional tests and not tools. This was dicussed in: https://github.com/python-gitlab/python-gitlab/discussions/1468 |