python-gitlab 4.5.0__tar.gz → 4.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (338) hide show
  1. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/CHANGELOG.md +384 -211
  2. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/PKG-INFO +3 -3
  3. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/groups.rst +21 -0
  4. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/iterations.rst +10 -0
  5. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/pipelines_and_jobs.rst +5 -0
  6. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/_version.py +1 -1
  7. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/cli.py +44 -45
  8. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/client.py +2 -2
  9. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/mixins.py +22 -14
  10. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/cli.py +25 -12
  11. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/__init__.py +1 -0
  12. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/artifacts.py +5 -2
  13. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/ci_lint.py +4 -4
  14. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/commits.py +6 -6
  15. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/container_registry.py +2 -2
  16. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/deploy_keys.py +6 -1
  17. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/deployments.py +2 -2
  18. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/environments.py +1 -1
  19. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/files.py +15 -7
  20. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/geo_nodes.py +4 -4
  21. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/groups.py +13 -7
  22. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/integrations.py +3 -1
  23. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/issues.py +6 -4
  24. python_gitlab-4.7.0/gitlab/v4/objects/iterations.py +53 -0
  25. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/jobs.py +11 -14
  26. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/merge_request_approvals.py +8 -3
  27. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/merge_requests.py +13 -12
  28. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/milestones.py +4 -4
  29. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/namespaces.py +3 -1
  30. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/packages.py +4 -4
  31. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/pipelines.py +25 -4
  32. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/projects.py +21 -18
  33. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/repositories.py +13 -9
  34. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/runners.py +2 -2
  35. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/secure_files.py +1 -1
  36. python_gitlab-4.7.0/gitlab/v4/objects/service_accounts.py +18 -0
  37. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/sidekiq.py +4 -4
  38. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/snippets.py +3 -3
  39. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/todos.py +2 -2
  40. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/topics.py +2 -2
  41. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/users.py +10 -10
  42. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/pyproject.toml +2 -2
  43. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/python_gitlab.egg-info/PKG-INFO +3 -3
  44. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/python_gitlab.egg-info/SOURCES.txt +1 -0
  45. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/python_gitlab.egg-info/requires.txt +2 -2
  46. python_gitlab-4.7.0/requirements-lint.txt +13 -0
  47. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/requirements-test.txt +3 -3
  48. python_gitlab-4.7.0/requirements.txt +2 -0
  49. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_groups.py +9 -0
  50. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli.py +4 -8
  51. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/.env +1 -1
  52. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_groups.py +26 -0
  53. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_pipelines.py +97 -0
  54. python_gitlab-4.5.0/gitlab/v4/objects/iterations.py +0 -26
  55. python_gitlab-4.5.0/requirements-lint.txt +0 -13
  56. python_gitlab-4.5.0/requirements.txt +0 -3
  57. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/AUTHORS +0 -0
  58. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/COPYING +0 -0
  59. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/MANIFEST.in +0 -0
  60. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/README.rst +0 -0
  61. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/Makefile +0 -0
  62. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/__init__.py +0 -0
  63. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/_static/js/gitter.js +0 -0
  64. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/api/gitlab.rst +0 -0
  65. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/api/gitlab.v4.rst +0 -0
  66. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/api-levels.rst +0 -0
  67. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/api-objects.rst +0 -0
  68. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/api-usage-advanced.rst +0 -0
  69. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/api-usage.rst +0 -0
  70. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/changelog.md +0 -0
  71. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/cli-examples.rst +0 -0
  72. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/cli-objects.rst +0 -0
  73. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/cli-usage.rst +0 -0
  74. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/conf.py +0 -0
  75. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/ext/__init__.py +0 -0
  76. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/ext/docstrings.py +0 -0
  77. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/ext/manager_tmpl.j2 +0 -0
  78. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/faq.rst +0 -0
  79. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/access_requests.rst +0 -0
  80. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/appearance.rst +0 -0
  81. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/applications.rst +0 -0
  82. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/badges.rst +0 -0
  83. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/boards.rst +0 -0
  84. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/branches.rst +0 -0
  85. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/bulk_imports.rst +0 -0
  86. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/ci_lint.rst +0 -0
  87. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/clusters.rst +0 -0
  88. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/commits.rst +0 -0
  89. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/deploy_keys.rst +0 -0
  90. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/deploy_tokens.rst +0 -0
  91. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/deployments.rst +0 -0
  92. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/discussions.rst +0 -0
  93. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/draft_notes.rst +0 -0
  94. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/emojis.rst +0 -0
  95. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/environments.rst +0 -0
  96. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/epics.rst +0 -0
  97. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/events.rst +0 -0
  98. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/features.rst +0 -0
  99. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/geo_nodes.rst +0 -0
  100. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/group_access_tokens.rst +0 -0
  101. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/invitations.rst +0 -0
  102. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/issues.rst +0 -0
  103. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/job_token_scope.rst +0 -0
  104. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/keys.rst +0 -0
  105. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/labels.rst +0 -0
  106. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/merge_request_approvals.rst +0 -0
  107. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/merge_requests.rst +0 -0
  108. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/merge_trains.rst +0 -0
  109. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/messages.rst +0 -0
  110. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/milestones.rst +0 -0
  111. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/namespaces.rst +0 -0
  112. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/notes.rst +0 -0
  113. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/notifications.rst +0 -0
  114. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/packages.rst +0 -0
  115. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/pagesdomains.rst +0 -0
  116. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/personal_access_tokens.rst +0 -0
  117. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/project_access_tokens.rst +0 -0
  118. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/projects.rst +0 -0
  119. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/protected_branches.rst +0 -0
  120. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/protected_environments.rst +0 -0
  121. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/releases.rst +0 -0
  122. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/remote_mirrors.rst +0 -0
  123. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/repositories.rst +0 -0
  124. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/repository_tags.rst +0 -0
  125. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/resource_groups.rst +0 -0
  126. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/runners.rst +0 -0
  127. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/search.rst +0 -0
  128. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/secure_files.rst +0 -0
  129. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/settings.rst +0 -0
  130. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/sidekiq.rst +0 -0
  131. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/snippets.rst +0 -0
  132. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/statistics.rst +0 -0
  133. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/system_hooks.rst +0 -0
  134. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/templates.rst +0 -0
  135. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/todos.rst +0 -0
  136. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/topics.rst +0 -0
  137. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/users.rst +0 -0
  138. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/variables.rst +0 -0
  139. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/gl_objects/wikis.rst +0 -0
  140. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/index.rst +0 -0
  141. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/make.bat +0 -0
  142. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/docs/release-notes.rst +0 -0
  143. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/__init__.py +0 -0
  144. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/__main__.py +0 -0
  145. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/_backends/__init__.py +0 -0
  146. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/_backends/protocol.py +0 -0
  147. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/_backends/requests_backend.py +0 -0
  148. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/base.py +0 -0
  149. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/config.py +0 -0
  150. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/const.py +0 -0
  151. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/exceptions.py +0 -0
  152. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/py.typed +0 -0
  153. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/types.py +0 -0
  154. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/utils.py +0 -0
  155. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/__init__.py +0 -0
  156. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/access_requests.py +0 -0
  157. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/appearance.py +0 -0
  158. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/applications.py +0 -0
  159. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/audit_events.py +0 -0
  160. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/award_emojis.py +0 -0
  161. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/badges.py +0 -0
  162. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/boards.py +0 -0
  163. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/branches.py +0 -0
  164. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/broadcast_messages.py +0 -0
  165. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/bulk_imports.py +0 -0
  166. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/clusters.py +0 -0
  167. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/custom_attributes.py +0 -0
  168. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/deploy_tokens.py +0 -0
  169. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/discussions.py +0 -0
  170. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/draft_notes.py +0 -0
  171. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/epics.py +0 -0
  172. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/events.py +0 -0
  173. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/export_import.py +0 -0
  174. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/features.py +0 -0
  175. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/group_access_tokens.py +0 -0
  176. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/hooks.py +0 -0
  177. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/invitations.py +0 -0
  178. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/job_token_scope.py +0 -0
  179. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/keys.py +0 -0
  180. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/labels.py +0 -0
  181. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/ldap.py +0 -0
  182. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/members.py +0 -0
  183. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/merge_trains.py +0 -0
  184. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/notes.py +0 -0
  185. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/notification_settings.py +0 -0
  186. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/pages.py +0 -0
  187. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/personal_access_tokens.py +0 -0
  188. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/project_access_tokens.py +0 -0
  189. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/push_rules.py +0 -0
  190. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/releases.py +0 -0
  191. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/resource_groups.py +0 -0
  192. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/reviewers.py +0 -0
  193. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/settings.py +0 -0
  194. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/statistics.py +0 -0
  195. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/tags.py +0 -0
  196. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/templates.py +0 -0
  197. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/triggers.py +0 -0
  198. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/variables.py +0 -0
  199. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/gitlab/v4/objects/wikis.py +0 -0
  200. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/python_gitlab.egg-info/dependency_links.txt +0 -0
  201. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/python_gitlab.egg-info/entry_points.txt +0 -0
  202. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/python_gitlab.egg-info/top_level.txt +0 -0
  203. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/requirements-docker.txt +0 -0
  204. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/requirements-docs.txt +0 -0
  205. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/requirements-precommit.txt +0 -0
  206. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/setup.cfg +0 -0
  207. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/__init__.py +0 -0
  208. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/conftest.py +0 -0
  209. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/__init__.py +0 -0
  210. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/__init__.py +0 -0
  211. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_boards.py +0 -0
  212. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_branches.py +0 -0
  213. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_bulk_imports.py +0 -0
  214. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_current_user.py +0 -0
  215. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_deploy_keys.py +0 -0
  216. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_deploy_tokens.py +0 -0
  217. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_epics.py +0 -0
  218. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_gitlab.py +0 -0
  219. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_import_export.py +0 -0
  220. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_issues.py +0 -0
  221. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_keys.py +0 -0
  222. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_lazy_objects.py +0 -0
  223. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_merge_requests.py +0 -0
  224. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_packages.py +0 -0
  225. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_project_job_token_scope.py +0 -0
  226. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_projects.py +0 -0
  227. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_push_rules.py +0 -0
  228. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_releases.py +0 -0
  229. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_repository.py +0 -0
  230. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_services.py +0 -0
  231. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_snippets.py +0 -0
  232. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_statistics.py +0 -0
  233. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_topics.py +0 -0
  234. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_users.py +0 -0
  235. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_variables.py +0 -0
  236. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/api/test_wikis.py +0 -0
  237. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/__init__.py +0 -0
  238. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/conftest.py +0 -0
  239. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_artifacts.py +0 -0
  240. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_packages.py +0 -0
  241. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_projects.py +0 -0
  242. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_repository.py +0 -0
  243. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_resource_access_tokens.py +0 -0
  244. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_users.py +0 -0
  245. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_v4.py +0 -0
  246. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/cli/test_cli_variables.py +0 -0
  247. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/conftest.py +0 -0
  248. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/ee-test.py +0 -0
  249. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/__init__.py +0 -0
  250. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/avatar.png +0 -0
  251. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/create_license.rb +0 -0
  252. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/docker-compose.yml +0 -0
  253. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/docker.py +0 -0
  254. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/invalid_auth.cfg +0 -0
  255. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/invalid_version.cfg +0 -0
  256. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/fixtures/set_token.rb +0 -0
  257. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/functional/helpers.py +0 -0
  258. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/install/test_install.py +0 -0
  259. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/smoke/__init__.py +0 -0
  260. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/smoke/test_dists.py +0 -0
  261. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/__init__.py +0 -0
  262. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/_backends/__init__.py +0 -0
  263. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/_backends/test_requests_backend.py +0 -0
  264. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/base/test_rest_manager.py +0 -0
  265. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/base/test_rest_object.py +0 -0
  266. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/conftest.py +0 -0
  267. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/helpers.py +0 -0
  268. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/meta/__init__.py +0 -0
  269. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/meta/test_ensure_type_hints.py +0 -0
  270. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/meta/test_imports.py +0 -0
  271. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/meta/test_mro.py +0 -0
  272. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/mixins/__init__.py +0 -0
  273. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/mixins/test_meta_mixins.py +0 -0
  274. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/mixins/test_mixin_methods.py +0 -0
  275. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/mixins/test_object_mixins_attributes.py +0 -0
  276. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/__init__.py +0 -0
  277. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/conftest.py +0 -0
  278. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_appearance.py +0 -0
  279. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_applications.py +0 -0
  280. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_audit_events.py +0 -0
  281. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_badges.py +0 -0
  282. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_bridges.py +0 -0
  283. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_bulk_imports.py +0 -0
  284. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_ci_lint.py +0 -0
  285. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_commits.py +0 -0
  286. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_deploy_tokens.py +0 -0
  287. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_deployments.py +0 -0
  288. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_draft_notes.py +0 -0
  289. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_environments.py +0 -0
  290. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_group_access_tokens.py +0 -0
  291. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_hooks.py +0 -0
  292. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_invitations.py +0 -0
  293. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_issues.py +0 -0
  294. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_iterations.py +0 -0
  295. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_job_artifacts.py +0 -0
  296. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_job_token_scope.py +0 -0
  297. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_jobs.py +0 -0
  298. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_keys.py +0 -0
  299. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_members.py +0 -0
  300. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_merge_request_pipelines.py +0 -0
  301. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_merge_requests.py +0 -0
  302. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_merge_trains.py +0 -0
  303. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_packages.py +0 -0
  304. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_personal_access_tokens.py +0 -0
  305. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_pipeline_schedules.py +0 -0
  306. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_project_access_tokens.py +0 -0
  307. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_project_import_export.py +0 -0
  308. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_project_merge_request_approvals.py +0 -0
  309. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_project_statistics.py +0 -0
  310. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_projects.py +0 -0
  311. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_registry_repositories.py +0 -0
  312. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_releases.py +0 -0
  313. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_remote_mirrors.py +0 -0
  314. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_repositories.py +0 -0
  315. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_resource_groups.py +0 -0
  316. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_resource_iteration_events.py +0 -0
  317. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_resource_label_events.py +0 -0
  318. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_resource_milestone_events.py +0 -0
  319. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_resource_state_events.py +0 -0
  320. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_runners.py +0 -0
  321. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_secure_files.py +0 -0
  322. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_services.py +0 -0
  323. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_snippets.py +0 -0
  324. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_statistics.py +0 -0
  325. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_submodules.py +0 -0
  326. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_todos.py +0 -0
  327. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_topics.py +0 -0
  328. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_users.py +0 -0
  329. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/objects/test_variables.py +0 -0
  330. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_cli.py +0 -0
  331. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_config.py +0 -0
  332. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_exceptions.py +0 -0
  333. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_gitlab.py +0 -0
  334. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_gitlab_auth.py +0 -0
  335. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_gitlab_http_methods.py +0 -0
  336. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_types.py +0 -0
  337. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tests/unit/test_utils.py +0 -0
  338. {python_gitlab-4.5.0 → python_gitlab-4.7.0}/tox.ini +0 -0
@@ -1,6 +1,227 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v4.7.0 (2024-06-28)
3
4
 
5
+ ### Chore
6
+
7
+ * chore(deps): update all non-major dependencies ([`88de2f0`](https://github.com/python-gitlab/python-gitlab/commit/88de2f0fc52f4f02e1d44139f4404acf172624d7))
8
+
9
+ * chore(deps): update all non-major dependencies ([`a510f43`](https://github.com/python-gitlab/python-gitlab/commit/a510f43d990c3a3fd169854218b64d4eb9491628))
10
+
11
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17.0.2-ee.0 ([`51779c6`](https://github.com/python-gitlab/python-gitlab/commit/51779c63e6a58e1ae68e9b1c3ffff998211d4e66))
12
+
13
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to 6b7558f ([`fd0f0b0`](https://github.com/python-gitlab/python-gitlab/commit/fd0f0b0338623a98e9368c30b600d603b966f8b7))
14
+
15
+ * chore(deps): update all non-major dependencies ([`d4fdf90`](https://github.com/python-gitlab/python-gitlab/commit/d4fdf90655c2cb5124dc2ecd8b449e1e16d0add5))
16
+
17
+ * chore(deps): update dependency types-setuptools to v70 ([`7767514`](https://github.com/python-gitlab/python-gitlab/commit/7767514a1ad4269a92a6610aa71aa8c595565a7d))
18
+
19
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17.0.1-ee.0 ([`df0ff4c`](https://github.com/python-gitlab/python-gitlab/commit/df0ff4c4c1497d6449488b8577ad7188b55c41a9))
20
+
21
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to 477a404 ([`02a551d`](https://github.com/python-gitlab/python-gitlab/commit/02a551d82327b879b7a903b56b7962da552d1089))
22
+
23
+ * chore(deps): update all non-major dependencies ([`d5de288`](https://github.com/python-gitlab/python-gitlab/commit/d5de28884f695a79e49605a698c4f17b868ddeb8))
24
+
25
+ * chore: add a help message for `gitlab project-key enable`
26
+
27
+ Add some help text for `gitlab project-key enable`. This both adds
28
+ help text and shows how to use the new `help` feature.
29
+
30
+ Example:
31
+
32
+ $ gitlab project-key --help
33
+ usage: gitlab project-key [-h] {list,get,create,update,delete,enable} ...
34
+
35
+ options:
36
+ -h, --help show this help message and exit
37
+
38
+ action:
39
+ {list,get,create,update,delete,enable}
40
+ Action to execute on the GitLab resource.
41
+ list List the GitLab resources
42
+ get Get a GitLab resource
43
+ create Create a GitLab resource
44
+ update Update a GitLab resource
45
+ delete Delete a GitLab resource
46
+ enable Enable a deploy key for the project ([`1291dbb`](https://github.com/python-gitlab/python-gitlab/commit/1291dbb588d3a5a54ee54d9bb93c444ce23efa8c))
47
+
48
+ * chore: sort CLI behavior-related args to remove
49
+
50
+ Sort the list of CLI behavior-related args that are to be removed. ([`9b4b0ef`](https://github.com/python-gitlab/python-gitlab/commit/9b4b0efa1ccfb155aee8384de9e00f922b989850))
51
+
52
+ ### Feature
53
+
54
+ * feat(api): add support for latest pipeline ([`635f5a7`](https://github.com/python-gitlab/python-gitlab/commit/635f5a7128c780880824f69a9aba23af148dfeb4))
55
+
56
+ * feat: add `--no-mask-credentials` CLI argument
57
+
58
+ This gives the ability to not mask credentials when using the
59
+ `--debug` argument. ([`18aa1fc`](https://github.com/python-gitlab/python-gitlab/commit/18aa1fc074b9f477cf0826933184bd594b63b489))
60
+
61
+ ### Fix
62
+
63
+ * fix: add ability to add help to custom_actions
64
+
65
+ Now when registering a custom_action can add help text if desired.
66
+
67
+ Also delete the VerticalHelpFormatter as no longer needed. When the
68
+ help value is set to `None` or some other value, the actions will get
69
+ printed vertically. Before when the help value was not set the actions
70
+ would all get put onto one line. ([`9acd2d2`](https://github.com/python-gitlab/python-gitlab/commit/9acd2d23dd8c87586aa99c70b4b47fa47528472b))
71
+
72
+ ## v4.6.0 (2024-05-28)
73
+
74
+ ### Chore
75
+
76
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to 673709c ([`1b550ac`](https://github.com/python-gitlab/python-gitlab/commit/1b550ac706c8c31331a7a9dac607aed49f5e1fcf))
77
+
78
+ * chore(deps): update all non-major dependencies ([`4c7014c`](https://github.com/python-gitlab/python-gitlab/commit/4c7014c13ed63f994e05b498d63b93dc8ab90c2e))
79
+
80
+ * chore: update commit reference in git-blame-ignore-revs ([`d0fd5ad`](https://github.com/python-gitlab/python-gitlab/commit/d0fd5ad5a70e7eb70aedba5a0d3082418c5ffa34))
81
+
82
+ * chore(cli): add ability to not add `_id_attr` as an argument
83
+
84
+ In some cases we don't want to have `_id_attr` as an argument.
85
+
86
+ Add ability to have it not be added as an argument. ([`2037352`](https://github.com/python-gitlab/python-gitlab/commit/20373525c1a1f98c18b953dbef896b2570d3d191))
87
+
88
+ * chore: create a CustomAction dataclass ([`61d8679`](https://github.com/python-gitlab/python-gitlab/commit/61d867925772cf38f20360c9b40140ac3203efb9))
89
+
90
+ * chore: add an initial .git-blame-ignore-revs
91
+
92
+ This adds the `.git-blame-ignore-revs` file which allows ignoring
93
+ certain commits when doing a `git blame --ignore-revs`
94
+
95
+ Ignore the commit that requires keyword arguments for
96
+ `register_custom_action()`
97
+
98
+ https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view ([`74db84c`](https://github.com/python-gitlab/python-gitlab/commit/74db84ca878ec7029643ff7b00db55f9ea085e9b))
99
+
100
+ * chore: require keyword arguments for register_custom_action
101
+
102
+ This makes it more obvious when reading the code what each argument is
103
+ for. ([`7270523`](https://github.com/python-gitlab/python-gitlab/commit/7270523ad89a463c3542e072df73ba2255a49406))
104
+
105
+ * chore: remove typing-extensions from requirements.txt
106
+
107
+ We no longer support Python versions before 3.8. So it isn't needed
108
+ anymore. ([`d569128`](https://github.com/python-gitlab/python-gitlab/commit/d56912835360a1b5a03a20390fb45cb5e8b49ce4))
109
+
110
+ * chore(deps): update dependency requests to v2.32.0 [security] ([`1bc788c`](https://github.com/python-gitlab/python-gitlab/commit/1bc788ca979a36eeff2e35241bdefc764cf335ce))
111
+
112
+ * chore(deps): update all non-major dependencies ([`ba1eec4`](https://github.com/python-gitlab/python-gitlab/commit/ba1eec49556ee022de471aae8d15060189f816e3))
113
+
114
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17 ([`5070d07`](https://github.com/python-gitlab/python-gitlab/commit/5070d07d13b9c87588dbfde3750340e322118779))
115
+
116
+ * chore(cli): on the CLI help show the API endpoint of resources
117
+
118
+ This makes it easier for people to map CLI command names to the API.
119
+
120
+ Looks like this:
121
+ $ gitlab --help
122
+ <snip>
123
+ The GitLab resource to manipulate.
124
+ application API endpoint: /applications
125
+ application-appearance
126
+ API endpoint: /application/appearance
127
+ application-settings
128
+ API endpoint: /application/settings
129
+ application-statistics
130
+ API endpoint: /application/statistics
131
+ <snip> ([`f1ef565`](https://github.com/python-gitlab/python-gitlab/commit/f1ef5650c3201f3883eb04ad90a874e8adcbcde2))
132
+
133
+ * chore(cli): add some simple help for the standard operations
134
+
135
+ Add help for the following standard operations:
136
+ * list: List the GitLab resources
137
+ * get: Get a GitLab resource
138
+ * create: Create a GitLab resource
139
+ * update: Update a GitLab resource
140
+ * delete: Delete a GitLab resource
141
+
142
+ For example:
143
+ $ gitlab project-key --help
144
+ usage: gitlab project-key [-h] {list,get,create,update,delete,enable} ...
145
+
146
+ options:
147
+ -h, --help show this help message and exit
148
+
149
+ action:
150
+ list
151
+ get
152
+ create
153
+ update
154
+ delete
155
+ enable
156
+ Action to execute on the GitLab resource.
157
+ list List the GitLab resources
158
+ get Get a GitLab resource
159
+ create Create a GitLab resource
160
+ update Update a GitLab resource
161
+ delete Delete a GitLab resource ([`5a4a940`](https://github.com/python-gitlab/python-gitlab/commit/5a4a940f42e43ed066838503638fe612813e504f))
162
+
163
+ * chore: correct type-hint for `job.trace()`
164
+
165
+ Closes: #2808 ([`840572e`](https://github.com/python-gitlab/python-gitlab/commit/840572e4fa36581405b604a985d0e130fe43f4ce))
166
+
167
+ * chore: add type info for ProjectFile.content
168
+
169
+ Closes: #2821 ([`62fa271`](https://github.com/python-gitlab/python-gitlab/commit/62fa2719ea129b3428e5e67d3d3a493f9aead863))
170
+
171
+ ### Feature
172
+
173
+ * feat(api): add additional parameter to project/group iteration search (#2796)
174
+
175
+ Co-authored-by: Cristiano Casella <cristiano.casella@seacom.it>
176
+ Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`623dac9`](https://github.com/python-gitlab/python-gitlab/commit/623dac9c8363c61dbf53f72af58835743e96656b))
177
+
178
+ * feat(api): add support for gitlab service account (#2851)
179
+
180
+
181
+ Co-authored-by: Nejc Habjan <hab.nejc@siemens.com> ([`b187dea`](https://github.com/python-gitlab/python-gitlab/commit/b187deadabbfdf0326ecd79a3ee64c9de10c53e0))
182
+
183
+ * feat: more usernames support for MR approvals
184
+
185
+ I don't think commit a2b8c8ccfb5d went far enough to enable usernames
186
+ support. We create and edit a lot of approval rules based on an external
187
+ service (similar to CODE_OWNERS), but only have the usernames available,
188
+ and currently, have to look up each user to get their user ID to populate
189
+ user_ids for .set_approvers() calls. Would very much like to skip the
190
+ lookup and just send the usernames, which this change should allow.
191
+
192
+ See: https://docs.gitlab.com/ee/api/merge_request_approvals.html#create-project-level-rule
193
+
194
+ Signed-off-by: Jarod Wilson <jarod@redhat.com> ([`12d195a`](https://github.com/python-gitlab/python-gitlab/commit/12d195a35a1bd14947fbd6688a8ad1bd3fc21617))
195
+
196
+ ### Fix
197
+
198
+ * fix(deps): update minimum dependency versions in pyproject.toml
199
+
200
+ Update the minimum versions of the dependencies in the pyproject.toml
201
+ file.
202
+
203
+ This is related to PR #2878 ([`37b5a70`](https://github.com/python-gitlab/python-gitlab/commit/37b5a704ef6b94774e54110ba3746a950e733986))
204
+
205
+ * fix(cli): don't require `--id` when enabling a deploy key
206
+
207
+ No longer require `--id` when doing:
208
+ gitlab project-key enable
209
+
210
+ Now only the --project-id and --key-id are required. ([`98fc578`](https://github.com/python-gitlab/python-gitlab/commit/98fc5789d39b81197351660b7a3f18903c2b91ba))
211
+
212
+ * fix: don't raise `RedirectError` for redirected `HEAD` requests ([`8fc13b9`](https://github.com/python-gitlab/python-gitlab/commit/8fc13b91d63d57c704d03b98920522a6469c96d7))
213
+
214
+ * fix: handle large number of approval rules
215
+
216
+ Use `iterator=True` when going through the list of current approval
217
+ rules. This allows it to handle more than the default of 20 approval
218
+ rules.
219
+
220
+ Closes: #2825 ([`ef8f0e1`](https://github.com/python-gitlab/python-gitlab/commit/ef8f0e190b1add3bbba9a7b194aba2f3c1a83b2e))
221
+
222
+ * fix(projects): fix 'import_project' file argument type for typings
223
+
224
+ Signed-off-by: Adrian DC <radian.dc@gmail.com> ([`33fbc14`](https://github.com/python-gitlab/python-gitlab/commit/33fbc14ea8432df7e637462379e567f4d0ad6c18))
4
225
 
5
226
  ## v4.5.0 (2024-05-13)
6
227
 
@@ -125,18 +346,18 @@ Ref: #2823 ([`6d4bffb`](https://github.com/python-gitlab/python-gitlab/commit/6d
125
346
 
126
347
  * feat(job_token_scope): support Groups in job token allowlist API (#2816)
127
348
 
128
- * feat(job_token_scope): support job token access allowlist API
129
-
130
- Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk>
131
- l.dwp.gov.uk>
349
+ * feat(job_token_scope): support job token access allowlist API
350
+
351
+ Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk>
352
+ l.dwp.gov.uk>
132
353
  Co-authored-by: Nejc Habjan <nejc.habjan@siemens.com> ([`2d1b749`](https://github.com/python-gitlab/python-gitlab/commit/2d1b7499a93db2c9600b383e166f7463a5f22085))
133
354
 
134
355
  * feat(cli): allow skipping initial auth calls ([`001e596`](https://github.com/python-gitlab/python-gitlab/commit/001e59675f4a417a869f813d79c298a14268b87d))
135
356
 
136
357
  * feat(api): allow updating protected branches (#2771)
137
358
 
138
- * feat(api): allow updating protected branches
139
-
359
+ * feat(api): allow updating protected branches
360
+
140
361
  Closes #2390 ([`a867c48`](https://github.com/python-gitlab/python-gitlab/commit/a867c48baa6f10ffbfb785e624a6e3888a859571))
141
362
 
142
363
  ### Fix
@@ -189,14 +410,14 @@ Update test to show it works as expected. ([`529f1fa`](https://github.com/python
189
410
 
190
411
  * fix(cli): allow exclusive arguments as optional (#2770)
191
412
 
192
- * fix(cli): allow exclusive arguments as optional
193
-
194
- The CLI takes its arguments from the RequiredOptional, which has three fields: required, optional, and exclusive. In practice, the exclusive options are not defined as either required or optional, and would not be allowed in the CLI. This changes that, so that exclusive options are also added to the argument parser.
195
-
196
- * fix(cli): inform argument parser that options are mutually exclusive
197
-
198
- * fix(cli): use correct exclusive options, add unit test
199
-
413
+ * fix(cli): allow exclusive arguments as optional
414
+
415
+ The CLI takes its arguments from the RequiredOptional, which has three fields: required, optional, and exclusive. In practice, the exclusive options are not defined as either required or optional, and would not be allowed in the CLI. This changes that, so that exclusive options are also added to the argument parser.
416
+
417
+ * fix(cli): inform argument parser that options are mutually exclusive
418
+
419
+ * fix(cli): use correct exclusive options, add unit test
420
+
200
421
  Closes #2769 ([`7ec3189`](https://github.com/python-gitlab/python-gitlab/commit/7ec3189d6eacdb55925e8be886a44d7ee09eb9ca))
201
422
 
202
423
  ### Test
@@ -234,7 +455,6 @@ Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk> ([`
234
455
 
235
456
  * test(smoke): normalize all dist titles for smoke tests ([`ee013fe`](https://github.com/python-gitlab/python-gitlab/commit/ee013fe1579b001b4b30bae33404e827c7bdf8c1))
236
457
 
237
-
238
458
  ## v4.4.0 (2024-01-15)
239
459
 
240
460
  ### Chore
@@ -287,7 +507,6 @@ later if needed.
287
507
 
288
508
  Closes: #2752 ([`57749d4`](https://github.com/python-gitlab/python-gitlab/commit/57749d46de1d975aacb82758c268fc26e5e6ed8b))
289
509
 
290
-
291
510
  ## v4.3.0 (2023-12-28)
292
511
 
293
512
  ### Chore
@@ -314,8 +533,8 @@ Closes: #2752 ([`57749d4`](https://github.com/python-gitlab/python-gitlab/commit
314
533
 
315
534
  * feat(api): add support for the Draft notes API (#2728)
316
535
 
317
- * feat(api): add support for the Draft notes API
318
-
536
+ * feat(api): add support for the Draft notes API
537
+
319
538
  * fix(client): handle empty 204 reponses in PUT requests ([`ebf9d82`](https://github.com/python-gitlab/python-gitlab/commit/ebf9d821cfc36071fca05d38b82c641ae30c974c))
320
539
 
321
540
  ### Fix
@@ -326,7 +545,6 @@ Add a `--no-ssl-verify` option to disable SSL verification
326
545
 
327
546
  Closes: #2714 ([`3fe9fa6`](https://github.com/python-gitlab/python-gitlab/commit/3fe9fa64d9a38bc77950046f2950660d8d7e27a6))
328
547
 
329
-
330
548
  ## v4.2.0 (2023-11-28)
331
549
 
332
550
  ### Chore
@@ -349,13 +567,12 @@ https://docs.gitlab.com/ee/api/pipelines.html ([`4954bbc`](https://github.com/py
349
567
 
350
568
  * feat(api): add support for wiki attachments (#2722)
351
569
 
352
- Added UploadMixin in mixin module
353
- Added UploadMixin dependency for Project, ProjectWiki, GroupWiki
354
- Added api tests for wiki upload
355
- Added unit test for mixin
570
+ Added UploadMixin in mixin module
571
+ Added UploadMixin dependency for Project, ProjectWiki, GroupWiki
572
+ Added api tests for wiki upload
573
+ Added unit test for mixin
356
574
  Added docs sections to wikis.rst ([`7b864b8`](https://github.com/python-gitlab/python-gitlab/commit/7b864b81fd348c6a42e32ace846d1acbcfc43998))
357
575
 
358
-
359
576
  ## v4.1.1 (2023-11-03)
360
577
 
361
578
  ### Chore
@@ -375,7 +592,6 @@ are missing commas. This change adds the missing commas. ([`b1b2edf`](https://gi
375
592
 
376
593
  * fix(build): include py.typed in dists ([`b928639`](https://github.com/python-gitlab/python-gitlab/commit/b928639f7ca252e0abb8ded8f9f142316a4dc823))
377
594
 
378
-
379
595
  ## v4.1.0 (2023-10-28)
380
596
 
381
597
  ### Chore
@@ -402,7 +618,6 @@ are missing commas. This change adds the missing commas. ([`b1b2edf`](https://gi
402
618
 
403
619
  * fix: remove depricated MergeStatus ([`c6c012b`](https://github.com/python-gitlab/python-gitlab/commit/c6c012b9834b69f1fe45689519fbcd92928cfbad))
404
620
 
405
-
406
621
  ## v4.0.0 (2023-10-17)
407
622
 
408
623
  ### Breaking
@@ -688,7 +903,6 @@ Also update dependency `responses==0.23.3` as it provides support for
688
903
 
689
904
  Closes: #2626 ([`988a6e7`](https://github.com/python-gitlab/python-gitlab/commit/988a6e7eff5d24b2432d3d85f1e750f4f95563f7))
690
905
 
691
-
692
906
  ## v3.15.0 (2023-06-09)
693
907
 
694
908
  ### Chore
@@ -713,8 +927,8 @@ Closes: #2626 ([`988a6e7`](https://github.com/python-gitlab/python-gitlab/commit
713
927
 
714
928
  * chore(ci): use OIDC trusted publishing for pypi.org (#2559)
715
929
 
716
- * chore(ci): use OIDC trusted publishing for pypi.org
717
-
930
+ * chore(ci): use OIDC trusted publishing for pypi.org
931
+
718
932
  * chore(ci): explicitly install setuptools in tests ([`7be09e5`](https://github.com/python-gitlab/python-gitlab/commit/7be09e52d75ed8ab723d7a65f5e99d98fe6f52b0))
719
933
 
720
934
  ### Documentation
@@ -739,7 +953,6 @@ This can be used instead of 'user_ids'
739
953
 
740
954
  See: https://docs.gitlab.com/ee/api/merge_request_approvals.html#create-project-level-rule ([`a2b8c8c`](https://github.com/python-gitlab/python-gitlab/commit/a2b8c8ccfb5d4fa4d134300861a3bfb0b10246ca))
741
955
 
742
-
743
956
  ## v3.14.0 (2023-04-11)
744
957
 
745
958
  ### Chore
@@ -776,14 +989,14 @@ Also add some unit tests ([`f2b5e4f`](https://github.com/python-gitlab/python-gi
776
989
 
777
990
  * chore(deps): update all non-major dependencies (#2493)
778
991
 
779
- * chore(deps): update all non-major dependencies
780
- * chore(fixtures): downgrade GitLab for now
781
- * chore(deps): ungroup typing deps, group gitlab instead
782
- * chore(deps): downgrade argcomplete for now
783
-
784
- ---------
785
-
786
- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
992
+ * chore(deps): update all non-major dependencies
993
+ * chore(fixtures): downgrade GitLab for now
994
+ * chore(deps): ungroup typing deps, group gitlab instead
995
+ * chore(deps): downgrade argcomplete for now
996
+
997
+ ---------
998
+
999
+ Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
787
1000
  Co-authored-by: Nejc Habjan <nejc.habjan@siemens.com> ([`07d03dc`](https://github.com/python-gitlab/python-gitlab/commit/07d03dc959128e05d21e8dfd79aa8e916ab5b150))
788
1001
 
789
1002
  * chore(deps): update dependency pre-commit to v3 (#2508)
@@ -822,22 +1035,22 @@ someone. ([`9c24657`](https://github.com/python-gitlab/python-gitlab/commit/9c24
822
1035
 
823
1036
  * chore(deps): update black (23.1.0) and commitizen (2.40.0) (#2479)
824
1037
 
825
- Update the dependency versions:
826
- black: 23.1.0
827
- commitizen: 2.40.0
828
-
829
- They needed to be updated together as just updating `black` caused a
830
- dependency conflict.
831
-
1038
+ Update the dependency versions:
1039
+ black: 23.1.0
1040
+ commitizen: 2.40.0
1041
+
1042
+ They needed to be updated together as just updating `black` caused a
1043
+ dependency conflict.
1044
+
832
1045
  Updated files by running `black` and committing the changes. ([`44786ef`](https://github.com/python-gitlab/python-gitlab/commit/44786efad1dbb66c8242e61cf0830d58dfaff196))
833
1046
 
834
1047
  * chore: add SECURITY.md ([`572ca3b`](https://github.com/python-gitlab/python-gitlab/commit/572ca3b6bfe190f8681eef24e72b15c1f8ba6da8))
835
1048
 
836
1049
  * chore: remove `pre-commit` as a default `tox` environment (#2470)
837
1050
 
838
- For users who use `tox` having `pre-commit` as part of the default
839
- environment list is redundant as it will run the same tests again that
840
- are being run in other environments. For example: black, flake8,
1051
+ For users who use `tox` having `pre-commit` as part of the default
1052
+ environment list is redundant as it will run the same tests again that
1053
+ are being run in other environments. For example: black, flake8,
841
1054
  pylint, and more. ([`fde2495`](https://github.com/python-gitlab/python-gitlab/commit/fde2495dd1e97fd2f0e91063946bb08490b3952c))
842
1055
 
843
1056
  * chore: add Python 3.12 testing
@@ -858,13 +1071,13 @@ be matched. ([`0867564`](https://github.com/python-gitlab/python-gitlab/commit/0
858
1071
 
859
1072
  * docs: fix update badge behaviour
860
1073
 
861
- docs: fix update badge behaviour
862
-
863
- Earlier:
864
- badge.image_link = new_link
865
-
866
- Now:
867
- badge.image_url = new_image_url
1074
+ docs: fix update badge behaviour
1075
+
1076
+ Earlier:
1077
+ badge.image_link = new_link
1078
+
1079
+ Now:
1080
+ badge.image_url = new_image_url
868
1081
  badge.link_url = new_link_url ([`3d7ca1c`](https://github.com/python-gitlab/python-gitlab/commit/3d7ca1caac5803c2e6d60a3e5eba677957b3cfc6))
869
1082
 
870
1083
  * docs(advanced): fix typo in Gitlab examples ([`1992790`](https://github.com/python-gitlab/python-gitlab/commit/19927906809c329788822f91d0abd8761a85c5c3))
@@ -879,17 +1092,17 @@ badge.link_url = new_link_url ([`3d7ca1c`](https://github.com/python-gitlab/pyth
879
1092
 
880
1093
  * feat(backends): use PEP544 protocols for structural subtyping (#2442)
881
1094
 
882
- The purpose of this change is to track API changes described in
883
- https://github.com/python-gitlab/python-gitlab/blob/main/docs/api-levels.rst,
884
- for example, for package versioning and breaking change announcements
885
- in case of protocol changes.
886
-
1095
+ The purpose of this change is to track API changes described in
1096
+ https://github.com/python-gitlab/python-gitlab/blob/main/docs/api-levels.rst,
1097
+ for example, for package versioning and breaking change announcements
1098
+ in case of protocol changes.
1099
+
887
1100
  This is MVP implementation to be used by #2435. ([`4afeaff`](https://github.com/python-gitlab/python-gitlab/commit/4afeaff0361a966254a7fbf0120e93583d460361))
888
1101
 
889
1102
  * feat(client): add http_patch method (#2471)
890
1103
 
891
- In order to support some new API calls we need to support the HTTP `PATCH` method.
892
-
1104
+ In order to support some new API calls we need to support the HTTP `PATCH` method.
1105
+
893
1106
  Closes: #2469 ([`f711d9e`](https://github.com/python-gitlab/python-gitlab/commit/f711d9e2bf78f58cee6a7c5893d4acfd2f980397))
894
1107
 
895
1108
  * feat(cli): add setting of `allow_force_push` for protected branch
@@ -919,10 +1132,10 @@ Closes: #2506 ([`90f96ac`](https://github.com/python-gitlab/python-gitlab/commit
919
1132
 
920
1133
  * fix(cli): add ability to escape at-prefixed parameter (#2513)
921
1134
 
922
- * fix(cli): Add ability to escape at-prefixed parameter (#2511)
923
-
924
- ---------
925
-
1135
+ * fix(cli): Add ability to escape at-prefixed parameter (#2511)
1136
+
1137
+ ---------
1138
+
926
1139
  Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`4f7c784`](https://github.com/python-gitlab/python-gitlab/commit/4f7c78436e62bfd21745c5289117e03ed896bc66))
927
1140
 
928
1141
  * fix(cli): display items when iterator is returned ([`33a04e7`](https://github.com/python-gitlab/python-gitlab/commit/33a04e74fc42d720c7be32172133a614f7268ec1))
@@ -957,7 +1170,6 @@ docs: fix typo in issue docs ([`43f5ac5`](https://github.com/python-gitlab/pytho
957
1170
 
958
1171
  * Merge branch 'main' into typos ([`3cfd390`](https://github.com/python-gitlab/python-gitlab/commit/3cfd3903757bf61386972a18f3225665145324eb))
959
1172
 
960
-
961
1173
  ## v3.13.0 (2023-01-30)
962
1174
 
963
1175
  ### Chore
@@ -968,8 +1180,8 @@ docs: fix typo in issue docs ([`43f5ac5`](https://github.com/python-gitlab/pytho
968
1180
 
969
1181
  * chore: add a UserWarning if both `iterator=True` and `page=X` are used (#2462)
970
1182
 
971
- If a caller calls a `list()` method with both `iterator=True` (or
972
- `as_list=False`) and `page=X` then emit a `UserWarning` as the options
1183
+ If a caller calls a `list()` method with both `iterator=True` (or
1184
+ `as_list=False`) and `page=X` then emit a `UserWarning` as the options
973
1185
  are mutually exclusive. ([`8e85791`](https://github.com/python-gitlab/python-gitlab/commit/8e85791c315822cd26d56c0c0f329cffae879644))
974
1186
 
975
1187
  * chore: remove tox `envdir` values
@@ -1101,7 +1313,6 @@ Resolves #2403 ([`44f05dc`](https://github.com/python-gitlab/python-gitlab/commi
1101
1313
 
1102
1314
  * test(unit): expand tests for pipeline schedules ([`c7cf0d1`](https://github.com/python-gitlab/python-gitlab/commit/c7cf0d1f172c214a11b30622fbccef57d9c86e93))
1103
1315
 
1104
-
1105
1316
  ## v3.12.0 (2022-11-28)
1106
1317
 
1107
1318
  ### Chore
@@ -1204,15 +1415,15 @@ References:
1204
1415
 
1205
1416
  * fix: use POST method and return dict in `cancel_merge_when_pipeline_succeeds()` (#2350)
1206
1417
 
1207
- * Call was incorrectly using a `PUT` method when should have used a
1208
- `POST` method.
1209
- * Changed return type to a `dict` as GitLab only returns
1210
- {'status': 'success'} on success. Since the function didn't work
1211
- previously, this should not impact anyone.
1212
- * Updated the test fixture `merge_request` to add ability to create
1213
- a pipeline.
1214
- * Added functional test for `mr.cancel_merge_when_pipeline_succeeds()`
1215
-
1418
+ * Call was incorrectly using a `PUT` method when should have used a
1419
+ `POST` method.
1420
+ * Changed return type to a `dict` as GitLab only returns
1421
+ {'status': 'success'} on success. Since the function didn't work
1422
+ previously, this should not impact anyone.
1423
+ * Updated the test fixture `merge_request` to add ability to create
1424
+ a pipeline.
1425
+ * Added functional test for `mr.cancel_merge_when_pipeline_succeeds()`
1426
+
1216
1427
  Fixes: #2349 ([`bd82d74`](https://github.com/python-gitlab/python-gitlab/commit/bd82d745c8ea9ff6ff078a4c961a2d6e64a2f63c))
1217
1428
 
1218
1429
  ### Refactor
@@ -1244,7 +1455,6 @@ chore(deps): update all non-major dependencies ([`2974966`](https://github.com/p
1244
1455
 
1245
1456
  chore(deps): update pre-commit hook maxbrunet/pre-commit-renovate to v34 ([`c3d9820`](https://github.com/python-gitlab/python-gitlab/commit/c3d982096d0ce562e63716decbce8185e61bc2f1))
1246
1457
 
1247
-
1248
1458
  ## v3.11.0 (2022-10-28)
1249
1459
 
1250
1460
  ### Chore
@@ -1446,7 +1656,6 @@ test: use false instead of /usr/bin/false ([`4eca9b9`](https://github.com/python
1446
1656
 
1447
1657
  chore(deps): update all non-major dependencies ([`9410acb`](https://github.com/python-gitlab/python-gitlab/commit/9410acb79a65420c344bdf3b9c06eb92c7ad10a1))
1448
1658
 
1449
-
1450
1659
  ## v3.10.0 (2022-09-28)
1451
1660
 
1452
1661
  ### Chore
@@ -1504,7 +1713,6 @@ chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`89
1504
1713
 
1505
1714
  feat: add support for deployment approval endpoint ([`56fbe02`](https://github.com/python-gitlab/python-gitlab/commit/56fbe022e11b3b47fef0bd45b41543c9d73ec94e))
1506
1715
 
1507
-
1508
1716
  ## v3.9.0 (2022-08-28)
1509
1717
 
1510
1718
  ### Chore
@@ -1580,7 +1788,6 @@ chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.31.0 ([`93
1580
1788
 
1581
1789
  chore(deps): update dependency commitizen to v2.31.0 ([`b432e47`](https://github.com/python-gitlab/python-gitlab/commit/b432e47d2e05d36a308d513007e8aecbd10ac001))
1582
1790
 
1583
-
1584
1791
  ## v3.8.1 (2022-08-10)
1585
1792
 
1586
1793
  ### Chore
@@ -1619,7 +1826,6 @@ chore(deps): update dependency sphinx to v5 ([`1e12eaf`](https://github.com/pyth
1619
1826
 
1620
1827
  chore: remove broad Exception catching from `config.py` ([`70e67bf`](https://github.com/python-gitlab/python-gitlab/commit/70e67bfec915a9404acdedf615e7548d75317ea3))
1621
1828
 
1622
-
1623
1829
  ## v3.8.0 (2022-08-04)
1624
1830
 
1625
1831
  ### Chore
@@ -1773,7 +1979,6 @@ chore: make code PEP597 compliant ([`1b7cd31`](https://github.com/python-gitlab/
1773
1979
 
1774
1980
  test(functional): bump GitLab docker image to 15.2.0-ee.0 ([`7a53c69`](https://github.com/python-gitlab/python-gitlab/commit/7a53c6950bb7df90e2a3f4e6d0436cb5d06c3b46))
1775
1981
 
1776
-
1777
1982
  ## v3.7.0 (2022-07-28)
1778
1983
 
1779
1984
  ### Chore
@@ -2208,7 +2413,6 @@ chore: fix misspelling ([`6486566`](https://github.com/python-gitlab/python-gitl
2208
2413
 
2209
2414
  chore(docs): convert tabs to spaces ([`8771ad8`](https://github.com/python-gitlab/python-gitlab/commit/8771ad8ff3391ce42440fcb8df8da5dbe346e09e))
2210
2415
 
2211
-
2212
2416
  ## v3.6.0 (2022-06-28)
2213
2417
 
2214
2418
  ### Chore
@@ -2405,17 +2609,17 @@ expect. ([`0b7933c`](https://github.com/python-gitlab/python-gitlab/commit/0b793
2405
2609
 
2406
2610
  * docs(api): fix incorrect docs for merge_request_approvals (#2094)
2407
2611
 
2408
- * docs(api): fix incorrect docs for merge_request_approvals
2409
-
2410
- The `set_approvers()` method is on the `ProjectApprovalManager` class.
2411
- It is not part of the `ProjectApproval` class.
2412
-
2413
- The docs were previously showing to call `set_approvers` using a
2414
- `ProjectApproval` instance, which would fail. Correct the
2415
- documentation.
2416
-
2417
- This was pointed out by a question on the Gitter channel.
2418
-
2612
+ * docs(api): fix incorrect docs for merge_request_approvals
2613
+
2614
+ The `set_approvers()` method is on the `ProjectApprovalManager` class.
2615
+ It is not part of the `ProjectApproval` class.
2616
+
2617
+ The docs were previously showing to call `set_approvers` using a
2618
+ `ProjectApproval` instance, which would fail. Correct the
2619
+ documentation.
2620
+
2621
+ This was pointed out by a question on the Gitter channel.
2622
+
2419
2623
  Co-authored-by: Nejc Habjan <nejc.habjan@siemens.com> ([`5583eaa`](https://github.com/python-gitlab/python-gitlab/commit/5583eaa108949386c66290fecef4d064f44b9e83))
2420
2624
 
2421
2625
  * docs(api-usage): add import os in example ([`2194a44`](https://github.com/python-gitlab/python-gitlab/commit/2194a44be541e9d2c15d3118ba584a4a173927a2))
@@ -2441,18 +2645,18 @@ return all items. ([`de8c6e8`](https://github.com/python-gitlab/python-gitlab/co
2441
2645
 
2442
2646
  * feat(downloads): allow streaming downloads access to response iterator (#1956)
2443
2647
 
2444
- * feat(downloads): allow streaming downloads access to response iterator
2445
-
2446
- Allow access to the underlying response iterator when downloading in
2447
- streaming mode by specifying `iterator=True`.
2448
-
2449
- Update type annotations to support this change.
2450
-
2451
- * docs(api-docs): add iterator example to artifact download
2452
-
2453
- Document the usage of the `iterator=True` option when downloading
2454
- artifacts
2455
-
2648
+ * feat(downloads): allow streaming downloads access to response iterator
2649
+
2650
+ Allow access to the underlying response iterator when downloading in
2651
+ streaming mode by specifying `iterator=True`.
2652
+
2653
+ Update type annotations to support this change.
2654
+
2655
+ * docs(api-docs): add iterator example to artifact download
2656
+
2657
+ Document the usage of the `iterator=True` option when downloading
2658
+ artifacts
2659
+
2456
2660
  * test(packages): add tests for streaming downloads ([`b644721`](https://github.com/python-gitlab/python-gitlab/commit/b6447211754e126f64e12fc735ad74fe557b7fb4))
2457
2661
 
2458
2662
  * feat(api): support head() method for get and list endpoints ([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
@@ -2486,16 +2690,16 @@ and am not sure how it should be done ([`1dc9d0f`](https://github.com/python-git
2486
2690
 
2487
2691
  * feat: support mutually exclusive attributes and consolidate validation to fix board lists (#2037)
2488
2692
 
2489
- add exclusive tuple to RequiredOptional data class to support for
2490
- mutually exclusive attributes
2491
-
2492
- consolidate _check_missing_create_attrs and _check_missing_update_attrs
2493
- from mixins.py into _validate_attrs in utils.py
2494
-
2495
- change _create_attrs in board list manager classes from
2496
- required=('label_ld',) to
2497
- exclusive=('label_id','asignee_id','milestone_id')
2498
-
2693
+ add exclusive tuple to RequiredOptional data class to support for
2694
+ mutually exclusive attributes
2695
+
2696
+ consolidate _check_missing_create_attrs and _check_missing_update_attrs
2697
+ from mixins.py into _validate_attrs in utils.py
2698
+
2699
+ change _create_attrs in board list manager classes from
2700
+ required=('label_ld',) to
2701
+ exclusive=('label_id','asignee_id','milestone_id')
2702
+
2499
2703
  closes https://github.com/python-gitlab/python-gitlab/issues/1897 ([`3fa330c`](https://github.com/python-gitlab/python-gitlab/commit/3fa330cc341bbedb163ba757c7f6578d735c6efb))
2500
2704
 
2501
2705
  * feat(client): introduce `iterator=True` and deprecate `as_list=False` in `list()`
@@ -2537,11 +2741,11 @@ from the args dict so this has been trying to access the wrong attribute. ([`5d1
2537
2741
 
2538
2742
  * refactor: avoid possible breaking change in iterator (#2107)
2539
2743
 
2540
- Commit b6447211754e126f64e12fc735ad74fe557b7fb4 inadvertently
2541
- introduced a possible breaking change as it added a new argument
2542
- `iterator` and added it in between existing (potentially positional) arguments.
2543
-
2544
- This moves the `iterator` argument to the end of the argument list and
2744
+ Commit b6447211754e126f64e12fc735ad74fe557b7fb4 inadvertently
2745
+ introduced a possible breaking change as it added a new argument
2746
+ `iterator` and added it in between existing (potentially positional) arguments.
2747
+
2748
+ This moves the `iterator` argument to the end of the argument list and
2545
2749
  requires it to be a keyword-only argument. ([`212ddfc`](https://github.com/python-gitlab/python-gitlab/commit/212ddfc9e9c5de50d2507cc637c01ceb31aaba41))
2546
2750
 
2547
2751
  * refactor: remove no-op id argument in GetWithoutIdMixin ([`0f2a602`](https://github.com/python-gitlab/python-gitlab/commit/0f2a602d3a9d6579f5fdfdf945a236ae44e93a12))
@@ -2704,7 +2908,6 @@ feat(client): introduce `iterator=True` and deprecate `as_list=False` in `list()
2704
2908
 
2705
2909
  docs: use `as_list=False` or `all=True` in Getting started ([`5ae18d0`](https://github.com/python-gitlab/python-gitlab/commit/5ae18d08aa11a01347514b43db8470bfd65fd534))
2706
2910
 
2707
-
2708
2911
  ## v3.5.0 (2022-05-28)
2709
2912
 
2710
2913
  ### Chore
@@ -2861,7 +3064,6 @@ chore(deps): update dependency types-requests to v2.27.25 ([`04e0d24`](https://g
2861
3064
 
2862
3065
  chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://github.com/python-gitlab/python-gitlab/commit/79b903d24bf518b67c7da9ead2cdaec3c3f67f88))
2863
3066
 
2864
-
2865
3067
  ## v3.4.0 (2022-04-28)
2866
3068
 
2867
3069
  ### Chore
@@ -3037,7 +3239,6 @@ chore(deps): update dependency pylint to v2.13.3 ([`5498f9e`](https://github.com
3037
3239
 
3038
3240
  chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitlab/python-gitlab/commit/f942e65ad6e0ab911de1ee32b4f720cf061e3dec))
3039
3241
 
3040
-
3041
3242
  ## v3.3.0 (2022-03-28)
3042
3243
 
3043
3244
  ### Chore
@@ -3144,7 +3345,6 @@ chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to
3144
3345
 
3145
3346
  feat: add support for test report summary ([`7966584`](https://github.com/python-gitlab/python-gitlab/commit/79665841e5d998872876987e1c3f480e455951a4))
3146
3347
 
3147
-
3148
3348
  ## v3.2.0 (2022-02-28)
3149
3349
 
3150
3350
  ### Chore
@@ -3210,8 +3410,8 @@ Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`bb1f054`](https://gith
3210
3410
 
3211
3411
  * docs: revert "chore: add temporary banner for v3" (#1864)
3212
3412
 
3213
- This reverts commit a349793307e3a975bb51f864b48e5e9825f70182.
3214
-
3413
+ This reverts commit a349793307e3a975bb51f864b48e5e9825f70182.
3414
+
3215
3415
  Co-authored-by: Wadim Klincov <wadim.klincov@siemens.com> ([`7a13b9b`](https://github.com/python-gitlab/python-gitlab/commit/7a13b9bfa4aead6c731f9a92e0946dba7577c61b))
3216
3416
 
3217
3417
  ### Feature
@@ -3308,7 +3508,6 @@ fix: remove custom `delete` method for labels ([`0ab0fc1`](https://github.com/py
3308
3508
 
3309
3509
  chore: create new ArrayAttribute class ([`7646360`](https://github.com/python-gitlab/python-gitlab/commit/7646360d6b622b1008917116dc4f64ced32f4057))
3310
3510
 
3311
-
3312
3511
  ## v3.1.1 (2022-01-28)
3313
3512
 
3314
3513
  ### Chore
@@ -3449,7 +3648,6 @@ docs(changelog): add missing changelog items ([`a1dbe86`](https://github.com/pyt
3449
3648
 
3450
3649
  chore(tests): use method `projects.transfer()` ([`48b06a9`](https://github.com/python-gitlab/python-gitlab/commit/48b06a95ad08c5d937d602357895b09d5dcecd9e))
3451
3650
 
3452
-
3453
3651
  ## v3.1.0 (2022-01-14)
3454
3652
 
3455
3653
  ### Chore
@@ -3762,7 +3960,6 @@ chore: add a stale workflow ([`9896340`](https://github.com/python-gitlab/python
3762
3960
 
3763
3961
  chore: add functional test of mergerequest.get() ([`bc6c6e6`](https://github.com/python-gitlab/python-gitlab/commit/bc6c6e69e81db5f52afd422d8c8ec0c57a385acd))
3764
3962
 
3765
-
3766
3963
  ## v3.0.0 (2022-01-05)
3767
3964
 
3768
3965
  ### Breaking
@@ -3839,8 +4036,8 @@ the more complete protected branches API. ([`9656a16`](https://github.com/python
3839
4036
 
3840
4037
  * fix(api): replace deprecated attribute in delete_in_bulk() (#1536)
3841
4038
 
3842
- BREAKING CHANGE: The deprecated `name_regex` attribute has been removed
3843
- in favor of `name_regex_delete`.
4039
+ BREAKING CHANGE: The deprecated `name_regex` attribute has been removed
4040
+ in favor of `name_regex_delete`.
3844
4041
  (see https://gitlab.com/gitlab-org/gitlab/-/commit/ce99813cf54) ([`c59fbdb`](https://github.com/python-gitlab/python-gitlab/commit/c59fbdb0e9311fa84190579769e3c5c6aeb07fe5))
3845
4042
 
3846
4043
  * fix(objects): rename confusing `to_project_id` argument
@@ -4156,17 +4353,17 @@ To determine the test count the following command was run:
4156
4353
 
4157
4354
  * chore: have renovate upgrade black version (#1700)
4158
4355
 
4159
- renovate is not upgrading the `black` package. There is an open
4160
- issue[1] about this.
4161
-
4162
- Also change .commitlintrc.json to allow 200 character footer lines in
4163
- the commit message. Otherwise would be forced to split the URL across
4164
- multiple lines making it un-clickable :(
4165
-
4166
- Use suggested work-arounds from:
4167
- https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
4168
- https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
4169
-
4356
+ renovate is not upgrading the `black` package. There is an open
4357
+ issue[1] about this.
4358
+
4359
+ Also change .commitlintrc.json to allow 200 character footer lines in
4360
+ the commit message. Otherwise would be forced to split the URL across
4361
+ multiple lines making it un-clickable :(
4362
+
4363
+ Use suggested work-arounds from:
4364
+ https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
4365
+ https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
4366
+
4170
4367
  [1] https://github.com/renovatebot/renovate/issues/7167 ([`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
4171
4368
 
4172
4369
  * chore: add type-hints to gitlab/v4/objects/files.py ([`0c22bd9`](https://github.com/python-gitlab/python-gitlab/commit/0c22bd921bc74f48fddd0ff7d5e7525086264d54))
@@ -4530,8 +4727,8 @@ Closes #1686 ([`cb824a4`](https://github.com/python-gitlab/python-gitlab/commit/
4530
4727
 
4531
4728
  * fix(api): delete invalid 'project-runner get' command (#1628)
4532
4729
 
4533
- * fix(api): delete 'group-runner get' and 'group-runner delete' commands
4534
-
4730
+ * fix(api): delete 'group-runner get' and 'group-runner delete' commands
4731
+
4535
4732
  Co-authored-by: Léo GATELLIER <git@leogatellier.fr> ([`905781b`](https://github.com/python-gitlab/python-gitlab/commit/905781bed2afa33634b27842a42a077a160cffb8))
4536
4733
 
4537
4734
  * fix(build): do not package tests in wheel ([`969dccc`](https://github.com/python-gitlab/python-gitlab/commit/969dccc084e833331fcd26c2a12ddaf448575ab4))
@@ -4838,7 +5035,6 @@ docs: correct documented return type ([`557c7d2`](https://github.com/python-gitl
4838
5035
 
4839
5036
  feat: allow global retry_transient_errors ([`d98d948`](https://github.com/python-gitlab/python-gitlab/commit/d98d948f997e973a42a8a21dfdbba0b435a602df))
4840
5037
 
4841
-
4842
5038
  ## v2.10.1 (2021-08-28)
4843
5039
 
4844
5040
  ### Chore
@@ -4893,7 +5089,6 @@ docs(mergerequests): gl.mergerequests.list documentation was misleading ([`8e277
4893
5089
 
4894
5090
  fix(mixins): improve deprecation warning ([`e2fdfbb`](https://github.com/python-gitlab/python-gitlab/commit/e2fdfbb02516360d56d3b7a88a3ef245faf37941))
4895
5091
 
4896
-
4897
5092
  ## v2.10.0 (2021-07-28)
4898
5093
 
4899
5094
  ### Chore
@@ -4951,7 +5146,6 @@ Signed-off-by: Matej Focko <mfocko@redhat.com> ([`a9924f4`](https://github
4951
5146
 
4952
5147
  feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](https://github.com/python-gitlab/python-gitlab/commit/85713bbbecdcec577a72749d2e495f823791b00f))
4953
5148
 
4954
-
4955
5149
  ## v2.9.0 (2021-06-28)
4956
5150
 
4957
5151
  ### Chore
@@ -5052,7 +5246,6 @@ chore: add new required type packages for mypy ([`5446423`](https://github.com/p
5052
5246
 
5053
5247
  chore: add type-hints to gitlab/v4/objects/projects.py ([`8e6aaf5`](https://github.com/python-gitlab/python-gitlab/commit/8e6aaf552ac44c21c70f902e5bdf1a2f631e347c))
5054
5248
 
5055
-
5056
5249
  ## v2.8.0 (2021-06-10)
5057
5250
 
5058
5251
  ### Chore
@@ -5512,7 +5705,6 @@ feat: add support for lists of integers to ListAttribute ([`dde01c7`](https://gi
5512
5705
 
5513
5706
  chore: make Get.*Mixin._optional_get_attrs always present ([`5b81d7d`](https://github.com/python-gitlab/python-gitlab/commit/5b81d7d25e5deefa4333098ebb5bc646fcee2c8d))
5514
5707
 
5515
-
5516
5708
  ## v2.7.1 (2021-04-26)
5517
5709
 
5518
5710
  ### Feature
@@ -5536,7 +5728,6 @@ This will help us fix issue #1407 by using ListAttribute for the
5536
5728
 
5537
5729
  fix(files): do not url-encode filepaths twice ([`37af229`](https://github.com/python-gitlab/python-gitlab/commit/37af2296703a481721489a66c5fc554257e34527))
5538
5730
 
5539
-
5540
5731
  ## v2.7.0 (2021-04-25)
5541
5732
 
5542
5733
  ### Chore
@@ -5987,17 +6178,17 @@ Resolved those issues. ([`8bd3124`](https://github.com/python-gitlab/python-gitl
5987
6178
 
5988
6179
  * fix: only append kwargs as query parameters
5989
6180
 
5990
- Some arguments to `http_request` were being read
5991
- from kwargs, but kwargs is where this function
5992
- creates query parameters from, by default. In
5993
- the absence of a `query_parameters` param, the
5994
- function would construct URLs with query
5995
- parameters such as `retry_transient_errors=True`
5996
- despite those parameters having no meaning to
5997
- the API to which the request was sent.
5998
-
5999
- This change names those arguments that are
6000
- specific to `http_request` so that they do not
6181
+ Some arguments to `http_request` were being read
6182
+ from kwargs, but kwargs is where this function
6183
+ creates query parameters from, by default. In
6184
+ the absence of a `query_parameters` param, the
6185
+ function would construct URLs with query
6186
+ parameters such as `retry_transient_errors=True`
6187
+ despite those parameters having no meaning to
6188
+ the API to which the request was sent.
6189
+
6190
+ This change names those arguments that are
6191
+ specific to `http_request` so that they do not
6001
6192
  end up as query parameters read from kwargs. ([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
6002
6193
 
6003
6194
  * fix: only add query_parameters to GitlabList once
@@ -6483,7 +6674,6 @@ feat(api,cli): make user agent configurable ([`643454c`](https://github.com/pyth
6483
6674
 
6484
6675
  docs: switch from travis-ci.org to GitHub Actions ([`071d699`](https://github.com/python-gitlab/python-gitlab/commit/071d699f7e4bf7eb3aa49b78f9cc9e56a473e281))
6485
6676
 
6486
-
6487
6677
  ## v2.6.0 (2021-01-29)
6488
6678
 
6489
6679
  ### Chore
@@ -6817,7 +7007,6 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.4-ce.0 ([`2a6801e`](htt
6817
7007
 
6818
7008
  chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](https://github.com/python-gitlab/python-gitlab/commit/769367c41d71610cc7d6a5eee67ebaaecb8b66bf))
6819
7009
 
6820
-
6821
7010
  ## v2.5.0 (2020-09-01)
6822
7011
 
6823
7012
  ### Chore
@@ -6985,7 +7174,6 @@ feat: add share/unshare the group with a group ([`cfa8097`](https://github.com/p
6985
7174
 
6986
7175
  docs: additional project file delete example ([`5b92de8`](https://github.com/python-gitlab/python-gitlab/commit/5b92de8eba9224210ecff1a1d4dae6a561c894be))
6987
7176
 
6988
-
6989
7177
  ## v2.4.0 (2020-07-09)
6990
7178
 
6991
7179
  ### Chore
@@ -7040,7 +7228,6 @@ Add masked parameter for project-variable and group-variable ([`bfb5034`](https:
7040
7228
 
7041
7229
  fix(merge): parse arguments as query_data ([`1d82310`](https://github.com/python-gitlab/python-gitlab/commit/1d82310da1a15f7172a3f87c2cf062bc0c17944d))
7042
7230
 
7043
-
7044
7231
  ## v2.3.1 (2020-06-09)
7045
7232
 
7046
7233
  ### Chore
@@ -7059,7 +7246,6 @@ Instead we set pagination to offset on the other paths ([`e71fe16`](https://gith
7059
7246
 
7060
7247
  Fix/keyset pagination revert ([`3f585ad`](https://github.com/python-gitlab/python-gitlab/commit/3f585ad3f823aef4dd848942399e2bd0530a09b2))
7061
7248
 
7062
-
7063
7249
  ## v2.3.0 (2020-06-08)
7064
7250
 
7065
7251
  ### Chore
@@ -7233,7 +7419,6 @@ chore: use pytest to run unit tests and coverage ([`efc6182`](https://github.com
7233
7419
 
7234
7420
  fix(project): add missing project parameters ([`29fd95e`](https://github.com/python-gitlab/python-gitlab/commit/29fd95e7edbb0369b845afb7e9ee4dbed2e1d483))
7235
7421
 
7236
-
7237
7422
  ## v2.2.0 (2020-04-07)
7238
7423
 
7239
7424
  ### Chore
@@ -7242,8 +7427,8 @@ fix(project): add missing project parameters ([`29fd95e`](https://github.com/pyt
7242
7427
 
7243
7428
  * chore(group): update group_manager attributes (#1062)
7244
7429
 
7245
- * chore(group): update group_manager attributes
7246
-
7430
+ * chore(group): update group_manager attributes
7431
+
7247
7432
  Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`fa34f5e`](https://github.com/python-gitlab/python-gitlab/commit/fa34f5e20ecbd3f5d868df2fa9e399ac6559c5d5))
7248
7433
 
7249
7434
  * chore: rename ExportMixin to DownloadMixin ([`847da60`](https://github.com/python-gitlab/python-gitlab/commit/847da6063b4c63c8133e5e5b5b45e5b4f004bdc4))
@@ -7360,7 +7545,6 @@ feat: add support for commit GPG signature ([`1b8e748`](https://github.com/pytho
7360
7545
 
7361
7546
  test: update tests and params for project export/import ([`4ffaf1d`](https://github.com/python-gitlab/python-gitlab/commit/4ffaf1dc0365690df810c99573f5737f635240e0))
7362
7547
 
7363
-
7364
7548
  ## v2.1.2 (2020-03-09)
7365
7549
 
7366
7550
  ### Chore
@@ -7375,7 +7559,6 @@ Revert "feat: use keyset pagination by default for `all=True`" ([`6d941b
7375
7559
 
7376
7560
  * Revert "feat: use keyset pagination by default for `all=True`" ([`6f843b6`](https://github.com/python-gitlab/python-gitlab/commit/6f843b63f7227ee3d338724d49b3ce111366a738))
7377
7561
 
7378
-
7379
7562
  ## v2.1.1 (2020-03-09)
7380
7563
 
7381
7564
  ### Chore
@@ -7398,7 +7581,6 @@ chore(user): update user attributes to 12.8 ([`8c44bb6`](https://github.com/pyth
7398
7581
 
7399
7582
  fix(docs): additional project statistics example ([`be5b15e`](https://github.com/python-gitlab/python-gitlab/commit/be5b15e27ad4a58d61f26e9f5ca3868f72959faa))
7400
7583
 
7401
-
7402
7584
  ## v2.1.0 (2020-03-08)
7403
7585
 
7404
7586
  ### Chore
@@ -7516,7 +7698,6 @@ change path for set_approvers to new api, with defaulted rule_type an… ([`1924
7516
7698
 
7517
7699
  Add capability to control GitLab features per project or group ([`066fc9b`](https://github.com/python-gitlab/python-gitlab/commit/066fc9bfdc1d8e6295cb924ea8471268ee869a90))
7518
7700
 
7519
-
7520
7701
  ## v2.0.1 (2020-02-05)
7521
7702
 
7522
7703
  ### Chore
@@ -7571,7 +7752,6 @@ chore(user): update user attributes ([`f6d9858`](https://github.com/python-gitla
7571
7752
 
7572
7753
  Update auth docs ([`7843ace`](https://github.com/python-gitlab/python-gitlab/commit/7843ace913589cf629f448a2541f290a4c7214cd))
7573
7754
 
7574
-
7575
7755
  ## v2.0.0 (2020-01-26)
7576
7756
 
7577
7757
  ### Chore
@@ -7666,7 +7846,6 @@ Fix/project snippets ([`5a10eb3`](https://github.com/python-gitlab/python-gitlab
7666
7846
 
7667
7847
  feat: add autocompletion support ([`ec6e04c`](https://github.com/python-gitlab/python-gitlab/commit/ec6e04c16a8509519387b985a3ceef89d51a200b))
7668
7848
 
7669
-
7670
7849
  ## v1.15.0 (2019-12-16)
7671
7850
 
7672
7851
  ### Chore
@@ -7792,7 +7971,6 @@ Retry transient HTTP errors ([`36bbd37`](https://github.com/python-gitlab/python
7792
7971
 
7793
7972
  Fix/as list ([`3e2d694`](https://github.com/python-gitlab/python-gitlab/commit/3e2d69417aa8c6b043ee99fea5f8d7e31a2ba3e8))
7794
7973
 
7795
-
7796
7974
  ## v1.14.0 (2019-12-07)
7797
7975
 
7798
7976
  ### Chore
@@ -7904,7 +8082,6 @@ docs(pipelines_and_jobs): add pipeline custom variables usage example ([`4efa6e6
7904
8082
 
7905
8083
  Add support for include_subgroups filter ([`1f18230`](https://github.com/python-gitlab/python-gitlab/commit/1f182302c206502f5202d1707fef69adf527fea7))
7906
8084
 
7907
-
7908
8085
  ## v1.13.0 (2019-11-02)
7909
8086
 
7910
8087
  ### Chore
@@ -7913,8 +8090,8 @@ Add support for include_subgroups filter ([`1f18230`](https://github.com/python-
7913
8090
 
7914
8091
  * chore(setup): we support 3.8 (#924)
7915
8092
 
7916
- * chore(setup): we support 3.8
7917
-
8093
+ * chore(setup): we support 3.8
8094
+
7918
8095
  * style: format with black ([`6048175`](https://github.com/python-gitlab/python-gitlab/commit/6048175ef2c21fda298754e9b07515b0a56d66bd))
7919
8096
 
7920
8097
  * chore(ci): update latest docker image for every tag ([`01cbc7a`](https://github.com/python-gitlab/python-gitlab/commit/01cbc7ad04a875bea93a08c0ce563ab5b4fe896b))
@@ -8034,7 +8211,6 @@ Remove warning about open files from test_todo() ([`ff808ee`](https://github.com
8034
8211
 
8035
8212
  remove references to api v3 in docs ([`92ba028`](https://github.com/python-gitlab/python-gitlab/commit/92ba0283b63e562e181061252787e0e46da83a29))
8036
8213
 
8037
-
8038
8214
  ## v1.12.1 (2019-10-07)
8039
8215
 
8040
8216
  ### Fix
@@ -8047,7 +8223,6 @@ remove references to api v3 in docs ([`92ba028`](https://github.com/python-gitla
8047
8223
 
8048
8224
  fix: fix not working without auth ([`f4b2927`](https://github.com/python-gitlab/python-gitlab/commit/f4b29278771e48320e2da4bacc4544d263d1754c))
8049
8225
 
8050
-
8051
8226
  ## v1.12.0 (2019-10-06)
8052
8227
 
8053
8228
  ### Chore
@@ -8178,7 +8353,6 @@ feat(user): add status api ([`b7f3342`](https://github.com/python-gitlab/python-
8178
8353
 
8179
8354
  test: re-enabled py_func_v4 test ([`1490b0e`](https://github.com/python-gitlab/python-gitlab/commit/1490b0e7f175d54cc6d35de7aac6d9e45c0e3d51))
8180
8355
 
8181
-
8182
8356
  ## v1.11.0 (2019-08-31)
8183
8357
 
8184
8358
  ### Chore
@@ -8227,7 +8401,6 @@ Fix mutable default arguments ([`e8a3585`](https://github.com/python-gitlab/pyth
8227
8401
 
8228
8402
  feat: Add grouplabel support with subscribable mixin ([`edb3359`](https://github.com/python-gitlab/python-gitlab/commit/edb3359fb3a77050d3e162da641445952397279b))
8229
8403
 
8230
-
8231
8404
  ## v1.10.0 (2019-07-22)
8232
8405
 
8233
8406
  ### Chore
@@ -8424,8 +8597,8 @@ Signed-off-by: Agustin Henze <tin@redhat.com> ([`564de48`](https://github.
8424
8597
 
8425
8598
  * feat(GitLab Update): delete ProjectPipeline (#736)
8426
8599
 
8427
- * feat(GitLab Update): delete ProjectPipeline
8428
-
8600
+ * feat(GitLab Update): delete ProjectPipeline
8601
+
8429
8602
  As of Gitlab 11.6 it is now possible to delete a pipeline - https://docs.gitlab.com/ee/api/pipelines.html#delete-a-pipeline ([`768ce19`](https://github.com/python-gitlab/python-gitlab/commit/768ce19c5e5bb197cddd4e3871c175e935c68312))
8430
8603
 
8431
8604
  * feat: Added approve & unapprove method for Mergerequests
@@ -8533,7 +8706,7 @@ Before this fix, there was virtually no way to pass spaces in arguments such as
8533
8706
 
8534
8707
  * fix(cli): exit on config parse error, instead of crashing
8535
8708
 
8536
- * Exit and hint user about possible errors
8709
+ * Exit and hint user about possible errors
8537
8710
  * test: adjust test cases to config missing error ([`6ad9da0`](https://github.com/python-gitlab/python-gitlab/commit/6ad9da04496f040ae7d95701422434bc935a5a80))
8538
8711
 
8539
8712
  * fix(docker): use docker image with current sources ([`06e8ca8`](https://github.com/python-gitlab/python-gitlab/commit/06e8ca8747256632c8a159f760860b1ae8f2b7b5))
@@ -8946,8 +9119,8 @@ Closes #611 ([`95d0d74`](https://github.com/python-gitlab/python-gitlab/commit/9
8946
9119
 
8947
9120
  * Merge pull request #634 from python-gitlab/docs/project-typo
8948
9121
 
8949
- docs(projects): fix typo in code sample
8950
-
9122
+ docs(projects): fix typo in code sample
9123
+
8951
9124
  Closes #630 ([`c8eaeb2`](https://github.com/python-gitlab/python-gitlab/commit/c8eaeb2d258055b8fc77cbeef373aee5551c181a))
8952
9125
 
8953
9126
  * Merge pull request #636 from python-gitlab/docs/groups-fix-typo
@@ -9614,8 +9787,8 @@ Fixes #421 ([`29bd813`](https://github.com/python-gitlab/python-gitlab/commit/29
9614
9787
 
9615
9788
  * make trigger_pipeline return the pipeline
9616
9789
 
9617
- Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
9618
-
9790
+ Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
9791
+
9619
9792
  Next PR will be about updating a pipeline object to get latest status (not sure yet the best way to do it) ([`72ade19`](https://github.com/python-gitlab/python-gitlab/commit/72ade19046f47b35c1b5ad7333f11fee0dc1e56f))
9620
9793
 
9621
9794
  * Add Gitlab and User events support
@@ -9763,7 +9936,7 @@ Fixes: #377 ([`c6c0686`](https://github.com/python-gitlab/python-gitlab/commit/c
9763
9936
 
9764
9937
  * Expected HTTP response for subscribe is 201
9765
9938
 
9766
- It seems that the GitLab API gives HTTP response code 201 ("created") when
9939
+ It seems that the GitLab API gives HTTP response code 201 ("created") when
9767
9940
  successfully subscribing to an object, not 200. ([`0d5f275`](https://github.com/python-gitlab/python-gitlab/commit/0d5f275d9b23d20da45ac675da10bfd428327a2f))
9768
9941
 
9769
9942
  * Fix typos in docs ([`7c886de`](https://github.com/python-gitlab/python-gitlab/commit/7c886dea5e9c42c88be01ef077532202cbad65ea))
@@ -9851,10 +10024,10 @@ Closes #23 ([`fa89746`](https://github.com/python-gitlab/python-gitlab/commit/fa
9851
10024
 
9852
10025
  * Module's base objects serialization (#359)
9853
10026
 
9854
- Make gitlab objects serializable
9855
-
9856
- With current implementation of API v3 and v4 support, some instances
9857
- have properties of type module and are not serializable. Handle
10027
+ Make gitlab objects serializable
10028
+
10029
+ With current implementation of API v3 and v4 support, some instances
10030
+ have properties of type module and are not serializable. Handle
9858
10031
  these properties manually with setstate and getstate methods. ([`226e6ce`](https://github.com/python-gitlab/python-gitlab/commit/226e6ce9e5217367c896125a2b4b9d16afd2cf94))
9859
10032
 
9860
10033
  * Pagination generators: expose more information
@@ -9963,8 +10136,8 @@ Closes #337 ([`8764903`](https://github.com/python-gitlab/python-gitlab/commit/8
9963
10136
 
9964
10137
  * Fix trigger variables in v4 API (#334)
9965
10138
 
9966
- Fix trigger variables in v4 API
9967
-
10139
+ Fix trigger variables in v4 API
10140
+
9968
10141
  Close #333 ([`ac430a3`](https://github.com/python-gitlab/python-gitlab/commit/ac430a3cac4be76efc02e4321f7ee88867d28712))
9969
10142
 
9970
10143
  * Prepare the 1.0.2 release ([`9e09cf6`](https://github.com/python-gitlab/python-gitlab/commit/9e09cf618a01e2366f2ae7d66874f4697567cfc3))
@@ -10346,8 +10519,8 @@ Multiple goals:
10346
10519
 
10347
10520
  * import urlencode() from six.moves.urllib.parse instead of from urllib (#268)
10348
10521
 
10349
- Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
10350
-
10522
+ Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
10523
+
10351
10524
  `six.moves.urllib.parse.urlencode()` is an py2.py3 compatible alias of `urllib.parse.urlencode()` on Python 3, and of `urllib.urlencode()` on Python 2. ([`88900e0`](https://github.com/python-gitlab/python-gitlab/commit/88900e06761794442716c115229bd1f780cfbcef))
10352
10525
 
10353
10526
  * Tests and fixes for the http_* methods ([`904c9fa`](https://github.com/python-gitlab/python-gitlab/commit/904c9fadaa892cb4a2dbd12e564841281aa86c51))
@@ -10654,18 +10827,18 @@ Fixes #209 ([`35339d6`](https://github.com/python-gitlab/python-gitlab/commit/35
10654
10827
 
10655
10828
  * Changelog: improvements. Fixes #229 (#230)
10656
10829
 
10657
- + change indentation so bullet points are not treated as quote
10658
- + add links to releases
10659
- + add dates to releases
10830
+ + change indentation so bullet points are not treated as quote
10831
+ + add links to releases
10832
+ + add dates to releases
10660
10833
  + use releases as headers ([`37ee7ea`](https://github.com/python-gitlab/python-gitlab/commit/37ee7ea6a9354c0ea5bd618d48b4a2a3ddbc950c))
10661
10834
 
10662
10835
  * Time tracking (#222)
10663
10836
 
10664
- * Added gitlab time tracking features
10665
-
10666
- - get/set/remove estimated time per issue
10667
- - get/set/remove time spent per issue
10668
-
10837
+ * Added gitlab time tracking features
10838
+
10839
+ - get/set/remove estimated time per issue
10840
+ - get/set/remove time spent per issue
10841
+
10669
10842
  * Added documentation for time tracking functions ([`92151b2`](https://github.com/python-gitlab/python-gitlab/commit/92151b22b5b03b3d529caf1865a2e35738a2f3d2))
10670
10843
 
10671
10844
  * 0.19 release ([`cd69624`](https://github.com/python-gitlab/python-gitlab/commit/cd696240ec9000ce12c4232db3436fbca58b8fdd))