python-gitlab 4.6.0__tar.gz → 4.8.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 (346) hide show
  1. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/CHANGELOG.md +1078 -933
  2. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/PKG-INFO +1 -1
  3. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/api-objects.rst +3 -0
  4. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/api-usage.rst +21 -0
  5. python_gitlab-4.8.0/docs/gl_objects/cluster_agents.rst +41 -0
  6. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/pipelines_and_jobs.rst +5 -0
  7. python_gitlab-4.8.0/docs/gl_objects/protected_container_repositories.rst +44 -0
  8. python_gitlab-4.8.0/docs/gl_objects/protected_packages.rst +44 -0
  9. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/variables.rst +25 -0
  10. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/_version.py +1 -1
  11. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/cli.py +26 -42
  12. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/client.py +17 -3
  13. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/mixins.py +4 -2
  14. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/utils.py +11 -1
  15. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/cli.py +29 -10
  16. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/__init__.py +3 -0
  17. python_gitlab-4.8.0/gitlab/v4/objects/cluster_agents.py +26 -0
  18. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/commits.py +18 -0
  19. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/deploy_keys.py +4 -1
  20. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/files.py +11 -7
  21. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/issues.py +14 -8
  22. python_gitlab-4.8.0/gitlab/v4/objects/package_protection_rules.py +43 -0
  23. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/pipelines.py +21 -0
  24. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/projects.py +8 -0
  25. python_gitlab-4.8.0/gitlab/v4/objects/registry_protection_rules.py +35 -0
  26. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/PKG-INFO +1 -1
  27. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/SOURCES.txt +10 -0
  28. python_gitlab-4.8.0/requirements-lint.txt +13 -0
  29. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/requirements-test.txt +3 -3
  30. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/requirements.txt +1 -1
  31. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_issues.py +3 -1
  32. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_merge_requests.py +3 -1
  33. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_packages.py +32 -1
  34. python_gitlab-4.8.0/tests/functional/api/test_registry.py +28 -0
  35. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_repository.py +3 -0
  36. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli.py +4 -2
  37. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/.env +1 -1
  38. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/docker-compose.yml +0 -1
  39. python_gitlab-4.8.0/tests/unit/objects/test_cluster_agents.py +97 -0
  40. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_commits.py +23 -0
  41. python_gitlab-4.8.0/tests/unit/objects/test_package_protection_rules.py +98 -0
  42. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_pipelines.py +97 -0
  43. python_gitlab-4.8.0/tests/unit/objects/test_registry_protection_rules.py +82 -0
  44. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_utils.py +21 -0
  45. python_gitlab-4.6.0/requirements-lint.txt +0 -13
  46. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/AUTHORS +0 -0
  47. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/COPYING +0 -0
  48. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/MANIFEST.in +0 -0
  49. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/README.rst +0 -0
  50. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/Makefile +0 -0
  51. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/__init__.py +0 -0
  52. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/_static/js/gitter.js +0 -0
  53. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/api/gitlab.rst +0 -0
  54. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/api/gitlab.v4.rst +0 -0
  55. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/api-levels.rst +0 -0
  56. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/api-usage-advanced.rst +0 -0
  57. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/changelog.md +0 -0
  58. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/cli-examples.rst +0 -0
  59. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/cli-objects.rst +0 -0
  60. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/cli-usage.rst +0 -0
  61. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/conf.py +0 -0
  62. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/ext/__init__.py +0 -0
  63. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/ext/docstrings.py +0 -0
  64. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/ext/manager_tmpl.j2 +0 -0
  65. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/faq.rst +0 -0
  66. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/access_requests.rst +0 -0
  67. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/appearance.rst +0 -0
  68. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/applications.rst +0 -0
  69. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/badges.rst +0 -0
  70. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/boards.rst +0 -0
  71. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/branches.rst +0 -0
  72. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/bulk_imports.rst +0 -0
  73. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/ci_lint.rst +0 -0
  74. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/clusters.rst +0 -0
  75. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/commits.rst +0 -0
  76. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/deploy_keys.rst +0 -0
  77. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/deploy_tokens.rst +0 -0
  78. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/deployments.rst +0 -0
  79. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/discussions.rst +0 -0
  80. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/draft_notes.rst +0 -0
  81. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/emojis.rst +0 -0
  82. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/environments.rst +0 -0
  83. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/epics.rst +0 -0
  84. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/events.rst +0 -0
  85. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/features.rst +0 -0
  86. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/geo_nodes.rst +0 -0
  87. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/group_access_tokens.rst +0 -0
  88. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/groups.rst +0 -0
  89. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/invitations.rst +0 -0
  90. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/issues.rst +0 -0
  91. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/iterations.rst +0 -0
  92. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/job_token_scope.rst +0 -0
  93. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/keys.rst +0 -0
  94. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/labels.rst +0 -0
  95. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/merge_request_approvals.rst +0 -0
  96. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/merge_requests.rst +0 -0
  97. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/merge_trains.rst +0 -0
  98. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/messages.rst +0 -0
  99. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/milestones.rst +0 -0
  100. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/namespaces.rst +0 -0
  101. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/notes.rst +0 -0
  102. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/notifications.rst +0 -0
  103. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/packages.rst +0 -0
  104. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/pagesdomains.rst +0 -0
  105. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/personal_access_tokens.rst +0 -0
  106. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/project_access_tokens.rst +0 -0
  107. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/projects.rst +0 -0
  108. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/protected_branches.rst +0 -0
  109. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/protected_environments.rst +0 -0
  110. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/releases.rst +0 -0
  111. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/remote_mirrors.rst +0 -0
  112. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/repositories.rst +0 -0
  113. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/repository_tags.rst +0 -0
  114. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/resource_groups.rst +0 -0
  115. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/runners.rst +0 -0
  116. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/search.rst +0 -0
  117. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/secure_files.rst +0 -0
  118. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/settings.rst +0 -0
  119. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/sidekiq.rst +0 -0
  120. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/snippets.rst +0 -0
  121. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/statistics.rst +0 -0
  122. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/system_hooks.rst +0 -0
  123. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/templates.rst +0 -0
  124. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/todos.rst +0 -0
  125. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/topics.rst +0 -0
  126. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/users.rst +0 -0
  127. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/gl_objects/wikis.rst +0 -0
  128. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/index.rst +0 -0
  129. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/make.bat +0 -0
  130. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/docs/release-notes.rst +0 -0
  131. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/__init__.py +0 -0
  132. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/__main__.py +0 -0
  133. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/_backends/__init__.py +0 -0
  134. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/_backends/protocol.py +0 -0
  135. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/_backends/requests_backend.py +0 -0
  136. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/base.py +0 -0
  137. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/config.py +0 -0
  138. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/const.py +0 -0
  139. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/exceptions.py +0 -0
  140. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/py.typed +0 -0
  141. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/types.py +0 -0
  142. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/__init__.py +0 -0
  143. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/access_requests.py +0 -0
  144. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/appearance.py +0 -0
  145. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/applications.py +0 -0
  146. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/artifacts.py +0 -0
  147. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/audit_events.py +0 -0
  148. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/award_emojis.py +0 -0
  149. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/badges.py +0 -0
  150. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/boards.py +0 -0
  151. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/branches.py +0 -0
  152. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/broadcast_messages.py +0 -0
  153. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/bulk_imports.py +0 -0
  154. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/ci_lint.py +0 -0
  155. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/clusters.py +0 -0
  156. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/container_registry.py +0 -0
  157. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/custom_attributes.py +0 -0
  158. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/deploy_tokens.py +0 -0
  159. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/deployments.py +0 -0
  160. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/discussions.py +0 -0
  161. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/draft_notes.py +0 -0
  162. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/environments.py +0 -0
  163. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/epics.py +0 -0
  164. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/events.py +0 -0
  165. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/export_import.py +0 -0
  166. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/features.py +0 -0
  167. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/geo_nodes.py +0 -0
  168. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/group_access_tokens.py +0 -0
  169. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/groups.py +0 -0
  170. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/hooks.py +0 -0
  171. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/integrations.py +0 -0
  172. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/invitations.py +0 -0
  173. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/iterations.py +0 -0
  174. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/job_token_scope.py +0 -0
  175. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/jobs.py +0 -0
  176. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/keys.py +0 -0
  177. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/labels.py +0 -0
  178. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/ldap.py +0 -0
  179. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/members.py +0 -0
  180. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/merge_request_approvals.py +0 -0
  181. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/merge_requests.py +0 -0
  182. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/merge_trains.py +0 -0
  183. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/milestones.py +0 -0
  184. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/namespaces.py +0 -0
  185. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/notes.py +0 -0
  186. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/notification_settings.py +0 -0
  187. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/packages.py +0 -0
  188. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/pages.py +0 -0
  189. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/personal_access_tokens.py +0 -0
  190. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/project_access_tokens.py +0 -0
  191. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/push_rules.py +0 -0
  192. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/releases.py +0 -0
  193. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/repositories.py +0 -0
  194. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/resource_groups.py +0 -0
  195. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/reviewers.py +0 -0
  196. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/runners.py +0 -0
  197. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/secure_files.py +0 -0
  198. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/service_accounts.py +0 -0
  199. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/settings.py +0 -0
  200. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/sidekiq.py +0 -0
  201. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/snippets.py +0 -0
  202. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/statistics.py +0 -0
  203. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/tags.py +0 -0
  204. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/templates.py +0 -0
  205. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/todos.py +0 -0
  206. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/topics.py +0 -0
  207. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/triggers.py +0 -0
  208. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/users.py +0 -0
  209. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/variables.py +0 -0
  210. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/gitlab/v4/objects/wikis.py +0 -0
  211. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/pyproject.toml +0 -0
  212. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/dependency_links.txt +0 -0
  213. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/entry_points.txt +0 -0
  214. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/requires.txt +0 -0
  215. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/top_level.txt +0 -0
  216. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/requirements-docker.txt +0 -0
  217. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/requirements-docs.txt +0 -0
  218. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/requirements-precommit.txt +0 -0
  219. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/setup.cfg +0 -0
  220. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/__init__.py +0 -0
  221. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/conftest.py +0 -0
  222. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/__init__.py +0 -0
  223. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/__init__.py +0 -0
  224. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_boards.py +0 -0
  225. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_branches.py +0 -0
  226. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_bulk_imports.py +0 -0
  227. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_current_user.py +0 -0
  228. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_deploy_keys.py +0 -0
  229. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_deploy_tokens.py +0 -0
  230. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_epics.py +0 -0
  231. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_gitlab.py +0 -0
  232. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_groups.py +0 -0
  233. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_import_export.py +0 -0
  234. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_keys.py +0 -0
  235. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_lazy_objects.py +0 -0
  236. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_project_job_token_scope.py +0 -0
  237. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_projects.py +0 -0
  238. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_push_rules.py +0 -0
  239. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_releases.py +0 -0
  240. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_services.py +0 -0
  241. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_snippets.py +0 -0
  242. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_statistics.py +0 -0
  243. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_topics.py +0 -0
  244. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_users.py +0 -0
  245. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_variables.py +0 -0
  246. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/api/test_wikis.py +0 -0
  247. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/__init__.py +0 -0
  248. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/conftest.py +0 -0
  249. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_artifacts.py +0 -0
  250. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_packages.py +0 -0
  251. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_projects.py +0 -0
  252. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_repository.py +0 -0
  253. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_resource_access_tokens.py +0 -0
  254. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_users.py +0 -0
  255. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_v4.py +0 -0
  256. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_variables.py +0 -0
  257. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/conftest.py +0 -0
  258. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/ee-test.py +0 -0
  259. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/__init__.py +0 -0
  260. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/avatar.png +0 -0
  261. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/create_license.rb +0 -0
  262. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/docker.py +0 -0
  263. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/invalid_auth.cfg +0 -0
  264. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/invalid_version.cfg +0 -0
  265. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/fixtures/set_token.rb +0 -0
  266. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/functional/helpers.py +0 -0
  267. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/install/test_install.py +0 -0
  268. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/smoke/__init__.py +0 -0
  269. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/smoke/test_dists.py +0 -0
  270. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/__init__.py +0 -0
  271. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/_backends/__init__.py +0 -0
  272. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/_backends/test_requests_backend.py +0 -0
  273. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/base/test_rest_manager.py +0 -0
  274. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/base/test_rest_object.py +0 -0
  275. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/conftest.py +0 -0
  276. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/helpers.py +0 -0
  277. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/meta/__init__.py +0 -0
  278. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/meta/test_ensure_type_hints.py +0 -0
  279. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/meta/test_imports.py +0 -0
  280. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/meta/test_mro.py +0 -0
  281. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/mixins/__init__.py +0 -0
  282. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/mixins/test_meta_mixins.py +0 -0
  283. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/mixins/test_mixin_methods.py +0 -0
  284. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/mixins/test_object_mixins_attributes.py +0 -0
  285. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/__init__.py +0 -0
  286. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/conftest.py +0 -0
  287. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_appearance.py +0 -0
  288. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_applications.py +0 -0
  289. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_audit_events.py +0 -0
  290. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_badges.py +0 -0
  291. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_bridges.py +0 -0
  292. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_bulk_imports.py +0 -0
  293. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_ci_lint.py +0 -0
  294. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_deploy_tokens.py +0 -0
  295. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_deployments.py +0 -0
  296. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_draft_notes.py +0 -0
  297. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_environments.py +0 -0
  298. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_group_access_tokens.py +0 -0
  299. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_groups.py +0 -0
  300. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_hooks.py +0 -0
  301. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_invitations.py +0 -0
  302. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_issues.py +0 -0
  303. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_iterations.py +0 -0
  304. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_job_artifacts.py +0 -0
  305. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_job_token_scope.py +0 -0
  306. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_jobs.py +0 -0
  307. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_keys.py +0 -0
  308. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_members.py +0 -0
  309. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_merge_request_pipelines.py +0 -0
  310. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_merge_requests.py +0 -0
  311. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_merge_trains.py +0 -0
  312. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_packages.py +0 -0
  313. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_personal_access_tokens.py +0 -0
  314. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_pipeline_schedules.py +0 -0
  315. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_access_tokens.py +0 -0
  316. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_import_export.py +0 -0
  317. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_merge_request_approvals.py +0 -0
  318. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_statistics.py +0 -0
  319. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_projects.py +0 -0
  320. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_registry_repositories.py +0 -0
  321. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_releases.py +0 -0
  322. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_remote_mirrors.py +0 -0
  323. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_repositories.py +0 -0
  324. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_groups.py +0 -0
  325. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_iteration_events.py +0 -0
  326. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_label_events.py +0 -0
  327. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_milestone_events.py +0 -0
  328. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_state_events.py +0 -0
  329. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_runners.py +0 -0
  330. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_secure_files.py +0 -0
  331. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_services.py +0 -0
  332. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_snippets.py +0 -0
  333. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_statistics.py +0 -0
  334. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_submodules.py +0 -0
  335. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_todos.py +0 -0
  336. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_topics.py +0 -0
  337. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_users.py +0 -0
  338. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/objects/test_variables.py +0 -0
  339. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_cli.py +0 -0
  340. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_config.py +0 -0
  341. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_exceptions.py +0 -0
  342. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_gitlab.py +0 -0
  343. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_gitlab_auth.py +0 -0
  344. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_gitlab_http_methods.py +0 -0
  345. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tests/unit/test_types.py +0 -0
  346. {python_gitlab-4.6.0 → python_gitlab-4.8.0}/tox.ini +0 -0
@@ -1,6 +1,202 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v4.8.0 (2024-07-16)
3
4
 
5
+ ### Chore
6
+
7
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17.1.2-ee.0 ([`6fedfa5`](https://github.com/python-gitlab/python-gitlab/commit/6fedfa546120942757ea48337ce7446914eb3813))
8
+
9
+ * chore(deps): update all non-major dependencies ([`4a2b213`](https://github.com/python-gitlab/python-gitlab/commit/4a2b2133b52dac102d6f623bf028bdef6dd5a92f))
10
+
11
+ * chore(ci): specify name of "stale" label
12
+
13
+ Saw the following error in the log:
14
+ [#2618] Removing the label "Stale" from this issue...
15
+ ##[error][#2618] Error when removing the label: "Label does not exist"
16
+
17
+ My theory is that the case doesn't match ("Stale" != "stale") and that
18
+ is why it failed. Our label is "stale" so update this to match.
19
+ Thought of changing the label name on GitHub but then would also
20
+ require a change here to the "any-of-labels". So it seemed simpler to
21
+ just change it here.
22
+
23
+ It is confusing though that it detected the label "stale", but then
24
+ couldn't delete it. ([`44f62c4`](https://github.com/python-gitlab/python-gitlab/commit/44f62c49106abce2099d5bb1f3f97b64971da406))
25
+
26
+ * chore(ci): stale: allow issues/PRs that have stale label to be closed
27
+
28
+ If a `stale` label is manually applied, allow the issue or PR to be
29
+ closed by the stale job.
30
+
31
+ Previously it would require the `stale` label and to also have one of
32
+ 'need info' or 'Waiting for response' labels added. ([`2ab88b2`](https://github.com/python-gitlab/python-gitlab/commit/2ab88b25a64bd8e028cee2deeb842476de54b109))
33
+
34
+ * chore(ci): use codecov token when available ([`b74a6fb`](https://github.com/python-gitlab/python-gitlab/commit/b74a6fb5157e55d3e4471a0c5c8378fed8075edc))
35
+
36
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to fe6cc89 ([`3f3ad80`](https://github.com/python-gitlab/python-gitlab/commit/3f3ad80ef5bb2ed837adceae061291b2b5545ed3))
37
+
38
+ * chore(deps): update all non-major dependencies ([`0f59069`](https://github.com/python-gitlab/python-gitlab/commit/0f59069420f403a17f67a5c36c81485c9016b59b))
39
+
40
+ * chore: add `show_caller` argument to `utils.warn()`
41
+
42
+ This allows us to not add the caller's location to the UserWarning
43
+ message. ([`7d04315`](https://github.com/python-gitlab/python-gitlab/commit/7d04315d7d9641d88b0649e42bf24dd160629af5))
44
+
45
+ * chore: use correct type-hint for `die()` ([`9358640`](https://github.com/python-gitlab/python-gitlab/commit/93586405fbfa61317dc75e186799549573bc0bbb))
46
+
47
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17.1.1-ee.0 ([`5e98510`](https://github.com/python-gitlab/python-gitlab/commit/5e98510a6c918b33c0db0a7756e8a43a8bdd868a))
48
+
49
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to c7c3b69 ([`23393fa`](https://github.com/python-gitlab/python-gitlab/commit/23393faa0642c66a991fd88f1d2d68aed1d2f172))
50
+
51
+ * chore(deps): update all non-major dependencies ([`cf87226`](https://github.com/python-gitlab/python-gitlab/commit/cf87226a81108fbed4f58751f1c03234cc57bcf1))
52
+
53
+ ### Documentation
54
+
55
+ * docs: document how to use `sudo` if modifying an object
56
+
57
+ Add a warning about using `sudo` when saving.
58
+
59
+ Give an example of how to `get` an object, modify it, and then `save`
60
+ it using `sudo`
61
+
62
+ Closes: #532 ([`d509da6`](https://github.com/python-gitlab/python-gitlab/commit/d509da60155e9470dee197d91926850ea9548de9))
63
+
64
+ * docs: variables: add note about `filter` for updating
65
+
66
+ Add a note about using `filter` when updating a variable.
67
+
68
+ Closes: #2835
69
+ Closes: #1387
70
+ Closes: #1125 ([`c378817`](https://github.com/python-gitlab/python-gitlab/commit/c378817389a9510ef508b5a3c90282e5fb60049f))
71
+
72
+ ### Feature
73
+
74
+ * feat(api): add support for project cluster agents ([`32dbc6f`](https://github.com/python-gitlab/python-gitlab/commit/32dbc6f2bee5b22d18c4793f135223d9b9824d15))
75
+
76
+ * feat(api): add support for container registry protection rules ([`6d31649`](https://github.com/python-gitlab/python-gitlab/commit/6d31649190279a844bfa591a953b0556cd6fc492))
77
+
78
+ * feat(api): add support for package protection rules ([`6b37811`](https://github.com/python-gitlab/python-gitlab/commit/6b37811c3060620afd8b81e54a99d96e4e094ce9))
79
+
80
+ * feat(api): add support for commit sequence ([`1f97be2`](https://github.com/python-gitlab/python-gitlab/commit/1f97be2a540122cb872ff59500d85a35031cab5f))
81
+
82
+ ### Fix
83
+
84
+ * fix: issues `closed_by()/related_merge_requests()` use `http_list`
85
+
86
+ The `closed_by()` and `related_merge_requests()` API calls return
87
+ lists. So use the `http_list()` method.
88
+
89
+ This will also warn the user if only a subset of the data is returned. ([`de2e4dd`](https://github.com/python-gitlab/python-gitlab/commit/de2e4dd7e80c7b84fd41458117a85558fcbac32d))
90
+
91
+ * fix: Have `participants()` method use `http_list()`
92
+
93
+ Previously it was using `http_get()` but the `participants` API
94
+ returns a list of participants. Also by using this then we will warn
95
+ if only a subset of the participants are returned.
96
+
97
+ Closes: #2913 ([`d065275`](https://github.com/python-gitlab/python-gitlab/commit/d065275f2fe296dd00e9bbd0f676d1596f261a85))
98
+
99
+ * fix(files): CR: add explicit comparison to `None`
100
+
101
+ Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`51d8f88`](https://github.com/python-gitlab/python-gitlab/commit/51d8f888aca469cff1c5ee5e158fb259d2862017))
102
+
103
+ * fix(files): make `ref` parameter optional in get raw file api
104
+
105
+ The `ref` parameter was made optional in gitlab v13.11.0. ([`00640ac`](https://github.com/python-gitlab/python-gitlab/commit/00640ac11f77e338919d7e9a1457d111c82af371))
106
+
107
+ * fix(cli): generate UserWarning if `list` does not return all entries
108
+
109
+ Previously in the CLI, calls to `list()` would have `get_all=False` by
110
+ default. Therefore hiding the fact that not all items are being
111
+ returned if there were more than 20 items.
112
+
113
+ Added `--no-get-all` option to `list` actions. Along with the already
114
+ existing `--get-all`.
115
+
116
+ Closes: #2900 ([`e5a4379`](https://github.com/python-gitlab/python-gitlab/commit/e5a43799b5039261d7034af909011444718a5814))
117
+
118
+ ### Refactor
119
+
120
+ * refactor(package_protection_rules): add missing attributes ([`c307dd2`](https://github.com/python-gitlab/python-gitlab/commit/c307dd20e3df61b118b3b1a8191c0f1880bc9ed6))
121
+
122
+ ### Test
123
+
124
+ * test(registry): disable functional tests for unavailable endpoints ([`ee393a1`](https://github.com/python-gitlab/python-gitlab/commit/ee393a16e1aa6dbf2f9785eb3ef486f7d5b9276f))
125
+
126
+ * test(files): test with and without `ref` parameter in test case ([`f316b46`](https://github.com/python-gitlab/python-gitlab/commit/f316b466c04f8ff3c0cca06d0e18ddf2d62d033c))
127
+
128
+ * test(files): omit optional `ref` parameter in test case ([`9cb3396`](https://github.com/python-gitlab/python-gitlab/commit/9cb3396d3bd83e82535a2a173b6e52b4f8c020f4))
129
+
130
+ * test(fixtures): remove deprecated config option ([`2156949`](https://github.com/python-gitlab/python-gitlab/commit/2156949866ce95af542c127ba4b069e83fcc8104))
131
+
132
+ ## v4.7.0 (2024-06-28)
133
+
134
+ ### Chore
135
+
136
+ * chore(deps): update all non-major dependencies ([`88de2f0`](https://github.com/python-gitlab/python-gitlab/commit/88de2f0fc52f4f02e1d44139f4404acf172624d7))
137
+
138
+ * chore(deps): update all non-major dependencies ([`a510f43`](https://github.com/python-gitlab/python-gitlab/commit/a510f43d990c3a3fd169854218b64d4eb9491628))
139
+
140
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17.0.2-ee.0 ([`51779c6`](https://github.com/python-gitlab/python-gitlab/commit/51779c63e6a58e1ae68e9b1c3ffff998211d4e66))
141
+
142
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to 6b7558f ([`fd0f0b0`](https://github.com/python-gitlab/python-gitlab/commit/fd0f0b0338623a98e9368c30b600d603b966f8b7))
143
+
144
+ * chore(deps): update all non-major dependencies ([`d4fdf90`](https://github.com/python-gitlab/python-gitlab/commit/d4fdf90655c2cb5124dc2ecd8b449e1e16d0add5))
145
+
146
+ * chore(deps): update dependency types-setuptools to v70 ([`7767514`](https://github.com/python-gitlab/python-gitlab/commit/7767514a1ad4269a92a6610aa71aa8c595565a7d))
147
+
148
+ * chore(deps): update gitlab/gitlab-ee docker tag to v17.0.1-ee.0 ([`df0ff4c`](https://github.com/python-gitlab/python-gitlab/commit/df0ff4c4c1497d6449488b8577ad7188b55c41a9))
149
+
150
+ * chore(deps): update python-semantic-release/upload-to-gh-release digest to 477a404 ([`02a551d`](https://github.com/python-gitlab/python-gitlab/commit/02a551d82327b879b7a903b56b7962da552d1089))
151
+
152
+ * chore(deps): update all non-major dependencies ([`d5de288`](https://github.com/python-gitlab/python-gitlab/commit/d5de28884f695a79e49605a698c4f17b868ddeb8))
153
+
154
+ * chore: add a help message for `gitlab project-key enable`
155
+
156
+ Add some help text for `gitlab project-key enable`. This both adds
157
+ help text and shows how to use the new `help` feature.
158
+
159
+ Example:
160
+
161
+ $ gitlab project-key --help
162
+ usage: gitlab project-key [-h] {list,get,create,update,delete,enable} ...
163
+
164
+ options:
165
+ -h, --help show this help message and exit
166
+
167
+ action:
168
+ {list,get,create,update,delete,enable}
169
+ Action to execute on the GitLab resource.
170
+ list List the GitLab resources
171
+ get Get a GitLab resource
172
+ create Create a GitLab resource
173
+ update Update a GitLab resource
174
+ delete Delete a GitLab resource
175
+ enable Enable a deploy key for the project ([`1291dbb`](https://github.com/python-gitlab/python-gitlab/commit/1291dbb588d3a5a54ee54d9bb93c444ce23efa8c))
176
+
177
+ * chore: sort CLI behavior-related args to remove
178
+
179
+ Sort the list of CLI behavior-related args that are to be removed. ([`9b4b0ef`](https://github.com/python-gitlab/python-gitlab/commit/9b4b0efa1ccfb155aee8384de9e00f922b989850))
180
+
181
+ ### Feature
182
+
183
+ * feat(api): add support for latest pipeline ([`635f5a7`](https://github.com/python-gitlab/python-gitlab/commit/635f5a7128c780880824f69a9aba23af148dfeb4))
184
+
185
+ * feat: add `--no-mask-credentials` CLI argument
186
+
187
+ This gives the ability to not mask credentials when using the
188
+ `--debug` argument. ([`18aa1fc`](https://github.com/python-gitlab/python-gitlab/commit/18aa1fc074b9f477cf0826933184bd594b63b489))
189
+
190
+ ### Fix
191
+
192
+ * fix: add ability to add help to custom_actions
193
+
194
+ Now when registering a custom_action can add help text if desired.
195
+
196
+ Also delete the VerticalHelpFormatter as no longer needed. When the
197
+ help value is set to `None` or some other value, the actions will get
198
+ printed vertically. Before when the help value was not set the actions
199
+ would all get put onto one line. ([`9acd2d2`](https://github.com/python-gitlab/python-gitlab/commit/9acd2d23dd8c87586aa99c70b4b47fa47528472b))
4
200
 
5
201
  ## v4.6.0 (2024-05-28)
6
202
 
@@ -105,12 +301,12 @@ Closes: #2821 ([`62fa271`](https://github.com/python-gitlab/python-gitlab/commit
105
301
 
106
302
  * feat(api): add additional parameter to project/group iteration search (#2796)
107
303
 
108
- Co-authored-by: Cristiano Casella <cristiano.casella@seacom.it>
304
+ Co-authored-by: Cristiano Casella <cristiano.casella@seacom.it>
109
305
  Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`623dac9`](https://github.com/python-gitlab/python-gitlab/commit/623dac9c8363c61dbf53f72af58835743e96656b))
110
306
 
111
307
  * feat(api): add support for gitlab service account (#2851)
112
308
 
113
-
309
+
114
310
  Co-authored-by: Nejc Habjan <hab.nejc@siemens.com> ([`b187dea`](https://github.com/python-gitlab/python-gitlab/commit/b187deadabbfdf0326ecd79a3ee64c9de10c53e0))
115
311
 
116
312
  * feat: more usernames support for MR approvals
@@ -156,7 +352,6 @@ Closes: #2825 ([`ef8f0e1`](https://github.com/python-gitlab/python-gitlab/commit
156
352
 
157
353
  Signed-off-by: Adrian DC <radian.dc@gmail.com> ([`33fbc14`](https://github.com/python-gitlab/python-gitlab/commit/33fbc14ea8432df7e637462379e567f4d0ad6c18))
158
354
 
159
-
160
355
  ## v4.5.0 (2024-05-13)
161
356
 
162
357
  ### Build
@@ -280,18 +475,18 @@ Ref: #2823 ([`6d4bffb`](https://github.com/python-gitlab/python-gitlab/commit/6d
280
475
 
281
476
  * feat(job_token_scope): support Groups in job token allowlist API (#2816)
282
477
 
283
- * feat(job_token_scope): support job token access allowlist API
284
-
285
- Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk>
286
- l.dwp.gov.uk>
478
+ * feat(job_token_scope): support job token access allowlist API
479
+
480
+ Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk>
481
+ l.dwp.gov.uk>
287
482
  Co-authored-by: Nejc Habjan <nejc.habjan@siemens.com> ([`2d1b749`](https://github.com/python-gitlab/python-gitlab/commit/2d1b7499a93db2c9600b383e166f7463a5f22085))
288
483
 
289
484
  * feat(cli): allow skipping initial auth calls ([`001e596`](https://github.com/python-gitlab/python-gitlab/commit/001e59675f4a417a869f813d79c298a14268b87d))
290
485
 
291
486
  * feat(api): allow updating protected branches (#2771)
292
487
 
293
- * feat(api): allow updating protected branches
294
-
488
+ * feat(api): allow updating protected branches
489
+
295
490
  Closes #2390 ([`a867c48`](https://github.com/python-gitlab/python-gitlab/commit/a867c48baa6f10ffbfb785e624a6e3888a859571))
296
491
 
297
492
  ### Fix
@@ -344,14 +539,14 @@ Update test to show it works as expected. ([`529f1fa`](https://github.com/python
344
539
 
345
540
  * fix(cli): allow exclusive arguments as optional (#2770)
346
541
 
347
- * fix(cli): allow exclusive arguments as optional
348
-
349
- 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.
350
-
351
- * fix(cli): inform argument parser that options are mutually exclusive
352
-
353
- * fix(cli): use correct exclusive options, add unit test
354
-
542
+ * fix(cli): allow exclusive arguments as optional
543
+
544
+ 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.
545
+
546
+ * fix(cli): inform argument parser that options are mutually exclusive
547
+
548
+ * fix(cli): use correct exclusive options, add unit test
549
+
355
550
  Closes #2769 ([`7ec3189`](https://github.com/python-gitlab/python-gitlab/commit/7ec3189d6eacdb55925e8be886a44d7ee09eb9ca))
356
551
 
357
552
  ### Test
@@ -389,7 +584,6 @@ Signed-off-by: Tim Knight <tim.knight1@engineering.digital.dwp.gov.uk> ([`
389
584
 
390
585
  * test(smoke): normalize all dist titles for smoke tests ([`ee013fe`](https://github.com/python-gitlab/python-gitlab/commit/ee013fe1579b001b4b30bae33404e827c7bdf8c1))
391
586
 
392
-
393
587
  ## v4.4.0 (2024-01-15)
394
588
 
395
589
  ### Chore
@@ -442,7 +636,6 @@ later if needed.
442
636
 
443
637
  Closes: #2752 ([`57749d4`](https://github.com/python-gitlab/python-gitlab/commit/57749d46de1d975aacb82758c268fc26e5e6ed8b))
444
638
 
445
-
446
639
  ## v4.3.0 (2023-12-28)
447
640
 
448
641
  ### Chore
@@ -469,8 +662,8 @@ Closes: #2752 ([`57749d4`](https://github.com/python-gitlab/python-gitlab/commit
469
662
 
470
663
  * feat(api): add support for the Draft notes API (#2728)
471
664
 
472
- * feat(api): add support for the Draft notes API
473
-
665
+ * feat(api): add support for the Draft notes API
666
+
474
667
  * fix(client): handle empty 204 reponses in PUT requests ([`ebf9d82`](https://github.com/python-gitlab/python-gitlab/commit/ebf9d821cfc36071fca05d38b82c641ae30c974c))
475
668
 
476
669
  ### Fix
@@ -481,7 +674,6 @@ Add a `--no-ssl-verify` option to disable SSL verification
481
674
 
482
675
  Closes: #2714 ([`3fe9fa6`](https://github.com/python-gitlab/python-gitlab/commit/3fe9fa64d9a38bc77950046f2950660d8d7e27a6))
483
676
 
484
-
485
677
  ## v4.2.0 (2023-11-28)
486
678
 
487
679
  ### Chore
@@ -504,13 +696,12 @@ https://docs.gitlab.com/ee/api/pipelines.html ([`4954bbc`](https://github.com/py
504
696
 
505
697
  * feat(api): add support for wiki attachments (#2722)
506
698
 
507
- Added UploadMixin in mixin module
508
- Added UploadMixin dependency for Project, ProjectWiki, GroupWiki
509
- Added api tests for wiki upload
510
- Added unit test for mixin
699
+ Added UploadMixin in mixin module
700
+ Added UploadMixin dependency for Project, ProjectWiki, GroupWiki
701
+ Added api tests for wiki upload
702
+ Added unit test for mixin
511
703
  Added docs sections to wikis.rst ([`7b864b8`](https://github.com/python-gitlab/python-gitlab/commit/7b864b81fd348c6a42e32ace846d1acbcfc43998))
512
704
 
513
-
514
705
  ## v4.1.1 (2023-11-03)
515
706
 
516
707
  ### Chore
@@ -530,7 +721,6 @@ are missing commas. This change adds the missing commas. ([`b1b2edf`](https://gi
530
721
 
531
722
  * fix(build): include py.typed in dists ([`b928639`](https://github.com/python-gitlab/python-gitlab/commit/b928639f7ca252e0abb8ded8f9f142316a4dc823))
532
723
 
533
-
534
724
  ## v4.1.0 (2023-10-28)
535
725
 
536
726
  ### Chore
@@ -557,7 +747,6 @@ are missing commas. This change adds the missing commas. ([`b1b2edf`](https://gi
557
747
 
558
748
  * fix: remove depricated MergeStatus ([`c6c012b`](https://github.com/python-gitlab/python-gitlab/commit/c6c012b9834b69f1fe45689519fbcd92928cfbad))
559
749
 
560
-
561
750
  ## v4.0.0 (2023-10-17)
562
751
 
563
752
  ### Breaking
@@ -843,7 +1032,6 @@ Also update dependency `responses==0.23.3` as it provides support for
843
1032
 
844
1033
  Closes: #2626 ([`988a6e7`](https://github.com/python-gitlab/python-gitlab/commit/988a6e7eff5d24b2432d3d85f1e750f4f95563f7))
845
1034
 
846
-
847
1035
  ## v3.15.0 (2023-06-09)
848
1036
 
849
1037
  ### Chore
@@ -868,8 +1056,8 @@ Closes: #2626 ([`988a6e7`](https://github.com/python-gitlab/python-gitlab/commit
868
1056
 
869
1057
  * chore(ci): use OIDC trusted publishing for pypi.org (#2559)
870
1058
 
871
- * chore(ci): use OIDC trusted publishing for pypi.org
872
-
1059
+ * chore(ci): use OIDC trusted publishing for pypi.org
1060
+
873
1061
  * chore(ci): explicitly install setuptools in tests ([`7be09e5`](https://github.com/python-gitlab/python-gitlab/commit/7be09e52d75ed8ab723d7a65f5e99d98fe6f52b0))
874
1062
 
875
1063
  ### Documentation
@@ -894,7 +1082,6 @@ This can be used instead of 'user_ids'
894
1082
 
895
1083
  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))
896
1084
 
897
-
898
1085
  ## v3.14.0 (2023-04-11)
899
1086
 
900
1087
  ### Chore
@@ -931,14 +1118,14 @@ Also add some unit tests ([`f2b5e4f`](https://github.com/python-gitlab/python-gi
931
1118
 
932
1119
  * chore(deps): update all non-major dependencies (#2493)
933
1120
 
934
- * chore(deps): update all non-major dependencies
935
- * chore(fixtures): downgrade GitLab for now
936
- * chore(deps): ungroup typing deps, group gitlab instead
937
- * chore(deps): downgrade argcomplete for now
938
-
939
- ---------
940
-
941
- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1121
+ * chore(deps): update all non-major dependencies
1122
+ * chore(fixtures): downgrade GitLab for now
1123
+ * chore(deps): ungroup typing deps, group gitlab instead
1124
+ * chore(deps): downgrade argcomplete for now
1125
+
1126
+ ---------
1127
+
1128
+ Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
942
1129
  Co-authored-by: Nejc Habjan <nejc.habjan@siemens.com> ([`07d03dc`](https://github.com/python-gitlab/python-gitlab/commit/07d03dc959128e05d21e8dfd79aa8e916ab5b150))
943
1130
 
944
1131
  * chore(deps): update dependency pre-commit to v3 (#2508)
@@ -977,22 +1164,22 @@ someone. ([`9c24657`](https://github.com/python-gitlab/python-gitlab/commit/9c24
977
1164
 
978
1165
  * chore(deps): update black (23.1.0) and commitizen (2.40.0) (#2479)
979
1166
 
980
- Update the dependency versions:
981
- black: 23.1.0
982
- commitizen: 2.40.0
983
-
984
- They needed to be updated together as just updating `black` caused a
985
- dependency conflict.
986
-
1167
+ Update the dependency versions:
1168
+ black: 23.1.0
1169
+ commitizen: 2.40.0
1170
+
1171
+ They needed to be updated together as just updating `black` caused a
1172
+ dependency conflict.
1173
+
987
1174
  Updated files by running `black` and committing the changes. ([`44786ef`](https://github.com/python-gitlab/python-gitlab/commit/44786efad1dbb66c8242e61cf0830d58dfaff196))
988
1175
 
989
1176
  * chore: add SECURITY.md ([`572ca3b`](https://github.com/python-gitlab/python-gitlab/commit/572ca3b6bfe190f8681eef24e72b15c1f8ba6da8))
990
1177
 
991
1178
  * chore: remove `pre-commit` as a default `tox` environment (#2470)
992
1179
 
993
- For users who use `tox` having `pre-commit` as part of the default
994
- environment list is redundant as it will run the same tests again that
995
- are being run in other environments. For example: black, flake8,
1180
+ For users who use `tox` having `pre-commit` as part of the default
1181
+ environment list is redundant as it will run the same tests again that
1182
+ are being run in other environments. For example: black, flake8,
996
1183
  pylint, and more. ([`fde2495`](https://github.com/python-gitlab/python-gitlab/commit/fde2495dd1e97fd2f0e91063946bb08490b3952c))
997
1184
 
998
1185
  * chore: add Python 3.12 testing
@@ -1013,13 +1200,13 @@ be matched. ([`0867564`](https://github.com/python-gitlab/python-gitlab/commit/0
1013
1200
 
1014
1201
  * docs: fix update badge behaviour
1015
1202
 
1016
- docs: fix update badge behaviour
1017
-
1018
- Earlier:
1019
- badge.image_link = new_link
1020
-
1021
- Now:
1022
- badge.image_url = new_image_url
1203
+ docs: fix update badge behaviour
1204
+
1205
+ Earlier:
1206
+ badge.image_link = new_link
1207
+
1208
+ Now:
1209
+ badge.image_url = new_image_url
1023
1210
  badge.link_url = new_link_url ([`3d7ca1c`](https://github.com/python-gitlab/python-gitlab/commit/3d7ca1caac5803c2e6d60a3e5eba677957b3cfc6))
1024
1211
 
1025
1212
  * docs(advanced): fix typo in Gitlab examples ([`1992790`](https://github.com/python-gitlab/python-gitlab/commit/19927906809c329788822f91d0abd8761a85c5c3))
@@ -1034,17 +1221,17 @@ badge.link_url = new_link_url ([`3d7ca1c`](https://github.com/python-gitlab/pyth
1034
1221
 
1035
1222
  * feat(backends): use PEP544 protocols for structural subtyping (#2442)
1036
1223
 
1037
- The purpose of this change is to track API changes described in
1038
- https://github.com/python-gitlab/python-gitlab/blob/main/docs/api-levels.rst,
1039
- for example, for package versioning and breaking change announcements
1040
- in case of protocol changes.
1041
-
1224
+ The purpose of this change is to track API changes described in
1225
+ https://github.com/python-gitlab/python-gitlab/blob/main/docs/api-levels.rst,
1226
+ for example, for package versioning and breaking change announcements
1227
+ in case of protocol changes.
1228
+
1042
1229
  This is MVP implementation to be used by #2435. ([`4afeaff`](https://github.com/python-gitlab/python-gitlab/commit/4afeaff0361a966254a7fbf0120e93583d460361))
1043
1230
 
1044
1231
  * feat(client): add http_patch method (#2471)
1045
1232
 
1046
- In order to support some new API calls we need to support the HTTP `PATCH` method.
1047
-
1233
+ In order to support some new API calls we need to support the HTTP `PATCH` method.
1234
+
1048
1235
  Closes: #2469 ([`f711d9e`](https://github.com/python-gitlab/python-gitlab/commit/f711d9e2bf78f58cee6a7c5893d4acfd2f980397))
1049
1236
 
1050
1237
  * feat(cli): add setting of `allow_force_push` for protected branch
@@ -1074,16 +1261,14 @@ Closes: #2506 ([`90f96ac`](https://github.com/python-gitlab/python-gitlab/commit
1074
1261
 
1075
1262
  * fix(cli): add ability to escape at-prefixed parameter (#2513)
1076
1263
 
1077
- * fix(cli): Add ability to escape at-prefixed parameter (#2511)
1078
-
1079
- ---------
1080
-
1264
+ * fix(cli): Add ability to escape at-prefixed parameter (#2511)
1265
+
1266
+ ---------
1267
+
1081
1268
  Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`4f7c784`](https://github.com/python-gitlab/python-gitlab/commit/4f7c78436e62bfd21745c5289117e03ed896bc66))
1082
1269
 
1083
1270
  * fix(cli): display items when iterator is returned ([`33a04e7`](https://github.com/python-gitlab/python-gitlab/commit/33a04e74fc42d720c7be32172133a614f7268ec1))
1084
1271
 
1085
- * fix: typo fixed in docs ([`ee5f444`](https://github.com/python-gitlab/python-gitlab/commit/ee5f444b16e4d2f645499ac06f5d81f22867f050))
1086
-
1087
1272
  ### Refactor
1088
1273
 
1089
1274
  * refactor(client): let mypy know http_password is set ([`2dd177b`](https://github.com/python-gitlab/python-gitlab/commit/2dd177bf83fdf62f0e9bdcb3bc41d5e4f5631504))
@@ -1112,7 +1297,6 @@ docs: fix typo in issue docs ([`43f5ac5`](https://github.com/python-gitlab/pytho
1112
1297
 
1113
1298
  * Merge branch 'main' into typos ([`3cfd390`](https://github.com/python-gitlab/python-gitlab/commit/3cfd3903757bf61386972a18f3225665145324eb))
1114
1299
 
1115
-
1116
1300
  ## v3.13.0 (2023-01-30)
1117
1301
 
1118
1302
  ### Chore
@@ -1123,8 +1307,8 @@ docs: fix typo in issue docs ([`43f5ac5`](https://github.com/python-gitlab/pytho
1123
1307
 
1124
1308
  * chore: add a UserWarning if both `iterator=True` and `page=X` are used (#2462)
1125
1309
 
1126
- If a caller calls a `list()` method with both `iterator=True` (or
1127
- `as_list=False`) and `page=X` then emit a `UserWarning` as the options
1310
+ If a caller calls a `list()` method with both `iterator=True` (or
1311
+ `as_list=False`) and `page=X` then emit a `UserWarning` as the options
1128
1312
  are mutually exclusive. ([`8e85791`](https://github.com/python-gitlab/python-gitlab/commit/8e85791c315822cd26d56c0c0f329cffae879644))
1129
1313
 
1130
1314
  * chore: remove tox `envdir` values
@@ -1226,6 +1410,8 @@ too much memory. ([`585e3a8`](https://github.com/python-gitlab/python-gitlab/com
1226
1410
 
1227
1411
  * fix(deps): bump requests-toolbelt to fix deprecation warning ([`faf842e`](https://github.com/python-gitlab/python-gitlab/commit/faf842e97d4858ff5ebd8ae6996e0cb3ca29881c))
1228
1412
 
1413
+ * fix: typo fixed in docs ([`ee5f444`](https://github.com/python-gitlab/python-gitlab/commit/ee5f444b16e4d2f645499ac06f5d81f22867f050))
1414
+
1229
1415
  * fix: Use the ProjectIterationManager within the Project object
1230
1416
 
1231
1417
  The Project object was previously using the GroupIterationManager
@@ -1256,7 +1442,6 @@ Resolves #2403 ([`44f05dc`](https://github.com/python-gitlab/python-gitlab/commi
1256
1442
 
1257
1443
  * test(unit): expand tests for pipeline schedules ([`c7cf0d1`](https://github.com/python-gitlab/python-gitlab/commit/c7cf0d1f172c214a11b30622fbccef57d9c86e93))
1258
1444
 
1259
-
1260
1445
  ## v3.12.0 (2022-11-28)
1261
1446
 
1262
1447
  ### Chore
@@ -1359,15 +1544,15 @@ References:
1359
1544
 
1360
1545
  * fix: use POST method and return dict in `cancel_merge_when_pipeline_succeeds()` (#2350)
1361
1546
 
1362
- * Call was incorrectly using a `PUT` method when should have used a
1363
- `POST` method.
1364
- * Changed return type to a `dict` as GitLab only returns
1365
- {'status': 'success'} on success. Since the function didn't work
1366
- previously, this should not impact anyone.
1367
- * Updated the test fixture `merge_request` to add ability to create
1368
- a pipeline.
1369
- * Added functional test for `mr.cancel_merge_when_pipeline_succeeds()`
1370
-
1547
+ * Call was incorrectly using a `PUT` method when should have used a
1548
+ `POST` method.
1549
+ * Changed return type to a `dict` as GitLab only returns
1550
+ {'status': 'success'} on success. Since the function didn't work
1551
+ previously, this should not impact anyone.
1552
+ * Updated the test fixture `merge_request` to add ability to create
1553
+ a pipeline.
1554
+ * Added functional test for `mr.cancel_merge_when_pipeline_succeeds()`
1555
+
1371
1556
  Fixes: #2349 ([`bd82d74`](https://github.com/python-gitlab/python-gitlab/commit/bd82d745c8ea9ff6ff078a4c961a2d6e64a2f63c))
1372
1557
 
1373
1558
  ### Refactor
@@ -1399,7 +1584,6 @@ chore(deps): update all non-major dependencies ([`2974966`](https://github.com/p
1399
1584
 
1400
1585
  chore(deps): update pre-commit hook maxbrunet/pre-commit-renovate to v34 ([`c3d9820`](https://github.com/python-gitlab/python-gitlab/commit/c3d982096d0ce562e63716decbce8185e61bc2f1))
1401
1586
 
1402
-
1403
1587
  ## v3.11.0 (2022-10-28)
1404
1588
 
1405
1589
  ### Chore
@@ -1601,7 +1785,6 @@ test: use false instead of /usr/bin/false ([`4eca9b9`](https://github.com/python
1601
1785
 
1602
1786
  chore(deps): update all non-major dependencies ([`9410acb`](https://github.com/python-gitlab/python-gitlab/commit/9410acb79a65420c344bdf3b9c06eb92c7ad10a1))
1603
1787
 
1604
-
1605
1788
  ## v3.10.0 (2022-09-28)
1606
1789
 
1607
1790
  ### Chore
@@ -1623,10 +1806,10 @@ chore(deps): update all non-major dependencies ([`9410acb`](https://github.com/p
1623
1806
 
1624
1807
  * chore(deps): update dependency commitizen to v2.32.5 ([`e180f14`](https://github.com/python-gitlab/python-gitlab/commit/e180f14309fa728e612ad6259c2e2c1f328a140c))
1625
1808
 
1626
- * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`31ba64f`](https://github.com/python-gitlab/python-gitlab/commit/31ba64f2849ce85d434cd04ec7b837ca8f659e03))
1627
-
1628
1809
  * chore(deps): update dependency commitizen to v2.32.2 ([`31aea28`](https://github.com/python-gitlab/python-gitlab/commit/31aea286e0767148498af300e78db7dbdf715bda))
1629
1810
 
1811
+ * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`31ba64f`](https://github.com/python-gitlab/python-gitlab/commit/31ba64f2849ce85d434cd04ec7b837ca8f659e03))
1812
+
1630
1813
  ### Feature
1631
1814
 
1632
1815
  * feat: Add reset_approvals api
@@ -1635,6 +1818,13 @@ Added the newly added reset_approvals merge request api.
1635
1818
 
1636
1819
  Signed-off-by: Lucas Zampieri <lzampier@redhat.com> ([`88693ff`](https://github.com/python-gitlab/python-gitlab/commit/88693ff2d6f4eecf3c79d017df52738886e2d636))
1637
1820
 
1821
+ * feat: add support for deployment approval endpoint
1822
+
1823
+ Add support for the deployment approval endpoint[1]
1824
+
1825
+ [1] https://docs.gitlab.com/ee/api/deployments.html#approve-or-reject-a-blocked-deployment
1826
+ Closes: #2253 ([`9c9eeb9`](https://github.com/python-gitlab/python-gitlab/commit/9c9eeb901b1f3acd3fb0c4f24014ae2ed7c975ec))
1827
+
1638
1828
  ### Fix
1639
1829
 
1640
1830
  * fix(cli): add missing attributes for creating MRs ([`1714d0a`](https://github.com/python-gitlab/python-gitlab/commit/1714d0a980afdb648d203751dedf95ee95ac326e))
@@ -1659,7 +1849,6 @@ chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`89
1659
1849
 
1660
1850
  feat: add support for deployment approval endpoint ([`56fbe02`](https://github.com/python-gitlab/python-gitlab/commit/56fbe022e11b3b47fef0bd45b41543c9d73ec94e))
1661
1851
 
1662
-
1663
1852
  ## v3.9.0 (2022-08-28)
1664
1853
 
1665
1854
  ### Chore
@@ -1696,24 +1885,17 @@ $ tox -e api_func_v4 -- -k test_gitlab.py ([`98f1956`](https://github.com/python
1696
1885
 
1697
1886
  * chore(deps): update dependency types-requests to v2.28.9 ([`be932f6`](https://github.com/python-gitlab/python-gitlab/commit/be932f6dde5f47fb3d30e654b82563cd719ae8ce))
1698
1887
 
1699
- * chore(deps): update dependency types-setuptools to v64 ([`4c97f26`](https://github.com/python-gitlab/python-gitlab/commit/4c97f26287cc947ab5ee228a5862f2a20535d2ae))
1700
-
1701
1888
  * chore(deps): update pre-commit hook pycqa/flake8 to v5 ([`835d884`](https://github.com/python-gitlab/python-gitlab/commit/835d884e702f1ee48575b3154136f1ef4b2f2ff2))
1702
1889
 
1703
- * chore(deps): update dependency types-requests to v2.28.8 ([`8e5b86f`](https://github.com/python-gitlab/python-gitlab/commit/8e5b86fcc72bf30749228519f1b4a6e29a8dbbe9))
1704
-
1705
1890
  * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.31.0 ([`71d37d9`](https://github.com/python-gitlab/python-gitlab/commit/71d37d98721c0813b096124ed2ccf5487ab463b9))
1706
1891
 
1707
1892
  * chore(deps): update dependency commitizen to v2.31.0 ([`4ff0894`](https://github.com/python-gitlab/python-gitlab/commit/4ff0894870977f07657e80bfaa06387f2af87d10))
1708
1893
 
1709
- ### Feature
1710
-
1711
- * feat: add support for deployment approval endpoint
1894
+ * chore(deps): update dependency types-setuptools to v64 ([`4c97f26`](https://github.com/python-gitlab/python-gitlab/commit/4c97f26287cc947ab5ee228a5862f2a20535d2ae))
1712
1895
 
1713
- Add support for the deployment approval endpoint[1]
1896
+ * chore(deps): update dependency types-requests to v2.28.8 ([`8e5b86f`](https://github.com/python-gitlab/python-gitlab/commit/8e5b86fcc72bf30749228519f1b4a6e29a8dbbe9))
1714
1897
 
1715
- [1] https://docs.gitlab.com/ee/api/deployments.html#approve-or-reject-a-blocked-deployment
1716
- Closes: #2253 ([`9c9eeb9`](https://github.com/python-gitlab/python-gitlab/commit/9c9eeb901b1f3acd3fb0c4f24014ae2ed7c975ec))
1898
+ ### Feature
1717
1899
 
1718
1900
  * feat: add support for merge_base API ([`dd4fbd5`](https://github.com/python-gitlab/python-gitlab/commit/dd4fbd5e43adbbc502624a8de0d30925d798dec0))
1719
1901
 
@@ -1735,7 +1917,6 @@ chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.31.0 ([`93
1735
1917
 
1736
1918
  chore(deps): update dependency commitizen to v2.31.0 ([`b432e47`](https://github.com/python-gitlab/python-gitlab/commit/b432e47d2e05d36a308d513007e8aecbd10ac001))
1737
1919
 
1738
-
1739
1920
  ## v3.8.1 (2022-08-10)
1740
1921
 
1741
1922
  ### Chore
@@ -1774,7 +1955,6 @@ chore(deps): update dependency sphinx to v5 ([`1e12eaf`](https://github.com/pyth
1774
1955
 
1775
1956
  chore: remove broad Exception catching from `config.py` ([`70e67bf`](https://github.com/python-gitlab/python-gitlab/commit/70e67bfec915a9404acdedf615e7548d75317ea3))
1776
1957
 
1777
-
1778
1958
  ## v3.8.0 (2022-08-04)
1779
1959
 
1780
1960
  ### Chore
@@ -1788,13 +1968,13 @@ query parameters. ([`6d1b62d`](https://github.com/python-gitlab/python-gitlab/co
1788
1968
 
1789
1969
  * chore: enable mypy check `disallow_any_generics` ([`24d17b4`](https://github.com/python-gitlab/python-gitlab/commit/24d17b43da16dd11ab37b2cee561d9392c90f32e))
1790
1970
 
1791
- * chore: enable mypy check `no_implicit_optional` ([`64b208e`](https://github.com/python-gitlab/python-gitlab/commit/64b208e0e91540af2b645da595f0ef79ee7522e1))
1971
+ * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.2 ([`4988c02`](https://github.com/python-gitlab/python-gitlab/commit/4988c029e0dda89ff43375d1cd2f407abdbe3dc7))
1792
1972
 
1793
- * chore(deps): update dependency types-requests to v2.28.6 ([`54dd4c3`](https://github.com/python-gitlab/python-gitlab/commit/54dd4c3f857f82aa8781b0daf22fa2dd3c60c2c4))
1973
+ * chore: enable mypy check `no_implicit_optional` ([`64b208e`](https://github.com/python-gitlab/python-gitlab/commit/64b208e0e91540af2b645da595f0ef79ee7522e1))
1794
1974
 
1795
1975
  * chore(deps): update dependency flake8 to v5 ([`cdc384b`](https://github.com/python-gitlab/python-gitlab/commit/cdc384b8a2096e31aff12ea98383e2b1456c5731))
1796
1976
 
1797
- * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.2 ([`4988c02`](https://github.com/python-gitlab/python-gitlab/commit/4988c029e0dda89ff43375d1cd2f407abdbe3dc7))
1977
+ * chore(deps): update dependency types-requests to v2.28.6 ([`54dd4c3`](https://github.com/python-gitlab/python-gitlab/commit/54dd4c3f857f82aa8781b0daf22fa2dd3c60c2c4))
1798
1978
 
1799
1979
  * chore(deps): update dependency commitizen to v2.29.2 ([`30274ea`](https://github.com/python-gitlab/python-gitlab/commit/30274ead81205946a5a7560e592f346075035e0e))
1800
1980
 
@@ -1805,16 +1985,16 @@ the path. So https://gitlab.com/gitlab-org/gitlab would only show
1805
1985
  "gitlab". Using `path_with_namespace` it will now show
1806
1986
  "gitlab-org/gitlab" ([`7cccefe`](https://github.com/python-gitlab/python-gitlab/commit/7cccefe6da0e90391953734d95debab2fe07ea49))
1807
1987
 
1988
+ * chore: enable mypy check `warn_return_any`
1989
+
1990
+ Update code so that the `warn_return_any` check passes. ([`76ec4b4`](https://github.com/python-gitlab/python-gitlab/commit/76ec4b481fa931ea36a195ac474812c11babef7b))
1991
+
1808
1992
  * chore: make code PEP597 compliant
1809
1993
 
1810
1994
  Use `encoding="utf-8"` in `open()` and open-like functions.
1811
1995
 
1812
1996
  https://peps.python.org/pep-0597/ ([`433dba0`](https://github.com/python-gitlab/python-gitlab/commit/433dba02e0d4462ae84a73d8699fe7f3e07aa410))
1813
1997
 
1814
- * chore: enable mypy check `warn_return_any`
1815
-
1816
- Update code so that the `warn_return_any` check passes. ([`76ec4b4`](https://github.com/python-gitlab/python-gitlab/commit/76ec4b481fa931ea36a195ac474812c11babef7b))
1817
-
1818
1998
  * chore(clusters): deprecate clusters support
1819
1999
 
1820
2000
  Cluster support was deprecated in GitLab 14.5 [1]. And disabled by
@@ -1874,6 +2054,10 @@ running.
1874
2054
 
1875
2055
  [1] https://docs.gitlab.com/ee/user/admin_area/monitoring/health_check.html ([`67508e8`](https://github.com/python-gitlab/python-gitlab/commit/67508e8100be18ce066016dcb8e39fa9f0c59e51))
1876
2056
 
2057
+ * test(functional): bump GitLab docker image to 15.2.0-ee.0
2058
+
2059
+ Use the GitLab docker image 15.2.0-ee.0 in the functional testing. ([`69014e9`](https://github.com/python-gitlab/python-gitlab/commit/69014e9be3a781be6742478af820ea097d004791))
2060
+
1877
2061
  ### Unknown
1878
2062
 
1879
2063
  * Merge pull request #2221 from python-gitlab/jlvillal/unparse
@@ -1928,7 +2112,6 @@ chore: make code PEP597 compliant ([`1b7cd31`](https://github.com/python-gitlab/
1928
2112
 
1929
2113
  test(functional): bump GitLab docker image to 15.2.0-ee.0 ([`7a53c69`](https://github.com/python-gitlab/python-gitlab/commit/7a53c6950bb7df90e2a3f4e6d0436cb5d06c3b46))
1930
2114
 
1931
-
1932
2115
  ## v3.7.0 (2022-07-28)
1933
2116
 
1934
2117
  ### Chore
@@ -1943,14 +2126,14 @@ Enable using GitLab Enterprise Edition (EE) in the functional tests.
1943
2126
  This will allow us to add functional tests for EE only features in the
1944
2127
  functional tests. ([`17c01ea`](https://github.com/python-gitlab/python-gitlab/commit/17c01ea55806c722523f2f9aef0175455ec942c5))
1945
2128
 
1946
- * chore(deps): update dependency mypy to v0.971 ([`7481d27`](https://github.com/python-gitlab/python-gitlab/commit/7481d271512eaa234315bcdbaf329026589bfda7))
1947
-
1948
2129
  * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.0 ([`ad8d62a`](https://github.com/python-gitlab/python-gitlab/commit/ad8d62ae9612c173a749d413f7a84e5b8c0167cf))
1949
2130
 
1950
- * chore(deps): update typing dependencies ([`f2209a0`](https://github.com/python-gitlab/python-gitlab/commit/f2209a0ea084eaf7fbc89591ddfea138d99527a6))
1951
-
1952
2131
  * chore(deps): update dependency commitizen to v2.29.0 ([`c365be1`](https://github.com/python-gitlab/python-gitlab/commit/c365be1b908c5e4fda445680c023607bdf6c6281))
1953
2132
 
2133
+ * chore(deps): update dependency mypy to v0.971 ([`7481d27`](https://github.com/python-gitlab/python-gitlab/commit/7481d271512eaa234315bcdbaf329026589bfda7))
2134
+
2135
+ * chore(deps): update typing dependencies ([`f2209a0`](https://github.com/python-gitlab/python-gitlab/commit/f2209a0ea084eaf7fbc89591ddfea138d99527a6))
2136
+
1954
2137
  * chore(authors): fix email and do the ABC ([`9833632`](https://github.com/python-gitlab/python-gitlab/commit/98336320a66d1859ba73e084a5e86edc3aa1643c))
1955
2138
 
1956
2139
  * chore: make reset_gitlab() better
@@ -2011,21 +2194,21 @@ that naming convention. ([`8cf5cd9`](https://github.com/python-gitlab/python-git
2011
2194
 
2012
2195
  * chore(ci_lint): add create attributes ([`6e1342f`](https://github.com/python-gitlab/python-gitlab/commit/6e1342fc0b7cf740b25a939942ea02cdd18a9625))
2013
2196
 
2014
- * chore(deps): update dependency requests to v2.28.1 ([`be33245`](https://github.com/python-gitlab/python-gitlab/commit/be3324597aa3f22b0692d3afa1df489f2709a73e))
2015
-
2016
- * chore(deps): update dependency pylint to v2.14.4 ([`2cee2d4`](https://github.com/python-gitlab/python-gitlab/commit/2cee2d4a86e76d3f63f3608ed6a92e64813613d3))
2017
-
2018
2197
  * chore: simplify multi-nested try blocks
2019
2198
 
2020
2199
  Instead of have a multi-nested series of try blocks. Convert it to a
2021
2200
  more readable series of `if` statements. ([`e734470`](https://github.com/python-gitlab/python-gitlab/commit/e7344709d931e2b254d225d77ca1474bc69971f8))
2022
2201
 
2023
- * chore(docs): convert tabs to spaces
2202
+ * chore(deps): update dependency requests to v2.28.1 ([`be33245`](https://github.com/python-gitlab/python-gitlab/commit/be3324597aa3f22b0692d3afa1df489f2709a73e))
2024
2203
 
2025
- Some tabs snuck into the documentation. Convert them to 4-spaces. ([`9ea5520`](https://github.com/python-gitlab/python-gitlab/commit/9ea5520cec8979000d7f5dbcc950f2250babea96))
2204
+ * chore(deps): update dependency pylint to v2.14.4 ([`2cee2d4`](https://github.com/python-gitlab/python-gitlab/commit/2cee2d4a86e76d3f63f3608ed6a92e64813613d3))
2026
2205
 
2027
2206
  * chore: fix misspelling ([`2d08fc8`](https://github.com/python-gitlab/python-gitlab/commit/2d08fc89fb67de25ad41f64c86a9b8e96e4c261a))
2028
2207
 
2208
+ * chore(docs): convert tabs to spaces
2209
+
2210
+ Some tabs snuck into the documentation. Convert them to 4-spaces. ([`9ea5520`](https://github.com/python-gitlab/python-gitlab/commit/9ea5520cec8979000d7f5dbcc950f2250babea96))
2211
+
2029
2212
  ### Documentation
2030
2213
 
2031
2214
  * docs(cli): showcase use of token scopes ([`4a6f8d6`](https://github.com/python-gitlab/python-gitlab/commit/4a6f8d67a94a3d104a24081ad1dbad5b2e3d9c3e))
@@ -2200,6 +2383,8 @@ Closes: #2116 ([`5d9c198`](https://github.com/python-gitlab/python-gitlab/commit
2200
2383
 
2201
2384
  * refactor(test-projects): apply suggestions and use fixtures ([`a51f848`](https://github.com/python-gitlab/python-gitlab/commit/a51f848db4204b2f37ae96fd235ae33cb7c2fe98))
2202
2385
 
2386
+ * refactor(test-projects): remove test_restore_project ([`9be0875`](https://github.com/python-gitlab/python-gitlab/commit/9be0875c3793324b4c4dde29519ee62b39a8cc18))
2387
+
2203
2388
  ### Test
2204
2389
 
2205
2390
  * test(cli): add tests for token scopes ([`263fe3d`](https://github.com/python-gitlab/python-gitlab/commit/263fe3d24836b34dccdcee0221bd417e0b74fb2e))
@@ -2209,10 +2394,6 @@ Closes: #2116 ([`5d9c198`](https://github.com/python-gitlab/python-gitlab/commit
2209
2394
  https://github.com/python-gitlab/python-gitlab/issues/1698 has been
2210
2395
  fixed. Add test to show that. ([`75bec7d`](https://github.com/python-gitlab/python-gitlab/commit/75bec7d543dd740c50452b21b0b4509377cd40ce))
2211
2396
 
2212
- * test(functional): bump GitLab docker image to 15.2.0-ee.0
2213
-
2214
- Use the GitLab docker image 15.2.0-ee.0 in the functional testing. ([`69014e9`](https://github.com/python-gitlab/python-gitlab/commit/69014e9be3a781be6742478af820ea097d004791))
2215
-
2216
2397
  * test: always ensure clean config environment ([`8d4f13b`](https://github.com/python-gitlab/python-gitlab/commit/8d4f13b192afd5d4610eeaf2bbea71c3b6a25964))
2217
2398
 
2218
2399
  * test(ee): add an EE specific test ([`10987b3`](https://github.com/python-gitlab/python-gitlab/commit/10987b3089d4fe218dd2116dd871e0a070db3f7f))
@@ -2245,6 +2426,8 @@ show up in the log. ([`95fe924`](https://github.com/python-gitlab/python-gitlab/
2245
2426
 
2246
2427
  * test(functional): replace len() calls with list membership checks ([`97e0eb9`](https://github.com/python-gitlab/python-gitlab/commit/97e0eb9267202052ed14882258dceca0f6c4afd7))
2247
2428
 
2429
+ * test(projects): add unit tests for projects ([`67942f0`](https://github.com/python-gitlab/python-gitlab/commit/67942f0d46b7d445f28f80d3f57aa91eeea97a24))
2430
+
2248
2431
  ### Unknown
2249
2432
 
2250
2433
  * Merge pull request #2198 from nickbroon/nickbroon-release-sort-order
@@ -2363,7 +2546,6 @@ chore: fix misspelling ([`6486566`](https://github.com/python-gitlab/python-gitl
2363
2546
 
2364
2547
  chore(docs): convert tabs to spaces ([`8771ad8`](https://github.com/python-gitlab/python-gitlab/commit/8771ad8ff3391ce42440fcb8df8da5dbe346e09e))
2365
2548
 
2366
-
2367
2549
  ## v3.6.0 (2022-06-28)
2368
2550
 
2369
2551
  ### Chore
@@ -2372,10 +2554,10 @@ chore(docs): convert tabs to spaces ([`8771ad8`](https://github.com/python-gitla
2372
2554
 
2373
2555
  * chore(workflows): explicitly use python-version ([`eb14475`](https://github.com/python-gitlab/python-gitlab/commit/eb1447588dfbbdfe724fca9009ea5451061b5ff0))
2374
2556
 
2375
- * chore(deps): update typing dependencies ([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
2376
-
2377
2557
  * chore(deps): update actions/setup-python action to v4 ([`77c1f03`](https://github.com/python-gitlab/python-gitlab/commit/77c1f0352adc8488041318e5dfd2fa98a5b5af62))
2378
2558
 
2559
+ * chore(deps): update typing dependencies ([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
2560
+
2379
2561
  * chore(deps): update pre-commit hook pycqa/pylint to v2.14.3 ([`d1fe838`](https://github.com/python-gitlab/python-gitlab/commit/d1fe838b65ccd1a68fb6301bbfd06cd19425a75c))
2380
2562
 
2381
2563
  * chore(ci): increase timeout for docker container to come online
@@ -2398,10 +2580,6 @@ this will help people when their job fails. ([`d08d07d`](https://github.com/pyth
2398
2580
 
2399
2581
  * chore(deps): update dependency pylint to v2.14.3 ([`9a16bb1`](https://github.com/python-gitlab/python-gitlab/commit/9a16bb158f3cb34a4c4cb7451127fbc7c96642e2))
2400
2582
 
2401
- * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.27.1 ([`22c5db4`](https://github.com/python-gitlab/python-gitlab/commit/22c5db4bcccf592f5cf7ea34c336208c21769896))
2402
-
2403
- * chore(deps): update dependency requests to v2.28.0 ([`d361f4b`](https://github.com/python-gitlab/python-gitlab/commit/d361f4bd4ec066452a75cf04f64334234478bb02))
2404
-
2405
2583
  * chore: fix issue found with pylint==2.14.3
2406
2584
 
2407
2585
  A new error was reported when running pylint==2.14.3:
@@ -2409,6 +2587,10 @@ A new error was reported when running pylint==2.14.3:
2409
2587
 
2410
2588
  Fixed this issue. ([`eeab035`](https://github.com/python-gitlab/python-gitlab/commit/eeab035ab715e088af73ada00e0a3b0c03527187))
2411
2589
 
2590
+ * chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.27.1 ([`22c5db4`](https://github.com/python-gitlab/python-gitlab/commit/22c5db4bcccf592f5cf7ea34c336208c21769896))
2591
+
2592
+ * chore(deps): update dependency requests to v2.28.0 ([`d361f4b`](https://github.com/python-gitlab/python-gitlab/commit/d361f4bd4ec066452a75cf04f64334234478bb02))
2593
+
2412
2594
  * chore(deps): update dependency mypy to v0.961 ([`f117b2f`](https://github.com/python-gitlab/python-gitlab/commit/f117b2f92226a507a8adbb42023143dac0cc07fc))
2413
2595
 
2414
2596
  * chore(deps): update typing dependencies ([`aebf9c8`](https://github.com/python-gitlab/python-gitlab/commit/aebf9c83a4cbf7cf4243cb9b44375ca31f9cc878))
@@ -2426,11 +2608,6 @@ Use multiple processors when running PyLint. On my system it took
2426
2608
  about 10.3 seconds to run PyLint before this change. After this change
2427
2609
  it takes about 5.8 seconds to run PyLint. ([`7f2240f`](https://github.com/python-gitlab/python-gitlab/commit/7f2240f1b9231e8b856706952ec84234177a495b))
2428
2610
 
2429
- * chore: rename `whaction` and `action` to `resource_action` in CLI
2430
-
2431
- Rename the variables `whaction` and `action` to `resource_action` to
2432
- improve code-readability. ([`fb3f28a`](https://github.com/python-gitlab/python-gitlab/commit/fb3f28a053f0dcf0a110bb8b6fd11696b4ba3dd9))
2433
-
2434
2611
  * chore: enable pylint check: "redefined-outer-name",
2435
2612
 
2436
2613
  Enable the pylint check "redefined-outer-name" and fix the errors
@@ -2466,6 +2643,11 @@ Enable the pylint checks:
2466
2643
 
2467
2644
  Update code to resolve errors found ([`1e89164`](https://github.com/python-gitlab/python-gitlab/commit/1e8916438f7c4f67bd7745103b870d84f6ba2d01))
2468
2645
 
2646
+ * chore: rename `whaction` and `action` to `resource_action` in CLI
2647
+
2648
+ Rename the variables `whaction` and `action` to `resource_action` to
2649
+ improve code-readability. ([`fb3f28a`](https://github.com/python-gitlab/python-gitlab/commit/fb3f28a053f0dcf0a110bb8b6fd11696b4ba3dd9))
2650
+
2469
2651
  * chore: rename `what` to `gitlab_resource`
2470
2652
 
2471
2653
  Naming a variable `what` makes it difficult to understand what it is
@@ -2527,10 +2709,6 @@ where `get()` in a `GetWithoutIdMixin` based class could return `None`
2527
2709
 
2528
2710
  Update the type-hints to no longer return `Optional` AKA `None` ([`aa972d4`](https://github.com/python-gitlab/python-gitlab/commit/aa972d49c57f2ebc983d2de1cfb8d18924af6734))
2529
2711
 
2530
- * chore(deps): update dependency commitizen to v2.27.1 ([`456f9f1`](https://github.com/python-gitlab/python-gitlab/commit/456f9f14453f2090fdaf88734fe51112bf4e7fde))
2531
-
2532
- * chore(deps): update typing dependencies ([`f3f79c1`](https://github.com/python-gitlab/python-gitlab/commit/f3f79c1d3afa923405b83dcea905fec213201452))
2533
-
2534
2712
  * chore: correct ModuleNotFoundError() arguments
2535
2713
 
2536
2714
  Previously in commit 233b79ed442aac66faf9eb4b0087ea126d6dffc5 I had
@@ -2542,6 +2720,10 @@ very helpful.
2542
2720
  Correct that and add a unit-test that shows we get the message we
2543
2721
  expect. ([`0b7933c`](https://github.com/python-gitlab/python-gitlab/commit/0b7933c5632c2f81c89f9a97e814badf65d1eb38))
2544
2722
 
2723
+ * chore(deps): update typing dependencies ([`f3f79c1`](https://github.com/python-gitlab/python-gitlab/commit/f3f79c1d3afa923405b83dcea905fec213201452))
2724
+
2725
+ * chore(deps): update dependency commitizen to v2.27.1 ([`456f9f1`](https://github.com/python-gitlab/python-gitlab/commit/456f9f14453f2090fdaf88734fe51112bf4e7fde))
2726
+
2545
2727
  * chore(mixins): remove None check as http_get always returns value ([`f0152dc`](https://github.com/python-gitlab/python-gitlab/commit/f0152dc3cc9a42aa4dc3c0014b4c29381e9b39d6))
2546
2728
 
2547
2729
  ### Documentation
@@ -2560,17 +2742,17 @@ expect. ([`0b7933c`](https://github.com/python-gitlab/python-gitlab/commit/0b793
2560
2742
 
2561
2743
  * docs(api): fix incorrect docs for merge_request_approvals (#2094)
2562
2744
 
2563
- * docs(api): fix incorrect docs for merge_request_approvals
2564
-
2565
- The `set_approvers()` method is on the `ProjectApprovalManager` class.
2566
- It is not part of the `ProjectApproval` class.
2567
-
2568
- The docs were previously showing to call `set_approvers` using a
2569
- `ProjectApproval` instance, which would fail. Correct the
2570
- documentation.
2571
-
2572
- This was pointed out by a question on the Gitter channel.
2573
-
2745
+ * docs(api): fix incorrect docs for merge_request_approvals
2746
+
2747
+ The `set_approvers()` method is on the `ProjectApprovalManager` class.
2748
+ It is not part of the `ProjectApproval` class.
2749
+
2750
+ The docs were previously showing to call `set_approvers` using a
2751
+ `ProjectApproval` instance, which would fail. Correct the
2752
+ documentation.
2753
+
2754
+ This was pointed out by a question on the Gitter channel.
2755
+
2574
2756
  Co-authored-by: Nejc Habjan <nejc.habjan@siemens.com> ([`5583eaa`](https://github.com/python-gitlab/python-gitlab/commit/5583eaa108949386c66290fecef4d064f44b9e83))
2575
2757
 
2576
2758
  * docs(api-usage): add import os in example ([`2194a44`](https://github.com/python-gitlab/python-gitlab/commit/2194a44be541e9d2c15d3118ba584a4a173927a2))
@@ -2596,23 +2778,19 @@ return all items. ([`de8c6e8`](https://github.com/python-gitlab/python-gitlab/co
2596
2778
 
2597
2779
  * feat(downloads): allow streaming downloads access to response iterator (#1956)
2598
2780
 
2599
- * feat(downloads): allow streaming downloads access to response iterator
2600
-
2601
- Allow access to the underlying response iterator when downloading in
2602
- streaming mode by specifying `iterator=True`.
2603
-
2604
- Update type annotations to support this change.
2605
-
2606
- * docs(api-docs): add iterator example to artifact download
2607
-
2608
- Document the usage of the `iterator=True` option when downloading
2609
- artifacts
2610
-
2611
- * test(packages): add tests for streaming downloads ([`b644721`](https://github.com/python-gitlab/python-gitlab/commit/b6447211754e126f64e12fc735ad74fe557b7fb4))
2781
+ * feat(downloads): allow streaming downloads access to response iterator
2612
2782
 
2613
- * feat(api): support head() method for get and list endpoints ([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
2783
+ Allow access to the underlying response iterator when downloading in
2784
+ streaming mode by specifying `iterator=True`.
2614
2785
 
2615
- * feat(api): implement HEAD method ([`90635a7`](https://github.com/python-gitlab/python-gitlab/commit/90635a7db3c9748745471d2282260418e31c7797))
2786
+ Update type annotations to support this change.
2787
+
2788
+ * docs(api-docs): add iterator example to artifact download
2789
+
2790
+ Document the usage of the `iterator=True` option when downloading
2791
+ artifacts
2792
+
2793
+ * test(packages): add tests for streaming downloads ([`b644721`](https://github.com/python-gitlab/python-gitlab/commit/b6447211754e126f64e12fc735ad74fe557b7fb4))
2616
2794
 
2617
2795
  * feat(users): add approve and reject methods to User
2618
2796
 
@@ -2620,6 +2798,10 @@ As requested in #1604.
2620
2798
 
2621
2799
  Co-authored-by: John Villalovos <john@sodarock.com> ([`f57139d`](https://github.com/python-gitlab/python-gitlab/commit/f57139d8f1dafa6eb19d0d954b3634c19de6413c))
2622
2800
 
2801
+ * feat(api): support head() method for get and list endpoints ([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
2802
+
2803
+ * feat(api): implement HEAD method ([`90635a7`](https://github.com/python-gitlab/python-gitlab/commit/90635a7db3c9748745471d2282260418e31c7797))
2804
+
2623
2805
  * feat(api): convert gitlab.const to Enums
2624
2806
 
2625
2807
  This allows accessing the elements by value, i.e.:
@@ -2641,16 +2823,16 @@ and am not sure how it should be done ([`1dc9d0f`](https://github.com/python-git
2641
2823
 
2642
2824
  * feat: support mutually exclusive attributes and consolidate validation to fix board lists (#2037)
2643
2825
 
2644
- add exclusive tuple to RequiredOptional data class to support for
2645
- mutually exclusive attributes
2646
-
2647
- consolidate _check_missing_create_attrs and _check_missing_update_attrs
2648
- from mixins.py into _validate_attrs in utils.py
2649
-
2650
- change _create_attrs in board list manager classes from
2651
- required=('label_ld',) to
2652
- exclusive=('label_id','asignee_id','milestone_id')
2653
-
2826
+ add exclusive tuple to RequiredOptional data class to support for
2827
+ mutually exclusive attributes
2828
+
2829
+ consolidate _check_missing_create_attrs and _check_missing_update_attrs
2830
+ from mixins.py into _validate_attrs in utils.py
2831
+
2832
+ change _create_attrs in board list manager classes from
2833
+ required=('label_ld',) to
2834
+ exclusive=('label_id','asignee_id','milestone_id')
2835
+
2654
2836
  closes https://github.com/python-gitlab/python-gitlab/issues/1897 ([`3fa330c`](https://github.com/python-gitlab/python-gitlab/commit/3fa330cc341bbedb163ba757c7f6578d735c6efb))
2655
2837
 
2656
2838
  * feat(client): introduce `iterator=True` and deprecate `as_list=False` in `list()`
@@ -2692,17 +2874,15 @@ from the args dict so this has been trying to access the wrong attribute. ([`5d1
2692
2874
 
2693
2875
  * refactor: avoid possible breaking change in iterator (#2107)
2694
2876
 
2695
- Commit b6447211754e126f64e12fc735ad74fe557b7fb4 inadvertently
2696
- introduced a possible breaking change as it added a new argument
2697
- `iterator` and added it in between existing (potentially positional) arguments.
2698
-
2699
- This moves the `iterator` argument to the end of the argument list and
2877
+ Commit b6447211754e126f64e12fc735ad74fe557b7fb4 inadvertently
2878
+ introduced a possible breaking change as it added a new argument
2879
+ `iterator` and added it in between existing (potentially positional) arguments.
2880
+
2881
+ This moves the `iterator` argument to the end of the argument list and
2700
2882
  requires it to be a keyword-only argument. ([`212ddfc`](https://github.com/python-gitlab/python-gitlab/commit/212ddfc9e9c5de50d2507cc637c01ceb31aaba41))
2701
2883
 
2702
2884
  * refactor: remove no-op id argument in GetWithoutIdMixin ([`0f2a602`](https://github.com/python-gitlab/python-gitlab/commit/0f2a602d3a9d6579f5fdfdf945a236ae44e93a12))
2703
2885
 
2704
- * refactor(test-projects): remove test_restore_project ([`9be0875`](https://github.com/python-gitlab/python-gitlab/commit/9be0875c3793324b4c4dde29519ee62b39a8cc18))
2705
-
2706
2886
  * refactor(mixins): extract custom type transforms into utils ([`09b3b22`](https://github.com/python-gitlab/python-gitlab/commit/09b3b2225361722f2439952d2dbee6a48a9f9fd9))
2707
2887
 
2708
2888
  ### Test
@@ -2721,14 +2901,12 @@ Enable the pylint "unused-argument" check and resolve issues it found.
2721
2901
 
2722
2902
  * test(api): add tests for HEAD method ([`b0f02fa`](https://github.com/python-gitlab/python-gitlab/commit/b0f02facef2ea30f24dbfb3c52974f34823e9bba))
2723
2903
 
2724
- * test(projects): add unit tests for projects ([`67942f0`](https://github.com/python-gitlab/python-gitlab/commit/67942f0d46b7d445f28f80d3f57aa91eeea97a24))
2904
+ * test: add more tests for RequiredOptional ([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
2725
2905
 
2726
2906
  * test: move back to using latest Python 3.11 version ([`8c34781`](https://github.com/python-gitlab/python-gitlab/commit/8c347813e7aaf26a33fe5ae4ae73448beebfbc6c))
2727
2907
 
2728
2908
  * test: increase client coverage ([`00aec96`](https://github.com/python-gitlab/python-gitlab/commit/00aec96ed0b60720362c6642b416567ff39aef09))
2729
2909
 
2730
- * test: add more tests for RequiredOptional ([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
2731
-
2732
2910
  * test(cli): improve coverage for custom actions ([`7327f78`](https://github.com/python-gitlab/python-gitlab/commit/7327f78073caa2fb8aaa6bf0e57b38dd7782fa57))
2733
2911
 
2734
2912
  * test(gitlab): increase unit test coverage ([`df072e1`](https://github.com/python-gitlab/python-gitlab/commit/df072e130aa145a368bbdd10be98208a25100f89))
@@ -2859,7 +3037,6 @@ feat(client): introduce `iterator=True` and deprecate `as_list=False` in `list()
2859
3037
 
2860
3038
  docs: use `as_list=False` or `all=True` in Getting started ([`5ae18d0`](https://github.com/python-gitlab/python-gitlab/commit/5ae18d08aa11a01347514b43db8470bfd65fd534))
2861
3039
 
2862
-
2863
3040
  ## v3.5.0 (2022-05-28)
2864
3041
 
2865
3042
  ### Chore
@@ -2886,6 +3063,12 @@ call it `flake8` to be more precise. ([`78b4f99`](https://github.com/python-gitl
2886
3063
 
2887
3064
  * chore(deps): update dependency pylint to v2.13.8 ([`b235bb0`](https://github.com/python-gitlab/python-gitlab/commit/b235bb00f3c09be5bb092a5bb7298e7ca55f2366))
2888
3065
 
3066
+ * chore: exclude `build/` directory from mypy check
3067
+
3068
+ The `build/` directory is created by the tox environment
3069
+ `twine-check`. When the `build/` directory exists `mypy` will have an
3070
+ error. ([`989a12b`](https://github.com/python-gitlab/python-gitlab/commit/989a12b79ac7dff8bf0d689f36ccac9e3494af01))
3071
+
2889
3072
  * chore: add `cz` to default tox environment list and skip_missing_interpreters
2890
3073
 
2891
3074
  Add the `cz` (`comittizen`) check by default.
@@ -2894,12 +3077,6 @@ Set skip_missing_interpreters = True so that when a user runs tox and
2894
3077
  doesn't have a specific version of Python it doesn't mark it as an
2895
3078
  error. ([`ba8c052`](https://github.com/python-gitlab/python-gitlab/commit/ba8c0522dc8a116e7a22c42e21190aa205d48253))
2896
3079
 
2897
- * chore: exclude `build/` directory from mypy check
2898
-
2899
- The `build/` directory is created by the tox environment
2900
- `twine-check`. When the `build/` directory exists `mypy` will have an
2901
- error. ([`989a12b`](https://github.com/python-gitlab/python-gitlab/commit/989a12b79ac7dff8bf0d689f36ccac9e3494af01))
2902
-
2903
3080
  * chore(deps): update dependency types-requests to v2.27.25 ([`d6ea47a`](https://github.com/python-gitlab/python-gitlab/commit/d6ea47a175c17108e5388213abd59c3e7e847b02))
2904
3081
 
2905
3082
  * chore(ci): replace commitlint with commitizen ([`b8d15fe`](https://github.com/python-gitlab/python-gitlab/commit/b8d15fed0740301617445e5628ab76b6f5b8baeb))
@@ -3016,7 +3193,6 @@ chore(deps): update dependency types-requests to v2.27.25 ([`04e0d24`](https://g
3016
3193
 
3017
3194
  chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://github.com/python-gitlab/python-gitlab/commit/79b903d24bf518b67c7da9ead2cdaec3c3f67f88))
3018
3195
 
3019
-
3020
3196
  ## v3.4.0 (2022-04-28)
3021
3197
 
3022
3198
  ### Chore
@@ -3037,10 +3213,10 @@ chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://g
3037
3213
 
3038
3214
  * chore(deps): update typing dependencies ([`d27cc6a`](https://github.com/python-gitlab/python-gitlab/commit/d27cc6a1219143f78aad7e063672c7442e15672e))
3039
3215
 
3040
- * chore(deps): update dependency pylint to v2.13.5 ([`5709675`](https://github.com/python-gitlab/python-gitlab/commit/570967541ecd46bfb83461b9d2c95bb0830a84fa))
3041
-
3042
3216
  * chore(deps): update pre-commit hook pycqa/pylint to v2.13.5 ([`17d5c6c`](https://github.com/python-gitlab/python-gitlab/commit/17d5c6c3ba26f8b791ec4571726c533f5bbbde7d))
3043
3217
 
3218
+ * chore(deps): update dependency pylint to v2.13.5 ([`5709675`](https://github.com/python-gitlab/python-gitlab/commit/570967541ecd46bfb83461b9d2c95bb0830a84fa))
3219
+
3044
3220
  * chore(deps): update codecov/codecov-action action to v3 ([`292e91b`](https://github.com/python-gitlab/python-gitlab/commit/292e91b3cbc468c4a40ed7865c3c98180c1fe864))
3045
3221
 
3046
3222
  * chore(deps): update dependency types-setuptools to v57.4.12 ([`6551353`](https://github.com/python-gitlab/python-gitlab/commit/65513538ce60efdde80e5e0667b15739e6d90ac1))
@@ -3067,6 +3243,10 @@ chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://g
3067
3243
 
3068
3244
  ### Feature
3069
3245
 
3246
+ * feat(objects): support getting project/group deploy tokens by id ([`fcd37fe`](https://github.com/python-gitlab/python-gitlab/commit/fcd37feff132bd5b225cde9d5f9c88e62b3f1fd6))
3247
+
3248
+ * feat(user): support getting user SSH key by id ([`6f93c05`](https://github.com/python-gitlab/python-gitlab/commit/6f93c0520f738950a7c67dbeca8d1ac8257e2661))
3249
+
3070
3250
  * feat: emit a warning when using a `list()` method returns max
3071
3251
 
3072
3252
  A common cause of issues filed and questions raised is that a user
@@ -3078,20 +3258,16 @@ To help with this we now emit a warning when the result from a
3078
3258
  `per_page` value) and the user is not using either `all=True`,
3079
3259
  `all=False`, `as_list=False`, or `page=X`. ([`1339d64`](https://github.com/python-gitlab/python-gitlab/commit/1339d645ce58a2e1198b898b9549ba5917b1ff12))
3080
3260
 
3081
- * feat(objects): support getting project/group deploy tokens by id ([`fcd37fe`](https://github.com/python-gitlab/python-gitlab/commit/fcd37feff132bd5b225cde9d5f9c88e62b3f1fd6))
3082
-
3083
- * feat(user): support getting user SSH key by id ([`6f93c05`](https://github.com/python-gitlab/python-gitlab/commit/6f93c0520f738950a7c67dbeca8d1ac8257e2661))
3084
-
3085
3261
  * feat(api): re-add topic delete endpoint
3086
3262
 
3087
3263
  This reverts commit e3035a799a484f8d6c460f57e57d4b59217cd6de. ([`d1d96bd`](https://github.com/python-gitlab/python-gitlab/commit/d1d96bda5f1c6991c8ea61dca8f261e5b74b5ab6))
3088
3264
 
3089
3265
  ### Fix
3090
3266
 
3091
- * fix: add ChunkedEncodingError to list of retryable exceptions ([`7beb20f`](https://github.com/python-gitlab/python-gitlab/commit/7beb20ff7b7b85fb92fc6b647d9c1bdb7568f27c))
3092
-
3093
3267
  * fix: avoid passing redundant arguments to API ([`3431887`](https://github.com/python-gitlab/python-gitlab/commit/34318871347b9c563d01a13796431c83b3b1d58c))
3094
3268
 
3269
+ * fix: add ChunkedEncodingError to list of retryable exceptions ([`7beb20f`](https://github.com/python-gitlab/python-gitlab/commit/7beb20ff7b7b85fb92fc6b647d9c1bdb7568f27c))
3270
+
3095
3271
  * fix(cli): add missing filters for project commit list ([`149d244`](https://github.com/python-gitlab/python-gitlab/commit/149d2446fcc79b31d3acde6e6d51adaf37cbb5d3))
3096
3272
 
3097
3273
  * fix: add 52x range to retry transient failures and tests ([`c3ef1b5`](https://github.com/python-gitlab/python-gitlab/commit/c3ef1b5c1eaf1348a18d753dbf7bda3c129e3262))
@@ -3192,7 +3368,6 @@ chore(deps): update dependency pylint to v2.13.3 ([`5498f9e`](https://github.com
3192
3368
 
3193
3369
  chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitlab/python-gitlab/commit/f942e65ad6e0ab911de1ee32b4f720cf061e3dec))
3194
3370
 
3195
-
3196
3371
  ## v3.3.0 (2022-03-28)
3197
3372
 
3198
3373
  ### Chore
@@ -3231,6 +3406,10 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
3231
3406
 
3232
3407
  * chore(deps): update dependency mypy to v0.940 ([`dd11084`](https://github.com/python-gitlab/python-gitlab/commit/dd11084dd281e270a480b338aba88b27b991e58e))
3233
3408
 
3409
+ * chore(deps): update black to v22 ([`3f84f1b`](https://github.com/python-gitlab/python-gitlab/commit/3f84f1bb805691b645fac2d1a41901abefccb17e))
3410
+
3411
+ * chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v8 ([`5440780`](https://github.com/python-gitlab/python-gitlab/commit/544078068bc9d7a837e75435e468e4749f7375ac))
3412
+
3234
3413
  * chore(deps): update dependency types-setuptools to v57.4.10 ([`b37fc41`](https://github.com/python-gitlab/python-gitlab/commit/b37fc4153a00265725ca655bc4482714d6b02809))
3235
3414
 
3236
3415
  * chore(deps): update dependency pytest to v7 ([`ae8d70d`](https://github.com/python-gitlab/python-gitlab/commit/ae8d70de2ad3ceb450a33b33e189bb0a3f0ff563))
@@ -3241,10 +3420,6 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
3241
3420
 
3242
3421
  * chore(deps): update actions/setup-python action to v3 ([`7f845f7`](https://github.com/python-gitlab/python-gitlab/commit/7f845f7eade3c0cdceec6bfe7b3d087a8586edc5))
3243
3422
 
3244
- * chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v8 ([`5440780`](https://github.com/python-gitlab/python-gitlab/commit/544078068bc9d7a837e75435e468e4749f7375ac))
3245
-
3246
- * chore(deps): update black to v22 ([`3f84f1b`](https://github.com/python-gitlab/python-gitlab/commit/3f84f1bb805691b645fac2d1a41901abefccb17e))
3247
-
3248
3423
  * chore(deps): update dependency sphinx to v4.4.0 ([`425d161`](https://github.com/python-gitlab/python-gitlab/commit/425d1610ca19be775d9fdd857e61d8b4a4ae4db3))
3249
3424
 
3250
3425
  * chore(deps): update actions/checkout action to v3 ([`7333cbb`](https://github.com/python-gitlab/python-gitlab/commit/7333cbb65385145a14144119772a1854b41ea9d8))
@@ -3259,16 +3434,28 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
3259
3434
 
3260
3435
  ### Documentation
3261
3436
 
3437
+ * docs(chore): include docs .js files in sdist ([`3010b40`](https://github.com/python-gitlab/python-gitlab/commit/3010b407bc9baabc6cef071507e8fa47c0f1624d))
3438
+
3262
3439
  * docs: fix typo and incorrect style ([`2828b10`](https://github.com/python-gitlab/python-gitlab/commit/2828b10505611194bebda59a0e9eb41faf24b77b))
3263
3440
 
3264
3441
  * docs: add pipeline test report summary support ([`d78afb3`](https://github.com/python-gitlab/python-gitlab/commit/d78afb36e26f41d727dee7b0952d53166e0df850))
3265
3442
 
3266
- * docs(chore): include docs .js files in sdist ([`3010b40`](https://github.com/python-gitlab/python-gitlab/commit/3010b407bc9baabc6cef071507e8fa47c0f1624d))
3267
-
3268
3443
  ### Feature
3269
3444
 
3270
3445
  * feat(object): add pipeline test report summary support ([`a97e0cf`](https://github.com/python-gitlab/python-gitlab/commit/a97e0cf81b5394b3a2b73d927b4efe675bc85208))
3271
3446
 
3447
+ ### Fix
3448
+
3449
+ * fix: support RateLimit-Reset header
3450
+
3451
+ Some endpoints are not returning the `Retry-After` header when
3452
+ rate-limiting occurrs. In those cases use the `RateLimit-Reset` [1]
3453
+ header, if available.
3454
+
3455
+ Closes: #1889
3456
+
3457
+ [1] https://docs.gitlab.com/ee/user/admin_area/settings/user_and_ip_rate_limits.html#response-headers ([`4060146`](https://github.com/python-gitlab/python-gitlab/commit/40601463c78a6f5d45081700164899b2559b7e55))
3458
+
3272
3459
  ### Style
3273
3460
 
3274
3461
  * style: reformat for black v22 ([`93d4403`](https://github.com/python-gitlab/python-gitlab/commit/93d4403f0e46ed354cbcb133821d00642429532f))
@@ -3299,7 +3486,6 @@ chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to
3299
3486
 
3300
3487
  feat: add support for test report summary ([`7966584`](https://github.com/python-gitlab/python-gitlab/commit/79665841e5d998872876987e1c3f480e455951a4))
3301
3488
 
3302
-
3303
3489
  ## v3.2.0 (2022-02-28)
3304
3490
 
3305
3491
  ### Chore
@@ -3365,8 +3551,8 @@ Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`bb1f054`](https://gith
3365
3551
 
3366
3552
  * docs: revert "chore: add temporary banner for v3" (#1864)
3367
3553
 
3368
- This reverts commit a349793307e3a975bb51f864b48e5e9825f70182.
3369
-
3554
+ This reverts commit a349793307e3a975bb51f864b48e5e9825f70182.
3555
+
3370
3556
  Co-authored-by: Wadim Klincov <wadim.klincov@siemens.com> ([`7a13b9b`](https://github.com/python-gitlab/python-gitlab/commit/7a13b9bfa4aead6c731f9a92e0946dba7577c61b))
3371
3557
 
3372
3558
  ### Feature
@@ -3381,16 +3567,6 @@ Co-authored-by: Wadim Klincov <wadim.klincov@siemens.com> ([`7a13b9b`](htt
3381
3567
 
3382
3568
  ### Fix
3383
3569
 
3384
- * fix: support RateLimit-Reset header
3385
-
3386
- Some endpoints are not returning the `Retry-After` header when
3387
- rate-limiting occurrs. In those cases use the `RateLimit-Reset` [1]
3388
- header, if available.
3389
-
3390
- Closes: #1889
3391
-
3392
- [1] https://docs.gitlab.com/ee/user/admin_area/settings/user_and_ip_rate_limits.html#response-headers ([`4060146`](https://github.com/python-gitlab/python-gitlab/commit/40601463c78a6f5d45081700164899b2559b7e55))
3393
-
3394
3570
  * fix(services): use slug for id_attr instead of custom methods ([`e30f39d`](https://github.com/python-gitlab/python-gitlab/commit/e30f39dff5726266222b0f56c94f4ccfe38ba527))
3395
3571
 
3396
3572
  * fix: remove custom `delete` method for labels
@@ -3463,7 +3639,6 @@ fix: remove custom `delete` method for labels ([`0ab0fc1`](https://github.com/py
3463
3639
 
3464
3640
  chore: create new ArrayAttribute class ([`7646360`](https://github.com/python-gitlab/python-gitlab/commit/7646360d6b622b1008917116dc4f64ced32f4057))
3465
3641
 
3466
-
3467
3642
  ## v3.1.1 (2022-01-28)
3468
3643
 
3469
3644
  ### Chore
@@ -3604,7 +3779,6 @@ docs(changelog): add missing changelog items ([`a1dbe86`](https://github.com/pyt
3604
3779
 
3605
3780
  chore(tests): use method `projects.transfer()` ([`48b06a9`](https://github.com/python-gitlab/python-gitlab/commit/48b06a95ad08c5d937d602357895b09d5dcecd9e))
3606
3781
 
3607
-
3608
3782
  ## v3.1.0 (2022-01-14)
3609
3783
 
3610
3784
  ### Chore
@@ -3660,22 +3834,22 @@ Add logging to `tests/functional/conftest.py` to have a better
3660
3834
  understanding of what is happening during a test run which is useful
3661
3835
  when trying to troubleshoot issues in the CI. ([`a1ac9ae`](https://github.com/python-gitlab/python-gitlab/commit/a1ac9ae63828ca2012289817410d420da066d8df))
3662
3836
 
3663
- * chore(docs): use admonitions consistently ([`55c67d1`](https://github.com/python-gitlab/python-gitlab/commit/55c67d1fdb81dcfdf8f398b3184fc59256af513d))
3664
-
3665
3837
  * chore: fix functional test failure if config present
3666
3838
 
3667
3839
  Previously c8256a5933d745f70c7eea0a7d6230b51bac0fbc was done to fix
3668
3840
  this but it missed two other failures. ([`c9ed3dd`](https://github.com/python-gitlab/python-gitlab/commit/c9ed3ddc1253c828dc877dcd55000d818c297ee7))
3669
3841
 
3670
- * chore: fix missing comma
3671
-
3672
- There was a missing comma which meant the strings were concatenated
3673
- instead of being two separate strings. ([`7c59fac`](https://github.com/python-gitlab/python-gitlab/commit/7c59fac12fe69a1080cc227512e620ac5ae40b13))
3842
+ * chore(docs): use admonitions consistently ([`55c67d1`](https://github.com/python-gitlab/python-gitlab/commit/55c67d1fdb81dcfdf8f398b3184fc59256af513d))
3674
3843
 
3675
3844
  * chore(dist): add docs *.md files to sdist
3676
3845
 
3677
3846
  build_sphinx to fail due to setup.cfg warning-is-error ([`d9457d8`](https://github.com/python-gitlab/python-gitlab/commit/d9457d860ae7293ca218ab25e9501b0f796caa57))
3678
3847
 
3848
+ * chore: fix missing comma
3849
+
3850
+ There was a missing comma which meant the strings were concatenated
3851
+ instead of being two separate strings. ([`7c59fac`](https://github.com/python-gitlab/python-gitlab/commit/7c59fac12fe69a1080cc227512e620ac5ae40b13))
3852
+
3679
3853
  * chore: add a stale workflow
3680
3854
 
3681
3855
  Use the stale action to close issues and pull-requests with no
@@ -3691,6 +3865,13 @@ https://github.com/actions/stale
3691
3865
 
3692
3866
  Closes: #1649 ([`2c036a9`](https://github.com/python-gitlab/python-gitlab/commit/2c036a992c9d7fdf6ccf0d3132d9b215c6d197f5))
3693
3867
 
3868
+ * chore: add functional test of mergerequest.get()
3869
+
3870
+ Add a functional test of test mergerequest.get() and
3871
+ mergerequest.get(..., lazy=True)
3872
+
3873
+ Closes: #1425 ([`a92b55b`](https://github.com/python-gitlab/python-gitlab/commit/a92b55b81eb3586e4144f9332796c94747bf9cfe))
3874
+
3694
3875
  * chore: add temporary banner for v3 ([`a349793`](https://github.com/python-gitlab/python-gitlab/commit/a349793307e3a975bb51f864b48e5e9825f70182))
3695
3876
 
3696
3877
  ### Ci
@@ -3727,8 +3908,6 @@ See https://docs.gitlab.com/ee/api/group_access_tokens.html ([`c01b7c4`](https:/
3727
3908
 
3728
3909
  ### Fix
3729
3910
 
3730
- * fix(cli): add missing list filters for environments ([`6f64d40`](https://github.com/python-gitlab/python-gitlab/commit/6f64d4098ed4a890838c6cf43d7a679e6be4ac6c))
3731
-
3732
3911
  * fix: use url-encoded ID in all paths
3733
3912
 
3734
3913
  Make sure all usage of the ID in the URL path is encoded. Normally it
@@ -3768,6 +3947,8 @@ Closes: #848
3768
3947
  [1] https://docs.gitlab.com/ee/api/members.html#list-all-members-of-a-group-or-project-including-inherited-and-invited-members
3769
3948
  [2] https://docs.gitlab.com/ee/api/members.html#get-a-member-of-a-group-or-project-including-inherited-and-invited-members ([`755e0a3`](https://github.com/python-gitlab/python-gitlab/commit/755e0a32e8ca96a3a3980eb7d7346a1a899ad58b))
3770
3949
 
3950
+ * fix(cli): add missing list filters for environments ([`6f64d40`](https://github.com/python-gitlab/python-gitlab/commit/6f64d4098ed4a890838c6cf43d7a679e6be4ac6c))
3951
+
3771
3952
  * fix(api): services: add missing `lazy` parameter
3772
3953
 
3773
3954
  Commit 8da0b758c589f608a6ae4eeb74b3f306609ba36d added the `lazy`
@@ -3917,7 +4098,6 @@ chore: add a stale workflow ([`9896340`](https://github.com/python-gitlab/python
3917
4098
 
3918
4099
  chore: add functional test of mergerequest.get() ([`bc6c6e6`](https://github.com/python-gitlab/python-gitlab/commit/bc6c6e69e81db5f52afd422d8c8ec0c57a385acd))
3919
4100
 
3920
-
3921
4101
  ## v3.0.0 (2022-01-05)
3922
4102
 
3923
4103
  ### Breaking
@@ -3994,8 +4174,8 @@ the more complete protected branches API. ([`9656a16`](https://github.com/python
3994
4174
 
3995
4175
  * fix(api): replace deprecated attribute in delete_in_bulk() (#1536)
3996
4176
 
3997
- BREAKING CHANGE: The deprecated `name_regex` attribute has been removed
3998
- in favor of `name_regex_delete`.
4177
+ BREAKING CHANGE: The deprecated `name_regex` attribute has been removed
4178
+ in favor of `name_regex_delete`.
3999
4179
  (see https://gitlab.com/gitlab-org/gitlab/-/commit/ce99813cf54) ([`c59fbdb`](https://github.com/python-gitlab/python-gitlab/commit/c59fbdb0e9311fa84190579769e3c5c6aeb07fe5))
4000
4180
 
4001
4181
  * fix(objects): rename confusing `to_project_id` argument
@@ -4062,13 +4242,6 @@ Closes: #1477 ([`d56a434`](https://github.com/python-gitlab/python-gitlab/commit
4062
4242
 
4063
4243
  * chore: fix typo in MR documentation ([`2254222`](https://github.com/python-gitlab/python-gitlab/commit/2254222094d218b31a6151049c7a43e19c593a97))
4064
4244
 
4065
- * chore: add functional test of mergerequest.get()
4066
-
4067
- Add a functional test of test mergerequest.get() and
4068
- mergerequest.get(..., lazy=True)
4069
-
4070
- Closes: #1425 ([`a92b55b`](https://github.com/python-gitlab/python-gitlab/commit/a92b55b81eb3586e4144f9332796c94747bf9cfe))
4071
-
4072
4245
  * chore(deps): update dependency argcomplete to v2 ([`c6d7e9a`](https://github.com/python-gitlab/python-gitlab/commit/c6d7e9aaddda2f39262b695bb98ea4d90575fcce))
4073
4246
 
4074
4247
  * chore(deps): update dependency requests to v2.27.0 ([`f8c3d00`](https://github.com/python-gitlab/python-gitlab/commit/f8c3d009db3aca004bbd64894a795ee01378cd26))
@@ -4118,13 +4291,6 @@ When running with docker-compose on Ubuntu 20.04 I got the error:
4118
4291
  Changing the version in the docker-compose.yml file fro '3' to '3.5'
4119
4292
  resolved the issue. ([`79321aa`](https://github.com/python-gitlab/python-gitlab/commit/79321aa0e33f0f4bd2ebcdad47769a1a6e81cba8))
4120
4293
 
4121
- * chore: add and document optional parameters for get MR
4122
-
4123
- Add and document (some of the) optional parameters that can be done
4124
- for a `project.merge_requests.get()`
4125
-
4126
- Closes #1775 ([`bfa3dbe`](https://github.com/python-gitlab/python-gitlab/commit/bfa3dbe516cfa8824b720ba4c52dd05054a855d7))
4127
-
4128
4294
  * chore: generate artifacts for the docs build in the CI
4129
4295
 
4130
4296
  When building the docs store the created documentation as an artifact
@@ -4138,11 +4304,14 @@ reviewing changes to the documentation.
4138
4304
  See https://github.com/actions/upload-artifact for more information on
4139
4305
  how this works. ([`85b43ae`](https://github.com/python-gitlab/python-gitlab/commit/85b43ae4a96b72e2f29e36a0aca5321ed78f28d2))
4140
4306
 
4141
- * chore(deps): update pre-commit hook pycqa/flake8 to v4 ([`98a5592`](https://github.com/python-gitlab/python-gitlab/commit/98a5592ae7246bf927beb3300211007c0fadba2f))
4307
+ * chore: add and document optional parameters for get MR
4142
4308
 
4143
- * chore(deps): update pre-commit hook psf/black to v21 ([`b86e819`](https://github.com/python-gitlab/python-gitlab/commit/b86e819e6395a84755aaf42334b17567a1bed5fd))
4309
+ Add and document (some of the) optional parameters that can be done
4310
+ for a `project.merge_requests.get()`
4144
4311
 
4145
- * chore(deps): update pre-commit hook pycqa/isort to v5.10.1 ([`8ac4f4a`](https://github.com/python-gitlab/python-gitlab/commit/8ac4f4a2ba901de1ad809e4fc2fe787e37703a50))
4312
+ Closes #1775 ([`bfa3dbe`](https://github.com/python-gitlab/python-gitlab/commit/bfa3dbe516cfa8824b720ba4c52dd05054a855d7))
4313
+
4314
+ * chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v6 ([`fb9110b`](https://github.com/python-gitlab/python-gitlab/commit/fb9110b1849cea8fa5eddf56f1dbfc1c75f10ad9))
4146
4315
 
4147
4316
  * chore: remove '# type: ignore' for new mypy version
4148
4317
 
@@ -4152,7 +4321,11 @@ mypy 0.920 now understands the type of
4152
4321
 
4153
4322
  * chore(deps): update dependency mypy to v0.920 ([`a519b2f`](https://github.com/python-gitlab/python-gitlab/commit/a519b2ffe9c8a4bb42d6add5117caecc4bf6ec66))
4154
4323
 
4155
- * chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v6 ([`fb9110b`](https://github.com/python-gitlab/python-gitlab/commit/fb9110b1849cea8fa5eddf56f1dbfc1c75f10ad9))
4324
+ * chore(deps): update pre-commit hook pycqa/flake8 to v4 ([`98a5592`](https://github.com/python-gitlab/python-gitlab/commit/98a5592ae7246bf927beb3300211007c0fadba2f))
4325
+
4326
+ * chore(deps): update pre-commit hook psf/black to v21 ([`b86e819`](https://github.com/python-gitlab/python-gitlab/commit/b86e819e6395a84755aaf42334b17567a1bed5fd))
4327
+
4328
+ * chore(deps): update pre-commit hook pycqa/isort to v5.10.1 ([`8ac4f4a`](https://github.com/python-gitlab/python-gitlab/commit/8ac4f4a2ba901de1ad809e4fc2fe787e37703a50))
4156
4329
 
4157
4330
  * chore(ci): enable renovate for pre-commit ([`1ac4329`](https://github.com/python-gitlab/python-gitlab/commit/1ac432900d0f87bb83c77aa62757f8f819296e3e))
4158
4331
 
@@ -4160,14 +4333,14 @@ mypy 0.920 now understands the type of
4160
4333
 
4161
4334
  Closes #1764 ([`c80b3b7`](https://github.com/python-gitlab/python-gitlab/commit/c80b3b75aff53ae228ec05ddf1c1e61d91762846))
4162
4335
 
4163
- * chore(deps): update dependency sphinx to v4.3.2 ([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
4164
-
4165
4336
  * chore: add .env as a file that search tools should not ignore
4166
4337
 
4167
4338
  The `.env` file was not set as a file that should not be ignored by
4168
4339
  search tools. We want to have the search tools search any `.env`
4169
4340
  files. ([`c9318a9`](https://github.com/python-gitlab/python-gitlab/commit/c9318a9f73c532bee7ba81a41de1fb521ab25ced))
4170
4341
 
4342
+ * chore(deps): update dependency sphinx to v4.3.2 ([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
4343
+
4171
4344
  * chore(deps): update dependency types-requests to v2.26.2 ([`ac7e329`](https://github.com/python-gitlab/python-gitlab/commit/ac7e32989a1e7b217b448f57bf2943ff56531983))
4172
4345
 
4173
4346
  * chore: add Python 3.11 testing
@@ -4198,6 +4371,11 @@ ensure that the get methods are defined with the correct return type. ([`d27c50a
4198
4371
  If new new push is done to a pull-request, then cancel any already
4199
4372
  running github workflow jobs in order to conserve resources. ([`fd81569`](https://github.com/python-gitlab/python-gitlab/commit/fd8156991556706f776c508c373224b54ef4e14f))
4200
4373
 
4374
+ * chore: add running unit tests on windows/macos
4375
+
4376
+ Add running the unit tests on windows-latest and macos-latest with
4377
+ Python 3.10. ([`ad5d60c`](https://github.com/python-gitlab/python-gitlab/commit/ad5d60c305857a8e8c06ba4f6db788bf918bb63f))
4378
+
4201
4379
  * chore: fix pylint error "expression-not-assigned"
4202
4380
 
4203
4381
  Fix pylint error "expression-not-assigned" and remove check from the
@@ -4206,11 +4384,6 @@ disabled list.
4206
4384
  And I personally think it is much more readable now and is less lines
4207
4385
  of code. ([`a90eb23`](https://github.com/python-gitlab/python-gitlab/commit/a90eb23cb4903ba25d382c37ce1c0839642ba8fd))
4208
4386
 
4209
- * chore: add running unit tests on windows/macos
4210
-
4211
- Add running the unit tests on windows-latest and macos-latest with
4212
- Python 3.10. ([`ad5d60c`](https://github.com/python-gitlab/python-gitlab/commit/ad5d60c305857a8e8c06ba4f6db788bf918bb63f))
4213
-
4214
4387
  * chore: set pre-commit mypy args to empty list
4215
4388
 
4216
4389
  https://github.com/pre-commit/mirrors-mypy/blob/master/.pre-commit-hooks.yaml
@@ -4240,10 +4413,11 @@ changes to the code. ([`a86d049`](https://github.com/python-gitlab/python-gitlab
4240
4413
 
4241
4414
  * chore(deps): update dependency black to v21.12b0 ([`ab841b8`](https://github.com/python-gitlab/python-gitlab/commit/ab841b8c63183ca20b866818ab2f930a5643ba5f))
4242
4415
 
4243
- * chore: use constants from gitlab.const module
4416
+ * chore(docs): link to main, not master ([`af0cb4d`](https://github.com/python-gitlab/python-gitlab/commit/af0cb4d18b8bfbc0624ea2771d73544dc1b24b54))
4244
4417
 
4245
- Have code use constants from the gitlab.const module instead of from
4246
- the top-level gitlab module. ([`6b8067e`](https://github.com/python-gitlab/python-gitlab/commit/6b8067e668b6a37a19e07d84e9a0d2d2a99b4d31))
4418
+ * chore(docs): use builtin autodoc hints ([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
4419
+
4420
+ * chore(docs): load autodoc-typehints module ([`bd366ab`](https://github.com/python-gitlab/python-gitlab/commit/bd366ab9e4b552fb29f7a41564cc180a659bba2f))
4247
4421
 
4248
4422
  * chore: attempt to be more informative for missing attributes
4249
4423
 
@@ -4261,11 +4435,10 @@ Update the FAQ in the docs to add a section discussing the issue.
4261
4435
 
4262
4436
  Closes #1138 ([`1839c9e`](https://github.com/python-gitlab/python-gitlab/commit/1839c9e7989163a5cc9a201241942b7faca6e214))
4263
4437
 
4264
- * chore(docs): link to main, not master ([`af0cb4d`](https://github.com/python-gitlab/python-gitlab/commit/af0cb4d18b8bfbc0624ea2771d73544dc1b24b54))
4265
-
4266
- * chore(docs): use builtin autodoc hints ([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
4438
+ * chore: use constants from gitlab.const module
4267
4439
 
4268
- * chore(docs): load autodoc-typehints module ([`bd366ab`](https://github.com/python-gitlab/python-gitlab/commit/bd366ab9e4b552fb29f7a41564cc180a659bba2f))
4440
+ Have code use constants from the gitlab.const module instead of from
4441
+ the top-level gitlab module. ([`6b8067e`](https://github.com/python-gitlab/python-gitlab/commit/6b8067e668b6a37a19e07d84e9a0d2d2a99b4d31))
4269
4442
 
4270
4443
  * chore(tests): apply review suggestions ([`381c748`](https://github.com/python-gitlab/python-gitlab/commit/381c748415396e0fe54bb1f41a3303bab89aa065))
4271
4444
 
@@ -4305,25 +4478,6 @@ so remove installation of `types-toml`.
4305
4478
  To determine the test count the following command was run:
4306
4479
  $ tox -e py39 -- -k test_ensure_type_hints ([`a2f59f4`](https://github.com/python-gitlab/python-gitlab/commit/a2f59f4e3146b8871a9a1d66ee84295b44321ecb))
4307
4480
 
4308
- * chore(deps): update dependency types-setuptools to v57.4.3 ([`ec2c68b`](https://github.com/python-gitlab/python-gitlab/commit/ec2c68b0b41ac42a2bca61262a917a969cbcbd09))
4309
-
4310
- * chore(deps): update dependency black to v21 ([`5bca87c`](https://github.com/python-gitlab/python-gitlab/commit/5bca87c1e3499eab9b9a694c1f5d0d474ffaca39))
4311
-
4312
- * chore: have renovate upgrade black version (#1700)
4313
-
4314
- renovate is not upgrading the `black` package. There is an open
4315
- issue[1] about this.
4316
-
4317
- Also change .commitlintrc.json to allow 200 character footer lines in
4318
- the commit message. Otherwise would be forced to split the URL across
4319
- multiple lines making it un-clickable :(
4320
-
4321
- Use suggested work-arounds from:
4322
- https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
4323
- https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
4324
-
4325
- [1] https://github.com/renovatebot/renovate/issues/7167 ([`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
4326
-
4327
4481
  * chore: add type-hints to gitlab/v4/objects/files.py ([`0c22bd9`](https://github.com/python-gitlab/python-gitlab/commit/0c22bd921bc74f48fddd0ff7d5e7525086264d54))
4328
4482
 
4329
4483
  * chore: add type-hints to gitlab/v4/objects/labels.py ([`d04e557`](https://github.com/python-gitlab/python-gitlab/commit/d04e557fb09655a0433363843737e19d8e11c936))
@@ -4358,6 +4512,27 @@ breaks things.
4358
4512
  Now check in our auto-manager creation if our attribute is called
4359
4513
  'manager'. If so we ignore it. ([`9a451a8`](https://github.com/python-gitlab/python-gitlab/commit/9a451a892d37e0857af5c82c31a96d68ac161738))
4360
4514
 
4515
+ * chore(deps): update dependency types-setuptools to v57.4.3 ([`ec2c68b`](https://github.com/python-gitlab/python-gitlab/commit/ec2c68b0b41ac42a2bca61262a917a969cbcbd09))
4516
+
4517
+ * chore(deps): update dependency black to v21 ([`5bca87c`](https://github.com/python-gitlab/python-gitlab/commit/5bca87c1e3499eab9b9a694c1f5d0d474ffaca39))
4518
+
4519
+ * chore: enable mypy for tests/meta/* ([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
4520
+
4521
+ * chore: have renovate upgrade black version (#1700)
4522
+
4523
+ renovate is not upgrading the `black` package. There is an open
4524
+ issue[1] about this.
4525
+
4526
+ Also change .commitlintrc.json to allow 200 character footer lines in
4527
+ the commit message. Otherwise would be forced to split the URL across
4528
+ multiple lines making it un-clickable :(
4529
+
4530
+ Use suggested work-arounds from:
4531
+ https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
4532
+ https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
4533
+
4534
+ [1] https://github.com/renovatebot/renovate/issues/7167 ([`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
4535
+
4361
4536
  * chore: correct test_groups.py test
4362
4537
 
4363
4538
  The test was checking twice if the same group3 was not in the returned
@@ -4369,8 +4544,6 @@ list. ([`9c878a4`](https://github.com/python-gitlab/python-gitlab/commit/9c878a4
4369
4544
 
4370
4545
  * chore: add type-hints to gitlab/v4/objects/merge_request_approvals.py ([`cf3a99a`](https://github.com/python-gitlab/python-gitlab/commit/cf3a99a0c4cf3dc51e946bf29dc44c21b3be9dac))
4371
4546
 
4372
- * chore: enable mypy for tests/meta/* ([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
4373
-
4374
4547
  * chore: check setup.py with mypy
4375
4548
 
4376
4549
  Prior commit 06184daafd5010ba40bb39a0768540b7e98bd171 fixed the
@@ -4470,6 +4643,10 @@ GetMixin. ([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b7
4470
4643
 
4471
4644
  * chore(objects): remove non-existing trigger ownership method ([`8dc7f40`](https://github.com/python-gitlab/python-gitlab/commit/8dc7f40044ce8c478769f25a87c5ceb1aa76b595))
4472
4645
 
4646
+ * chore: add type-hints to gitlab/v4/objects/users.py
4647
+
4648
+ Adding type-hints to gitlab/v4/objects/users.py ([`88988e3`](https://github.com/python-gitlab/python-gitlab/commit/88988e3059ebadd3d1752db60c2d15b7e60e7c46))
4649
+
4473
4650
  * chore(deps): update dependency types-requests to v2.25.9 ([`e3912ca`](https://github.com/python-gitlab/python-gitlab/commit/e3912ca69c2213c01cd72728fd669724926fd57a))
4474
4651
 
4475
4652
  * chore: fix type-check issue shown by new requests-types
@@ -4477,10 +4654,10 @@ GetMixin. ([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b7
4477
4654
  types-requests==2.25.9 changed a type-hint. Update code to handle this
4478
4655
  change. ([`0ee9aa4`](https://github.com/python-gitlab/python-gitlab/commit/0ee9aa4117b1e0620ba3cade10ccb94944754071))
4479
4656
 
4480
- * chore(deps): update dependency sphinx to v4 ([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
4481
-
4482
4657
  * chore(deps): update python docker tag to v3.10 ([`b3d6d91`](https://github.com/python-gitlab/python-gitlab/commit/b3d6d91fed4e5b8424e1af9cadb2af5b6cd8162f))
4483
4658
 
4659
+ * chore(deps): update dependency sphinx to v4 ([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
4660
+
4484
4661
  * chore: clean up install docs ([`a5d8b7f`](https://github.com/python-gitlab/python-gitlab/commit/a5d8b7f2a9cf019c82bef1a166d2dc24f93e1992))
4485
4662
 
4486
4663
  * chore: attempt to fix flaky functional test
@@ -4501,10 +4678,6 @@ Any type-annotation that annotates it to be of type *Manager (with the
4501
4678
  exception of RESTManager) will cause the manager to be created on the
4502
4679
  object. ([`d8de4dc`](https://github.com/python-gitlab/python-gitlab/commit/d8de4dc373dc608be6cf6ba14a2acc7efd3fa7a7))
4503
4680
 
4504
- * chore: add type-hints to gitlab/v4/objects/users.py
4505
-
4506
- Adding type-hints to gitlab/v4/objects/users.py ([`88988e3`](https://github.com/python-gitlab/python-gitlab/commit/88988e3059ebadd3d1752db60c2d15b7e60e7c46))
4507
-
4508
4681
  * chore: improve type-hinting for managers
4509
4682
 
4510
4683
  The 'managers' are dynamically created. This unfortunately means that
@@ -4543,12 +4716,12 @@ Rename:
4543
4716
 
4544
4717
  * docs: use annotations for return types ([`79e785e`](https://github.com/python-gitlab/python-gitlab/commit/79e785e765f4219fe6001ef7044235b82c5e7754))
4545
4718
 
4719
+ * docs: only use type annotations for documentation ([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
4720
+
4546
4721
  * docs: update docs to use gitlab.const for constants
4547
4722
 
4548
4723
  Update the docs to use gitlab.const to access constants. ([`b3b0b5f`](https://github.com/python-gitlab/python-gitlab/commit/b3b0b5f1da5b9da9bf44eac33856ed6eadf37dd6))
4549
4724
 
4550
- * docs: only use type annotations for documentation ([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
4551
-
4552
4725
  * docs: add links to the GitLab API docs
4553
4726
 
4554
4727
  Add links to the GitLab API docs for merge_requests.py as it contains
@@ -4617,17 +4790,21 @@ Closes #1744 ([`a246ce8`](https://github.com/python-gitlab/python-gitlab/commit/
4617
4790
 
4618
4791
  * feat: add delete on package_file object ([`124667b`](https://github.com/python-gitlab/python-gitlab/commit/124667bf16b1843ae52e65a3cc9b8d9235ff467e))
4619
4792
 
4793
+ * feat(api): add support for epic notes
4794
+
4795
+ Added support for notes on group epics
4796
+
4797
+ Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`7f4edb5`](https://github.com/python-gitlab/python-gitlab/commit/7f4edb53e9413f401c859701d8c3bac4a40706af))
4798
+
4620
4799
  * feat: add support for `projects.groups.list()`
4621
4800
 
4622
4801
  Add support for `projects.groups.list()` endpoint.
4623
4802
 
4624
4803
  Closes #1717 ([`68ff595`](https://github.com/python-gitlab/python-gitlab/commit/68ff595967a5745b369a93d9d18fef48b65ebedb))
4625
4804
 
4626
- * feat(api): add support for epic notes
4627
-
4628
- Added support for notes on group epics
4805
+ * feat(api): add merge trains
4629
4806
 
4630
- Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`7f4edb5`](https://github.com/python-gitlab/python-gitlab/commit/7f4edb53e9413f401c859701d8c3bac4a40706af))
4807
+ Add support for merge trains ([`fd73a73`](https://github.com/python-gitlab/python-gitlab/commit/fd73a738b429be0a2642d5b777d5e56a4c928787))
4631
4808
 
4632
4809
  * feat(api): add project milestone promotion
4633
4810
 
@@ -4635,10 +4812,6 @@ Adds promotion to Project Milestones
4635
4812
 
4636
4813
  Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`f068520`](https://github.com/python-gitlab/python-gitlab/commit/f0685209f88d1199873c1f27d27f478706908fd3))
4637
4814
 
4638
- * feat(api): add merge trains
4639
-
4640
- Add support for merge trains ([`fd73a73`](https://github.com/python-gitlab/python-gitlab/commit/fd73a738b429be0a2642d5b777d5e56a4c928787))
4641
-
4642
4815
  * feat(api): add merge request approval state
4643
4816
 
4644
4817
  Add support for merge request approval state ([`f41b093`](https://github.com/python-gitlab/python-gitlab/commit/f41b0937aec5f4a5efba44155cc2db77c7124e5e))
@@ -4685,8 +4858,8 @@ Closes #1686 ([`cb824a4`](https://github.com/python-gitlab/python-gitlab/commit/
4685
4858
 
4686
4859
  * fix(api): delete invalid 'project-runner get' command (#1628)
4687
4860
 
4688
- * fix(api): delete 'group-runner get' and 'group-runner delete' commands
4689
-
4861
+ * fix(api): delete 'group-runner get' and 'group-runner delete' commands
4862
+
4690
4863
  Co-authored-by: Léo GATELLIER <git@leogatellier.fr> ([`905781b`](https://github.com/python-gitlab/python-gitlab/commit/905781bed2afa33634b27842a42a077a160cffb8))
4691
4864
 
4692
4865
  * fix(build): do not package tests in wheel ([`969dccc`](https://github.com/python-gitlab/python-gitlab/commit/969dccc084e833331fcd26c2a12ddaf448575ab4))
@@ -4993,7 +5166,6 @@ docs: correct documented return type ([`557c7d2`](https://github.com/python-gitl
4993
5166
 
4994
5167
  feat: allow global retry_transient_errors ([`d98d948`](https://github.com/python-gitlab/python-gitlab/commit/d98d948f997e973a42a8a21dfdbba0b435a602df))
4995
5168
 
4996
-
4997
5169
  ## v2.10.1 (2021-08-28)
4998
5170
 
4999
5171
  ### Chore
@@ -5048,7 +5220,6 @@ docs(mergerequests): gl.mergerequests.list documentation was misleading ([`8e277
5048
5220
 
5049
5221
  fix(mixins): improve deprecation warning ([`e2fdfbb`](https://github.com/python-gitlab/python-gitlab/commit/e2fdfbb02516360d56d3b7a88a3ef245faf37941))
5050
5222
 
5051
-
5052
5223
  ## v2.10.0 (2021-07-28)
5053
5224
 
5054
5225
  ### Chore
@@ -5106,17 +5277,16 @@ Signed-off-by: Matej Focko <mfocko@redhat.com> ([`a9924f4`](https://github
5106
5277
 
5107
5278
  feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](https://github.com/python-gitlab/python-gitlab/commit/85713bbbecdcec577a72749d2e495f823791b00f))
5108
5279
 
5109
-
5110
5280
  ## v2.9.0 (2021-06-28)
5111
5281
 
5112
5282
  ### Chore
5113
5283
 
5114
5284
  * chore: skip EE test case in functional tests ([`953f207`](https://github.com/python-gitlab/python-gitlab/commit/953f207466c53c28a877f2a88da9160acef40643))
5115
5285
 
5116
- * chore(deps): update dependency mypy to v0.910 ([`02a56f3`](https://github.com/python-gitlab/python-gitlab/commit/02a56f397880b3939b8e737483ac6f95f809ac9c))
5117
-
5118
5286
  * chore(deps): update dependency types-requests to v2 ([`a81a926`](https://github.com/python-gitlab/python-gitlab/commit/a81a926a0979e3272abfb2dc40d2f130d3a0ba5a))
5119
5287
 
5288
+ * chore(deps): update dependency mypy to v0.910 ([`02a56f3`](https://github.com/python-gitlab/python-gitlab/commit/02a56f397880b3939b8e737483ac6f95f809ac9c))
5289
+
5120
5290
  * chore(deps): update precommit hook pycqa/isort to v5.9.1 ([`c57ffe3`](https://github.com/python-gitlab/python-gitlab/commit/c57ffe3958c1475c8c79bb86fc4b101d82350d75))
5121
5291
 
5122
5292
  * chore(deps): update dependency isort to v5.9.1 ([`0479dba`](https://github.com/python-gitlab/python-gitlab/commit/0479dba8a26d2588d9616dbeed351b0256f4bf87))
@@ -5131,9 +5301,14 @@ feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](ht
5131
5301
 
5132
5302
  * chore(deps): update dependency types-pyyaml to v0.1.8 ([`e566767`](https://github.com/python-gitlab/python-gitlab/commit/e56676730d3407efdf4255b3ca7ee13b7c36eb53))
5133
5303
 
5304
+ * chore(deps): update dependency types-requests to v0.1.11 ([`6ba629c`](https://github.com/python-gitlab/python-gitlab/commit/6ba629c71a4cf8ced7060580a6e6643738bc4186))
5305
+
5134
5306
  * chore(deps): update dependency mypy to v0.902 ([`19c9736`](https://github.com/python-gitlab/python-gitlab/commit/19c9736de06d032569020697f15ea9d3e2b66120))
5135
5307
 
5136
- * chore(deps): update dependency types-requests to v0.1.11 ([`6ba629c`](https://github.com/python-gitlab/python-gitlab/commit/6ba629c71a4cf8ced7060580a6e6643738bc4186))
5308
+ * chore: add new required type packages for mypy
5309
+
5310
+ New version of mypy flagged errors for missing types. Install the
5311
+ recommended type-* packages that resolve the issues. ([`a7371e1`](https://github.com/python-gitlab/python-gitlab/commit/a7371e19520325a725813e328004daecf9259dd2))
5137
5312
 
5138
5313
  * chore: add type-hints to gitlab/v4/objects/projects.py
5139
5314
 
@@ -5149,14 +5324,16 @@ Adding type-hints to gitlab/v4/objects/projects.py ([`872dd6d`](https://github.c
5149
5324
 
5150
5325
  ### Feature
5151
5326
 
5327
+ * feat(api): add group hooks ([`4a7e9b8`](https://github.com/python-gitlab/python-gitlab/commit/4a7e9b86aa348b72925bce3af1e5d988b8ce3439))
5328
+
5152
5329
  * feat(release): allow to update release
5153
5330
 
5154
5331
  Release API now supports PUT. ([`b4c4787`](https://github.com/python-gitlab/python-gitlab/commit/b4c4787af54d9db6c1f9e61154be5db9d46de3dd))
5155
5332
 
5156
- * feat(api): add group hooks ([`4a7e9b8`](https://github.com/python-gitlab/python-gitlab/commit/4a7e9b86aa348b72925bce3af1e5d988b8ce3439))
5157
-
5158
5333
  * feat(api): remove responsibility for API inconsistencies for MR reviewers ([`3d985ee`](https://github.com/python-gitlab/python-gitlab/commit/3d985ee8cdd5d27585678f8fbb3eb549818a78eb))
5159
5334
 
5335
+ * feat(api): add support for creating/editing reviewers in project merge requests ([`676d1f6`](https://github.com/python-gitlab/python-gitlab/commit/676d1f6565617a28ee84eae20e945f23aaf3d86f))
5336
+
5160
5337
  * feat(api): add MR pipeline manager in favor of pipelines() method ([`954357c`](https://github.com/python-gitlab/python-gitlab/commit/954357c49963ef51945c81c41fd4345002f9fb98))
5161
5338
 
5162
5339
  ### Test
@@ -5207,15 +5384,11 @@ chore: add new required type packages for mypy ([`5446423`](https://github.com/p
5207
5384
 
5208
5385
  chore: add type-hints to gitlab/v4/objects/projects.py ([`8e6aaf5`](https://github.com/python-gitlab/python-gitlab/commit/8e6aaf552ac44c21c70f902e5bdf1a2f631e347c))
5209
5386
 
5210
-
5211
5387
  ## v2.8.0 (2021-06-10)
5212
5388
 
5213
5389
  ### Chore
5214
5390
 
5215
- * chore: add new required type packages for mypy
5216
-
5217
- New version of mypy flagged errors for missing types. Install the
5218
- recommended type-* packages that resolve the issues. ([`a7371e1`](https://github.com/python-gitlab/python-gitlab/commit/a7371e19520325a725813e328004daecf9259dd2))
5391
+ * chore(ci): use admin PAT for release workflow ([`d175d41`](https://github.com/python-gitlab/python-gitlab/commit/d175d416d5d94f4806f4262e1f11cfee99fb0135))
5219
5392
 
5220
5393
  * chore: sync create and update attributes for Projects
5221
5394
 
@@ -5232,7 +5405,11 @@ Closes: #1497 ([`0044bd2`](https://github.com/python-gitlab/python-gitlab/commit
5232
5405
 
5233
5406
  * chore: add missing linters to pre-commit and pin versions ([`85bbd1a`](https://github.com/python-gitlab/python-gitlab/commit/85bbd1a5db5eff8a8cea63b2b192aae66030423d))
5234
5407
 
5235
- * chore(ci): use admin PAT for release workflow ([`d175d41`](https://github.com/python-gitlab/python-gitlab/commit/d175d416d5d94f4806f4262e1f11cfee99fb0135))
5408
+ * chore: add type-hints to gitlab/v4/cli.py
5409
+
5410
+ * Add type-hints to gitlab/v4/cli.py
5411
+ * Add required type-hints to other files based on adding type-hints
5412
+ to gitlab/v4/cli.py ([`2673af0`](https://github.com/python-gitlab/python-gitlab/commit/2673af0c09a7c5669d8f62c3cc42f684a9693a0f))
5236
5413
 
5237
5414
  * chore: add missing optional create parameter for approval_rules
5238
5415
 
@@ -5245,12 +5422,6 @@ https://docs.gitlab.com/ee/api/merge_request_approvals.html#create-project-level
5245
5422
 
5246
5423
  Co-authored-by: John Villalovos <john@sodarock.com> ([`a11623b`](https://github.com/python-gitlab/python-gitlab/commit/a11623b1aa6998e6520f3975f0f3f2613ceee5fb))
5247
5424
 
5248
- * chore: add type-hints to gitlab/v4/cli.py
5249
-
5250
- * Add type-hints to gitlab/v4/cli.py
5251
- * Add required type-hints to other files based on adding type-hints
5252
- to gitlab/v4/cli.py ([`2673af0`](https://github.com/python-gitlab/python-gitlab/commit/2673af0c09a7c5669d8f62c3cc42f684a9693a0f))
5253
-
5254
5425
  * chore(ci): ignore .python-version from pyenv ([`149953d`](https://github.com/python-gitlab/python-gitlab/commit/149953dc32c28fe413c9f3a0066575caeab12bc8))
5255
5426
 
5256
5427
  * chore: apply suggestions ([`fe7d19d`](https://github.com/python-gitlab/python-gitlab/commit/fe7d19de5aeba675dcb06621cf36ab4169391158))
@@ -5272,13 +5443,13 @@ built-in function issubclass()
5272
5443
 
5273
5444
  Switch to using issubclass() ([`81f6386`](https://github.com/python-gitlab/python-gitlab/commit/81f63866593a0486b03a4383d87ef7bc01f4e45f))
5274
5445
 
5275
- * chore: correct a type-hint ([`046607c`](https://github.com/python-gitlab/python-gitlab/commit/046607cf7fd95c3d25f5af9383fdf10a5bba42c1))
5276
-
5277
5446
  * chore: move 'gitlab/tests/' dir to 'tests/unit/'
5278
5447
 
5279
5448
  Move the 'gitlab/tests/' directory to 'tests/unit/' so we have all the
5280
5449
  tests located under the 'tests/' directory. ([`1ac0722`](https://github.com/python-gitlab/python-gitlab/commit/1ac0722bc086b18c070132a0eb53747bbdf2ce0a))
5281
5450
 
5451
+ * chore: correct a type-hint ([`046607c`](https://github.com/python-gitlab/python-gitlab/commit/046607cf7fd95c3d25f5af9383fdf10a5bba42c1))
5452
+
5282
5453
  * chore: rename 'tools/functional/' to 'tests/functional/'
5283
5454
 
5284
5455
  Rename the 'tools/functional/' directory to 'tests/functional/'
@@ -5335,15 +5506,24 @@ https://pycqa.github.io/isort/ ([`dda646e`](https://github.com/python-gitlab/pyt
5335
5506
 
5336
5507
  * chore(deps): update dependency docker-compose to v1.29.2 ([`fc241e1`](https://github.com/python-gitlab/python-gitlab/commit/fc241e1ffa995417a969354e37d8fefc21bb4621))
5337
5508
 
5338
- * chore(ci): ignore debug and type_checking in coverage ([`885b608`](https://github.com/python-gitlab/python-gitlab/commit/885b608194a55bd60ef2a2ad180c5caa8f15f8d2))
5339
-
5340
5509
  * chore(ci): automate releases ([`0ef497e`](https://github.com/python-gitlab/python-gitlab/commit/0ef497e458f98acee36529e8bda2b28b3310de69))
5341
5510
 
5342
- * chore(docs): fix import order for readthedocs build ([`c3de1fb`](https://github.com/python-gitlab/python-gitlab/commit/c3de1fb8ec17f5f704a19df4a56a668570e6fe0a))
5343
-
5344
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.3-ce.0 ([`f0b52d8`](https://github.com/python-gitlab/python-gitlab/commit/f0b52d829db900e98ab93883b20e6bd8062089c6))
5511
+ * chore(ci): ignore debug and type_checking in coverage ([`885b608`](https://github.com/python-gitlab/python-gitlab/commit/885b608194a55bd60ef2a2ad180c5caa8f15f8d2))
5345
5512
 
5346
- * chore: have black run at the top-level
5513
+ * chore: mypy: Disallow untyped definitions
5514
+
5515
+ Be more strict and don't allow untyped definitions on the files we
5516
+ check.
5517
+
5518
+ Also this adds type-hints for two of the decorators so that now
5519
+ functions/methods decorated by them will have their types be revealed
5520
+ correctly. ([`6aef2da`](https://github.com/python-gitlab/python-gitlab/commit/6aef2dadf715e601ae9c302be0ad9958345a97f2))
5521
+
5522
+ * chore(docs): fix import order for readthedocs build ([`c3de1fb`](https://github.com/python-gitlab/python-gitlab/commit/c3de1fb8ec17f5f704a19df4a56a668570e6fe0a))
5523
+
5524
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.3-ce.0 ([`f0b52d8`](https://github.com/python-gitlab/python-gitlab/commit/f0b52d829db900e98ab93883b20e6bd8062089c6))
5525
+
5526
+ * chore: have black run at the top-level
5347
5527
 
5348
5528
  This will ensure everything is formatted with black, including
5349
5529
  setup.py. ([`429d6c5`](https://github.com/python-gitlab/python-gitlab/commit/429d6c55602f17431201de17e63cdb2c68ac5d73))
@@ -5355,16 +5535,15 @@ gitlab directory. ([`ab343ef`](https://github.com/python-gitlab/python-gitlab/co
5355
5535
 
5356
5536
  * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.2-ce.0 ([`434d15d`](https://github.com/python-gitlab/python-gitlab/commit/434d15d1295187d1970ebef01f4c8a44a33afa31))
5357
5537
 
5358
- * chore: mypy: Disallow untyped definitions
5538
+ * chore: remove commented-out print ([`0357c37`](https://github.com/python-gitlab/python-gitlab/commit/0357c37fb40fb6aef175177fab98d0eadc26b667))
5359
5539
 
5360
- Be more strict and don't allow untyped definitions on the files we
5361
- check.
5540
+ * chore: make Get.*Mixin._optional_get_attrs always present
5362
5541
 
5363
- Also this adds type-hints for two of the decorators so that now
5364
- functions/methods decorated by them will have their types be revealed
5365
- correctly. ([`6aef2da`](https://github.com/python-gitlab/python-gitlab/commit/6aef2dadf715e601ae9c302be0ad9958345a97f2))
5542
+ Always create GetMixin/GetWithoutIdMixin._optional_get_attrs attribute
5543
+ with a default value of tuple()
5366
5544
 
5367
- * chore: remove commented-out print ([`0357c37`](https://github.com/python-gitlab/python-gitlab/commit/0357c37fb40fb6aef175177fab98d0eadc26b667))
5545
+ This way we don't need to use hasattr() and we will know the type of
5546
+ the attribute. ([`3c1a0b3`](https://github.com/python-gitlab/python-gitlab/commit/3c1a0b3ba1f529fab38829c9d355561fd36f4f5d))
5368
5547
 
5369
5548
  ### Documentation
5370
5549
 
@@ -5386,8 +5565,6 @@ feat(objects): add support for Group wikis ([`74f5e62`](https://github.com/pytho
5386
5565
 
5387
5566
  * feat(objects): add support for generic packages API ([`79d88bd`](https://github.com/python-gitlab/python-gitlab/commit/79d88bde9e5e6c33029e4a9f26c97404e6a7a874))
5388
5567
 
5389
- * feat(api): add support for creating/editing reviewers in project merge requests ([`676d1f6`](https://github.com/python-gitlab/python-gitlab/commit/676d1f6565617a28ee84eae20e945f23aaf3d86f))
5390
-
5391
5568
  * feat(api): add deployment mergerequests interface ([`fbbc0d4`](https://github.com/python-gitlab/python-gitlab/commit/fbbc0d400015d7366952a66e4401215adff709f0))
5392
5569
 
5393
5570
  * feat(objects): support all issues statistics endpoints ([`f731707`](https://github.com/python-gitlab/python-gitlab/commit/f731707f076264ebea65afc814e4aca798970953))
@@ -5413,6 +5590,15 @@ type-hints.
5413
5590
 
5414
5591
  https://www.python.org/dev/peps/pep-0561/ ([`e4421ca`](https://github.com/python-gitlab/python-gitlab/commit/e4421caafeeb0236df19fe7b9233300727e1933b))
5415
5592
 
5593
+ * feat: add support for lists of integers to ListAttribute
5594
+
5595
+ Previously ListAttribute only support lists of integers. Now be more
5596
+ flexible and support lists of items which can be coerced into strings,
5597
+ for example integers.
5598
+
5599
+ This will help us fix issue #1407 by using ListAttribute for the
5600
+ 'iids' field. ([`115938b`](https://github.com/python-gitlab/python-gitlab/commit/115938b3e5adf9a2fb5ecbfb34d9c92bf788035e))
5601
+
5416
5602
  ### Fix
5417
5603
 
5418
5604
  * fix: catch invalid type used to initialize RESTObject
@@ -5451,12 +5637,12 @@ Related to: #1120 ([`cb6a3c6`](https://github.com/python-gitlab/python-gitlab/co
5451
5637
 
5452
5638
  * fix(cli): fix parsing CLI objects to classnames ([`4252070`](https://github.com/python-gitlab/python-gitlab/commit/42520705a97289ac895a6b110d34d6c115e45500))
5453
5639
 
5640
+ * fix(objects): allow lists for filters for in all objects ([`603a351`](https://github.com/python-gitlab/python-gitlab/commit/603a351c71196a7f516367fbf90519f9452f3c55))
5641
+
5454
5642
  * fix(objects): return server data in cancel/retry methods ([`9fed061`](https://github.com/python-gitlab/python-gitlab/commit/9fed06116bfe5df79e6ac5be86ae61017f9a2f57))
5455
5643
 
5456
5644
  * fix(objects): add missing group attributes ([`d20ff4f`](https://github.com/python-gitlab/python-gitlab/commit/d20ff4ff7427519c8abccf53e3213e8929905441))
5457
5645
 
5458
- * fix(objects): allow lists for filters for in all objects ([`603a351`](https://github.com/python-gitlab/python-gitlab/commit/603a351c71196a7f516367fbf90519f9452f3c55))
5459
-
5460
5646
  * fix: iids not working as a list in projects.issues.list()
5461
5647
 
5462
5648
  Set the 'iids' values as type ListAttribute so it will pass the list
@@ -5466,6 +5652,21 @@ Add a functional test.
5466
5652
 
5467
5653
  Closes: #1407 ([`45f806c`](https://github.com/python-gitlab/python-gitlab/commit/45f806c7a7354592befe58a76b7e33a6d5d0fe6e))
5468
5654
 
5655
+ * fix: add a check to ensure the MRO is correct
5656
+
5657
+ Add a check to ensure the MRO (Method Resolution Order) is correct for classes in
5658
+ gitlab.v4.objects when doing type-checking.
5659
+
5660
+ An example of an incorrect definition:
5661
+ class ProjectPipeline(RESTObject, RefreshMixin, ObjectDeleteMixin):
5662
+ ^^^^^^^^^^ This should be at the end.
5663
+
5664
+ Correct way would be:
5665
+ class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject):
5666
+ Correctly at the end ^^^^^^^^^^
5667
+
5668
+ Also fix classes which have the issue. ([`565d548`](https://github.com/python-gitlab/python-gitlab/commit/565d5488b779de19a720d7a904c6fc14c394a4b9))
5669
+
5469
5670
  ### Style
5470
5671
 
5471
5672
  * style: clean up test run config ([`dfa40c1`](https://github.com/python-gitlab/python-gitlab/commit/dfa40c1ef85992e85c1160587037e56778ab49c0))
@@ -5501,10 +5702,10 @@ duplicate tokens with the same value. ([`4c475ab`](https://github.com/python-git
5501
5702
 
5502
5703
  * test(cli): add more real class scenarios ([`8cf5031`](https://github.com/python-gitlab/python-gitlab/commit/8cf5031a2caf2f39ce920c5f80316cc774ba7a36))
5503
5704
 
5504
- * test(functional): add test for skip_groups list filter ([`a014774`](https://github.com/python-gitlab/python-gitlab/commit/a014774a6a2523b73601a1930c44ac259d03a50e))
5505
-
5506
5705
  * test(functional): start tracking functional test coverage ([`f875786`](https://github.com/python-gitlab/python-gitlab/commit/f875786ce338b329421f772b181e7183f0fcb333))
5507
5706
 
5707
+ * test(functional): add test for skip_groups list filter ([`a014774`](https://github.com/python-gitlab/python-gitlab/commit/a014774a6a2523b73601a1930c44ac259d03a50e))
5708
+
5508
5709
  ### Unknown
5509
5710
 
5510
5711
  * Merge pull request #1487 from JohnVillalovos/jlvillal/check_attrs
@@ -5667,20 +5868,8 @@ feat: add support for lists of integers to ListAttribute ([`dde01c7`](https://gi
5667
5868
 
5668
5869
  chore: make Get.*Mixin._optional_get_attrs always present ([`5b81d7d`](https://github.com/python-gitlab/python-gitlab/commit/5b81d7d25e5deefa4333098ebb5bc646fcee2c8d))
5669
5870
 
5670
-
5671
5871
  ## v2.7.1 (2021-04-26)
5672
5872
 
5673
- ### Feature
5674
-
5675
- * feat: add support for lists of integers to ListAttribute
5676
-
5677
- Previously ListAttribute only support lists of integers. Now be more
5678
- flexible and support lists of items which can be coerced into strings,
5679
- for example integers.
5680
-
5681
- This will help us fix issue #1407 by using ListAttribute for the
5682
- 'iids' field. ([`115938b`](https://github.com/python-gitlab/python-gitlab/commit/115938b3e5adf9a2fb5ecbfb34d9c92bf788035e))
5683
-
5684
5873
  ### Fix
5685
5874
 
5686
5875
  * fix(files): do not url-encode file paths twice ([`8e25cec`](https://github.com/python-gitlab/python-gitlab/commit/8e25cecce3c0a19884a8d231ee1a672b80e94398))
@@ -5691,22 +5880,11 @@ This will help us fix issue #1407 by using ListAttribute for the
5691
5880
 
5692
5881
  fix(files): do not url-encode filepaths twice ([`37af229`](https://github.com/python-gitlab/python-gitlab/commit/37af2296703a481721489a66c5fc554257e34527))
5693
5882
 
5694
-
5695
5883
  ## v2.7.0 (2021-04-25)
5696
5884
 
5697
5885
  ### Chore
5698
5886
 
5699
- * chore(objects): remove noisy deprecation warning for audit events
5700
-
5701
- It's mostly an internal thing anyway and can be removed in 3.0.0 ([`2953642`](https://github.com/python-gitlab/python-gitlab/commit/29536423e3e8866eda7118527a49b120fefb4065))
5702
-
5703
- * chore: make Get.*Mixin._optional_get_attrs always present
5704
-
5705
- Always create GetMixin/GetWithoutIdMixin._optional_get_attrs attribute
5706
- with a default value of tuple()
5707
-
5708
- This way we don't need to use hasattr() and we will know the type of
5709
- the attribute. ([`3c1a0b3`](https://github.com/python-gitlab/python-gitlab/commit/3c1a0b3ba1f529fab38829c9d355561fd36f4f5d))
5887
+ * chore: bump version to 2.7.0 ([`34c4052`](https://github.com/python-gitlab/python-gitlab/commit/34c4052327018279c9a75d6b849da74eccc8819b))
5710
5888
 
5711
5889
  * chore: make ListMixin._list_filters always present
5712
5890
 
@@ -5724,17 +5902,11 @@ None.
5724
5902
  This way we don't need to use hasattr() and we will know the type of
5725
5903
  the attribute. ([`6d55120`](https://github.com/python-gitlab/python-gitlab/commit/6d551208f4bc68d091a16323ae0d267fbb6003b6))
5726
5904
 
5727
- * chore: bump version to 2.7.0 ([`34c4052`](https://github.com/python-gitlab/python-gitlab/commit/34c4052327018279c9a75d6b849da74eccc8819b))
5728
-
5729
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.1-ce.0 ([`3088714`](https://github.com/python-gitlab/python-gitlab/commit/308871496041232f555cf4cb055bf7f4aaa22b23))
5730
-
5731
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.0-ce.0 ([`711896f`](https://github.com/python-gitlab/python-gitlab/commit/711896f20ff81826c58f1f86dfb29ad860e1d52a))
5905
+ * chore(objects): remove noisy deprecation warning for audit events
5732
5906
 
5733
- * chore: remove unused function sanitize_parameters()
5907
+ It's mostly an internal thing anyway and can be removed in 3.0.0 ([`2953642`](https://github.com/python-gitlab/python-gitlab/commit/29536423e3e8866eda7118527a49b120fefb4065))
5734
5908
 
5735
- The function sanitize_parameters() was used when the v3 API was in
5736
- use. Since v3 API support has been removed there are no more users of
5737
- this function. ([`443b934`](https://github.com/python-gitlab/python-gitlab/commit/443b93482e29fecc12fdbd2329427b37b05ba425))
5909
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.1-ce.0 ([`3088714`](https://github.com/python-gitlab/python-gitlab/commit/308871496041232f555cf4cb055bf7f4aaa22b23))
5738
5910
 
5739
5911
  * chore: fix F841 errors reported by flake8
5740
5912
 
@@ -5769,10 +5941,35 @@ Fixes to resolve errors for:
5769
5941
  https://www.flake8rules.com/rules/E742.html
5770
5942
  Do not define classes named 'I', 'O', or 'l' (E742) ([`380f227`](https://github.com/python-gitlab/python-gitlab/commit/380f227a1ecffd5e22ae7aefed95af3b5d830994))
5771
5943
 
5944
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.11.0-ce.0 ([`711896f`](https://github.com/python-gitlab/python-gitlab/commit/711896f20ff81826c58f1f86dfb29ad860e1d52a))
5945
+
5946
+ * chore: remove unused function sanitize_parameters()
5947
+
5948
+ The function sanitize_parameters() was used when the v3 API was in
5949
+ use. Since v3 API support has been removed there are no more users of
5950
+ this function. ([`443b934`](https://github.com/python-gitlab/python-gitlab/commit/443b93482e29fecc12fdbd2329427b37b05ba425))
5951
+
5772
5952
  * chore: fix typo in mr events ([`c5e6fb3`](https://github.com/python-gitlab/python-gitlab/commit/c5e6fb3bc74c509f35f973e291a7551b2b64dba5))
5773
5953
 
5774
5954
  * chore(config): allow simple commands without external script ([`91ffb8e`](https://github.com/python-gitlab/python-gitlab/commit/91ffb8e97e213d2f14340b952630875995ecedb2))
5775
5955
 
5956
+ * chore: make lint happy ([`7a7c9fd`](https://github.com/python-gitlab/python-gitlab/commit/7a7c9fd932def75a2f2c517482784e445d83881a))
5957
+
5958
+ * chore: make lint happy ([`b5f43c8`](https://github.com/python-gitlab/python-gitlab/commit/b5f43c83b25271f7aff917a9ce8826d39ff94034))
5959
+
5960
+ * chore: make lint happy ([`732e49c`](https://github.com/python-gitlab/python-gitlab/commit/732e49c6547c181de8cc56e93b30dc399e87091d))
5961
+
5962
+ * chore: add test ([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
5963
+
5964
+ * chore: remove usage of getattr()
5965
+
5966
+ Remove usage of getattr(self, "_update_uses_post", False)
5967
+
5968
+ Instead add it to class and set default value to False.
5969
+
5970
+ Add a tests that shows it is set to True for the
5971
+ ProjectMergeRequestApprovalManager and ProjectApprovalManager classes. ([`2afd18a`](https://github.com/python-gitlab/python-gitlab/commit/2afd18aa28742a3267742859a88be6912a803874))
5972
+
5776
5973
  * chore: have _create_attrs & _update_attrs be a namedtuple
5777
5974
 
5778
5975
  Convert _create_attrs and _update_attrs to use a NamedTuple
@@ -5781,27 +5978,20 @@ use the NamedTuple. ([`aee1f49`](https://github.com/python-gitlab/python-gitlab/
5781
5978
 
5782
5979
  * chore(deps): update dependency docker-compose to v1.29.1 ([`a89ec43`](https://github.com/python-gitlab/python-gitlab/commit/a89ec43ee7a60aacd1ac16f0f1f51c4abeaaefef))
5783
5980
 
5784
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.10.3-ce.0 ([`eabe091`](https://github.com/python-gitlab/python-gitlab/commit/eabe091945d3fe50472059431e599117165a815a))
5785
-
5786
5981
  * chore(deps): update dependency sphinx to v3.5.4 ([`a886d28`](https://github.com/python-gitlab/python-gitlab/commit/a886d28a893ac592b930ce54111d9ae4e90f458e))
5787
5982
 
5983
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.10.3-ce.0 ([`eabe091`](https://github.com/python-gitlab/python-gitlab/commit/eabe091945d3fe50472059431e599117165a815a))
5984
+
5788
5985
  * chore(deps): update gitlab/gitlab-ce docker tag to v13.10.1-ce.0 ([`1995361`](https://github.com/python-gitlab/python-gitlab/commit/1995361d9a767ad5af5338f4555fa5a3914c7374))
5789
5986
 
5987
+ * chore: import audit events in objects ([`35a190c`](https://github.com/python-gitlab/python-gitlab/commit/35a190cfa0902d6a298aba0a3135c5a99edfe0fa))
5988
+
5790
5989
  * chore(deps): update dependency docker-compose to v1.28.6 ([`46b05d5`](https://github.com/python-gitlab/python-gitlab/commit/46b05d525d0ade6f2aadb6db23fadc85ad48cd3d))
5791
5990
 
5792
5991
  * chore(deps): update gitlab/gitlab-ce docker tag to v13.10.0-ce.0 ([`5221e33`](https://github.com/python-gitlab/python-gitlab/commit/5221e33768fe1e49456d5df09e3f50b46933c8a4))
5793
5992
 
5794
5993
  * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.4-ce.0 ([`939f769`](https://github.com/python-gitlab/python-gitlab/commit/939f769e7410738da2e1c5d502caa765f362efdd))
5795
5994
 
5796
- * chore: remove usage of getattr()
5797
-
5798
- Remove usage of getattr(self, "_update_uses_post", False)
5799
-
5800
- Instead add it to class and set default value to False.
5801
-
5802
- Add a tests that shows it is set to True for the
5803
- ProjectMergeRequestApprovalManager and ProjectApprovalManager classes. ([`2afd18a`](https://github.com/python-gitlab/python-gitlab/commit/2afd18aa28742a3267742859a88be6912a803874))
5804
-
5805
5995
  * chore: fix package file test naming ([`8c80268`](https://github.com/python-gitlab/python-gitlab/commit/8c802680ae7d3bff13220a55efeed9ca79104b10))
5806
5996
 
5807
5997
  * chore: add _create_attrs & _update_attrs to RESTManager
@@ -5823,14 +6013,6 @@ simpler. We no longer have to do:
5823
6013
 
5824
6014
  And the type checker now understands the type. ([`924f83e`](https://github.com/python-gitlab/python-gitlab/commit/924f83eb4b5e160bd231efc38e2eea0231fa311f))
5825
6015
 
5826
- * chore: make lint happy ([`7a7c9fd`](https://github.com/python-gitlab/python-gitlab/commit/7a7c9fd932def75a2f2c517482784e445d83881a))
5827
-
5828
- * chore: make lint happy ([`b5f43c8`](https://github.com/python-gitlab/python-gitlab/commit/b5f43c83b25271f7aff917a9ce8826d39ff94034))
5829
-
5830
- * chore: make lint happy ([`732e49c`](https://github.com/python-gitlab/python-gitlab/commit/732e49c6547c181de8cc56e93b30dc399e87091d))
5831
-
5832
- * chore: import audit events in objects ([`35a190c`](https://github.com/python-gitlab/python-gitlab/commit/35a190cfa0902d6a298aba0a3135c5a99edfe0fa))
5833
-
5834
6016
  * chore: add type-hints for gitlab/mixins.py
5835
6017
 
5836
6018
  * Added type-hints for gitlab/mixins.py
@@ -5838,11 +6020,9 @@ And the type checker now understands the type. ([`924f83e`](https://github.com/p
5838
6020
  list-comprehension. mypy was not able to understand the previous
5839
6021
  code. Also list-comprehension is better :) ([`baea721`](https://github.com/python-gitlab/python-gitlab/commit/baea7215bbbe07c06b2ca0f97a1d3d482668d887))
5840
6022
 
5841
- * chore(deps): update dependency sphinx to v3.5.2 ([`9dee5c4`](https://github.com/python-gitlab/python-gitlab/commit/9dee5c420633bc27e1027344279c47862f7b16da))
5842
-
5843
- * chore: add test ([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
6023
+ * chore: add type hints to gitlab/base.py:RESTManager
5844
6024
 
5845
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.2-ce.0 ([`933ba52`](https://github.com/python-gitlab/python-gitlab/commit/933ba52475e5dae4cf7c569d8283e60eebd5b7b6))
6025
+ Add some additional type hints to gitlab/base.py ([`9c55593`](https://github.com/python-gitlab/python-gitlab/commit/9c55593ae6a7308176710665f8bec094d4cadc2e))
5846
6026
 
5847
6027
  * chore: put assert statements inside 'if TYPE_CHECKING:'
5848
6028
 
@@ -5855,9 +6035,9 @@ that it is not a requests.Response object. Theoretically the JSON
5855
6035
  could return as a list or dict, though at this time we are assuming a
5856
6036
  dict. ([`b562458`](https://github.com/python-gitlab/python-gitlab/commit/b562458f063c6be970f58c733fe01ec786798549))
5857
6037
 
5858
- * chore: add type hints to gitlab/base.py:RESTManager
6038
+ * chore(deps): update dependency sphinx to v3.5.2 ([`9dee5c4`](https://github.com/python-gitlab/python-gitlab/commit/9dee5c420633bc27e1027344279c47862f7b16da))
5859
6039
 
5860
- Add some additional type hints to gitlab/base.py ([`9c55593`](https://github.com/python-gitlab/python-gitlab/commit/9c55593ae6a7308176710665f8bec094d4cadc2e))
6040
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.2-ce.0 ([`933ba52`](https://github.com/python-gitlab/python-gitlab/commit/933ba52475e5dae4cf7c569d8283e60eebd5b7b6))
5861
6041
 
5862
6042
  * chore: del 'import *' in gitlab/v4/objects/project_access_tokens.py
5863
6043
 
@@ -5876,6 +6056,10 @@ to Tuple[str, ...] ([`907634f`](https://github.com/python-gitlab/python-gitlab/c
5876
6056
 
5877
6057
  * chore(api): move repository endpoints into separate module ([`1ed154c`](https://github.com/python-gitlab/python-gitlab/commit/1ed154c276fb2429d3b45058b9314d6391dbff02))
5878
6058
 
6059
+ * chore: add and fix some type-hints in gitlab/client.py
6060
+
6061
+ Was able to figure out better type-hints for gitlab/client.py ([`8837207`](https://github.com/python-gitlab/python-gitlab/commit/88372074a703910ba533237e6901e5af4c26c2bd))
6062
+
5879
6063
  * chore: add additional type-hints for gitlab/base.py
5880
6064
 
5881
6065
  Add type-hints for the variables which are set via self.__dict__
@@ -5883,9 +6067,9 @@ Add type-hints for the variables which are set via self.__dict__
5883
6067
  mypy doesn't see them when they are assigned via self.__dict__. So
5884
6068
  declare them in the class definition. ([`ad72ef3`](https://github.com/python-gitlab/python-gitlab/commit/ad72ef35707529058c7c680f334c285746b2f690))
5885
6069
 
5886
- * chore: add and fix some type-hints in gitlab/client.py
6070
+ * chore: add type-hints to gitlab/client.py
5887
6071
 
5888
- Was able to figure out better type-hints for gitlab/client.py ([`8837207`](https://github.com/python-gitlab/python-gitlab/commit/88372074a703910ba533237e6901e5af4c26c2bd))
6072
+ Adding some initial type-hints to gitlab/client.py ([`c9e5b4f`](https://github.com/python-gitlab/python-gitlab/commit/c9e5b4f6285ec94d467c7c10c45f4e2d5f656430))
5889
6073
 
5890
6074
  * chore: remove import of gitlab.utils from __init__.py
5891
6075
 
@@ -5895,27 +6079,21 @@ remove this but functional tests failed.
5895
6079
  Later we fixed the functional test that was failing, so now remove the
5896
6080
  unneeded import. ([`39b9183`](https://github.com/python-gitlab/python-gitlab/commit/39b918374b771f1d417196ca74fa04fe3968c412))
5897
6081
 
5898
- * chore: add type-hints to gitlab/client.py
5899
-
5900
- Adding some initial type-hints to gitlab/client.py ([`c9e5b4f`](https://github.com/python-gitlab/python-gitlab/commit/c9e5b4f6285ec94d467c7c10c45f4e2d5f656430))
5901
-
5902
6082
  * chore: improve type-hints for gitlab/base.py
5903
6083
 
5904
6084
  Determined the base class for obj_cls and adding type-hints for it. ([`cbd43d0`](https://github.com/python-gitlab/python-gitlab/commit/cbd43d0b4c95e46fc3f1cffddc6281eced45db4a))
5905
6085
 
5906
- * chore(deps): update dependency docker-compose to v1.28.5 ([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
5907
-
5908
6086
  * chore: add type-hints to gitlab/cli.py ([`10b7b83`](https://github.com/python-gitlab/python-gitlab/commit/10b7b836d31fbe36a7096454287004b46a7799dd))
5909
6087
 
5910
- * chore: add type-hints to gitlab/config.py ([`213e563`](https://github.com/python-gitlab/python-gitlab/commit/213e5631b1efce11f8a1419cd77df5d9da7ec0ac))
6088
+ * chore(deps): update dependency docker-compose to v1.28.5 ([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
5911
6089
 
5912
- * chore: add type hints to gitlab/utils.py ([`acd9294`](https://github.com/python-gitlab/python-gitlab/commit/acd9294fac52a636a016a7a3c14416b10573da28))
6090
+ * chore(deps): update wagoid/commitlint-github-action action to v3 ([`b3274cf`](https://github.com/python-gitlab/python-gitlab/commit/b3274cf93dfb8ae85e4a636a1ffbfa7c48f1c8f6))
5913
6091
 
5914
6092
  * chore: add type-hints to gitlab/const.py ([`a10a777`](https://github.com/python-gitlab/python-gitlab/commit/a10a7777caabd6502d04f3947a317b5b0ac869f2))
5915
6093
 
5916
- * chore(deps): update wagoid/commitlint-github-action action to v3 ([`b3274cf`](https://github.com/python-gitlab/python-gitlab/commit/b3274cf93dfb8ae85e4a636a1ffbfa7c48f1c8f6))
6094
+ * chore: add type hints to gitlab/utils.py ([`acd9294`](https://github.com/python-gitlab/python-gitlab/commit/acd9294fac52a636a016a7a3c14416b10573da28))
5917
6095
 
5918
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.1-ce.0 ([`f6fd995`](https://github.com/python-gitlab/python-gitlab/commit/f6fd99530d70f2a7626602fd9132b628bb968eab))
6096
+ * chore: add type-hints to gitlab/config.py ([`213e563`](https://github.com/python-gitlab/python-gitlab/commit/213e5631b1efce11f8a1419cd77df5d9da7ec0ac))
5919
6097
 
5920
6098
  * chore: remove usage of 'from ... import *'
5921
6099
 
@@ -5935,6 +6113,8 @@ After the change the output of:
5935
6113
  Is empty. Before many messages about unable to determine if it was a
5936
6114
  valid name. ([`c83eaf4`](https://github.com/python-gitlab/python-gitlab/commit/c83eaf4f395300471311a67be34d8d306c2b3861))
5937
6115
 
6116
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.1-ce.0 ([`f6fd995`](https://github.com/python-gitlab/python-gitlab/commit/f6fd99530d70f2a7626602fd9132b628bb968eab))
6117
+
5938
6118
  * chore: remove unused function _construct_url()
5939
6119
 
5940
6120
  The function _construct_url() was used by the v3 API. All usage of the
@@ -5959,8 +6139,6 @@ gitlab.exceptions
5959
6139
  A flake8 run no longer lists any undefined variables. Before it listed
5960
6140
  possible undefined variables. ([`bf0c8c5`](https://github.com/python-gitlab/python-gitlab/commit/bf0c8c5d123a7ad0587cb97c3aafd97ab2a9dabf))
5961
6141
 
5962
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.0-ce.0 ([`3aef19c`](https://github.com/python-gitlab/python-gitlab/commit/3aef19c51713bdc7ca0a84752da3ca22329fd4c4))
5963
-
5964
6142
  * chore: explicitly import gitlab.v4.objects/cli
5965
6143
 
5966
6144
  As we only support the v4 Gitlab API, explicitly import
@@ -5978,17 +6156,17 @@ according to https://docs.gitlab.com/ee/api/,
5978
6156
  "GraphQL co-exists with the current v4 REST API. If we have a v5 API, this
5979
6157
  should be a compatibility layer on top of GraphQL." ([`233b79e`](https://github.com/python-gitlab/python-gitlab/commit/233b79ed442aac66faf9eb4b0087ea126d6dffc5))
5980
6158
 
6159
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.9.0-ce.0 ([`3aef19c`](https://github.com/python-gitlab/python-gitlab/commit/3aef19c51713bdc7ca0a84752da3ca22329fd4c4))
6160
+
5981
6161
  * chore(objects): make Project refreshable
5982
6162
 
5983
6163
  Helps getting the real state of the project from the server. ([`958a6aa`](https://github.com/python-gitlab/python-gitlab/commit/958a6aa83ead3fb6be6ec61bdd894ad78346e7bd))
5984
6164
 
5985
- * chore(tests): remove unused URL segment ([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
5986
-
5987
6165
  * chore(deps): update dependency docker-compose to v1.28.4 ([`8938484`](https://github.com/python-gitlab/python-gitlab/commit/89384846445be668ca6c861f295297d048cae914))
5988
6166
 
5989
- * chore(deps): update dependency docker-compose to v1.28.3 ([`2358d48`](https://github.com/python-gitlab/python-gitlab/commit/2358d48acbe1c378377fb852b41ec497217d2555))
6167
+ * chore(tests): remove unused URL segment ([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
5990
6168
 
5991
- * chore(deps): update dependency sphinx to v3.5.1 ([`f916f09`](https://github.com/python-gitlab/python-gitlab/commit/f916f09d3a9cac07246035066d4c184103037026))
6169
+ * chore(deps): update dependency docker-compose to v1.28.3 ([`2358d48`](https://github.com/python-gitlab/python-gitlab/commit/2358d48acbe1c378377fb852b41ec497217d2555))
5992
6170
 
5993
6171
  * chore: remove unused ALLOWED_KEYSET_ENDPOINTS variable
5994
6172
 
@@ -5999,6 +6177,8 @@ Then most of that commit was removed in commit
5999
6177
  e71fe16b47835aa4db2834e98c7ffc6bdec36723, but ALLOWED_KEYSET_ENDPOINTS
6000
6178
  was missed. ([`3d5d5d8`](https://github.com/python-gitlab/python-gitlab/commit/3d5d5d8b13fc8405e9ef3e14be1fd8bd32235221))
6001
6179
 
6180
+ * chore(deps): update dependency sphinx to v3.5.1 ([`f916f09`](https://github.com/python-gitlab/python-gitlab/commit/f916f09d3a9cac07246035066d4c184103037026))
6181
+
6002
6182
  * chore: remove Python 2 code
6003
6183
 
6004
6184
  httplib is a Python 2 library. It was renamed to http.client in Python
@@ -6039,6 +6219,10 @@ already exists and is useful but very easy to miss. ([`6ff67e7`](https://github.
6039
6219
 
6040
6220
  * feat(objects): add support for resource state events API ([`d4799c4`](https://github.com/python-gitlab/python-gitlab/commit/d4799c40bd12ed85d4bb834464fdb36c4dadcab6))
6041
6221
 
6222
+ * feat: option to add a helper to lookup token ([`8ecf559`](https://github.com/python-gitlab/python-gitlab/commit/8ecf55926f8e345960560e5c5dd6716199cfb0ec))
6223
+
6224
+ * feat(objects): add support for group audit events API ([`2a0fbdf`](https://github.com/python-gitlab/python-gitlab/commit/2a0fbdf9fe98da6c436230be47b0ddb198c7eca9))
6225
+
6042
6226
  * feat: add ProjectPackageFile
6043
6227
 
6044
6228
  Add ProjectPackageFile and the ability to list project package
@@ -6046,10 +6230,6 @@ package_files.
6046
6230
 
6047
6231
  Fixes #1372 ([`b9d469b`](https://github.com/python-gitlab/python-gitlab/commit/b9d469bc4e847ae0301be28a0c70019a7f6ab8b6))
6048
6232
 
6049
- * feat(objects): add support for group audit events API ([`2a0fbdf`](https://github.com/python-gitlab/python-gitlab/commit/2a0fbdf9fe98da6c436230be47b0ddb198c7eca9))
6050
-
6051
- * feat: option to add a helper to lookup token ([`8ecf559`](https://github.com/python-gitlab/python-gitlab/commit/8ecf55926f8e345960560e5c5dd6716199cfb0ec))
6052
-
6053
6233
  * feat(users): add follow/unfollow API ([`e456869`](https://github.com/python-gitlab/python-gitlab/commit/e456869d98a1b7d07e6f878a0d6a9719c1b10fd4))
6054
6234
 
6055
6235
  * feat(projects): add project access token api ([`1becef0`](https://github.com/python-gitlab/python-gitlab/commit/1becef0253804f119c8a4d0b8b1c53deb2f4d889))
@@ -6085,20 +6265,24 @@ to do this, but it is not exposed through this library.
6085
6265
 
6086
6266
  ### Fix
6087
6267
 
6088
- * fix: add a check to ensure the MRO is correct
6089
-
6090
- Add a check to ensure the MRO (Method Resolution Order) is correct for classes in
6091
- gitlab.v4.objects when doing type-checking.
6268
+ * fix: only append kwargs as query parameters
6092
6269
 
6093
- An example of an incorrect definition:
6094
- class ProjectPipeline(RESTObject, RefreshMixin, ObjectDeleteMixin):
6095
- ^^^^^^^^^^ This should be at the end.
6270
+ Some arguments to `http_request` were being read
6271
+ from kwargs, but kwargs is where this function
6272
+ creates query parameters from, by default. In
6273
+ the absence of a `query_parameters` param, the
6274
+ function would construct URLs with query
6275
+ parameters such as `retry_transient_errors=True`
6276
+ despite those parameters having no meaning to
6277
+ the API to which the request was sent.
6278
+
6279
+ This change names those arguments that are
6280
+ specific to `http_request` so that they do not
6281
+ end up as query parameters read from kwargs. ([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
6096
6282
 
6097
- Correct way would be:
6098
- class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject):
6099
- Correctly at the end ^^^^^^^^^^
6283
+ * fix: only add query_parameters to GitlabList once
6100
6284
 
6101
- Also fix classes which have the issue. ([`565d548`](https://github.com/python-gitlab/python-gitlab/commit/565d5488b779de19a720d7a904c6fc14c394a4b9))
6285
+ Fixes #1386 ([`ca2c3c9`](https://github.com/python-gitlab/python-gitlab/commit/ca2c3c9dee5dc61ea12af5b39d51b1606da32f9c))
6102
6286
 
6103
6287
  * fix: correct ProjectFile.decode() documentation
6104
6288
 
@@ -6121,11 +6305,7 @@ confirmation change (`skip_reconfirmation` = True), `MultipartEncoder`
6121
6305
  will try to encode everything except None and bytes. So it tries to encode bools.
6122
6306
  Casting bool's values to their stringified int representation fix it. ([`3ba27ff`](https://github.com/python-gitlab/python-gitlab/commit/3ba27ffb6ae995c27608f84eef0abe636e2e63da))
6123
6307
 
6124
- * fix: argument type was not a tuple as expected
6125
-
6126
- While adding type-hints mypy flagged this as an issue. The third
6127
- argument to register_custom_action is supposed to be a tuple. It was
6128
- being passed as a string rather than a tuple of strings. ([`062f8f6`](https://github.com/python-gitlab/python-gitlab/commit/062f8f6a917abc037714129691a845c16b070ff6))
6308
+ * fix(types): prevent __dir__ from producing duplicates ([`5bf7525`](https://github.com/python-gitlab/python-gitlab/commit/5bf7525d2d37968235514d1b93a403d037800652))
6129
6309
 
6130
6310
  * fix: correct some type-hints in gitlab/mixins.py
6131
6311
 
@@ -6140,26 +6320,25 @@ Main error was using '=' instead of ':'. For example:
6140
6320
 
6141
6321
  Resolved those issues. ([`8bd3124`](https://github.com/python-gitlab/python-gitlab/commit/8bd312404cf647674baea792547705ef1948043d))
6142
6322
 
6143
- * fix: only append kwargs as query parameters
6323
+ * fix: argument type was not a tuple as expected
6144
6324
 
6145
- Some arguments to `http_request` were being read
6146
- from kwargs, but kwargs is where this function
6147
- creates query parameters from, by default. In
6148
- the absence of a `query_parameters` param, the
6149
- function would construct URLs with query
6150
- parameters such as `retry_transient_errors=True`
6151
- despite those parameters having no meaning to
6152
- the API to which the request was sent.
6153
-
6154
- This change names those arguments that are
6155
- specific to `http_request` so that they do not
6156
- end up as query parameters read from kwargs. ([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
6325
+ While adding type-hints mypy flagged this as an issue. The third
6326
+ argument to register_custom_action is supposed to be a tuple. It was
6327
+ being passed as a string rather than a tuple of strings. ([`062f8f6`](https://github.com/python-gitlab/python-gitlab/commit/062f8f6a917abc037714129691a845c16b070ff6))
6157
6328
 
6158
- * fix: only add query_parameters to GitlabList once
6329
+ * fix: handling config value in _get_values_from_helper ([`9dfb4cd`](https://github.com/python-gitlab/python-gitlab/commit/9dfb4cd97e6eb5bbfc29935cbb190b70b739cf9f))
6159
6330
 
6160
- Fixes #1386 ([`ca2c3c9`](https://github.com/python-gitlab/python-gitlab/commit/ca2c3c9dee5dc61ea12af5b39d51b1606da32f9c))
6331
+ * fix: update doc for token helper ([`3ac6fa1`](https://github.com/python-gitlab/python-gitlab/commit/3ac6fa12b37dd33610ef2206ef4ddc3b20d9fd3f))
6161
6332
 
6162
- * fix(types): prevent __dir__ from producing duplicates ([`5bf7525`](https://github.com/python-gitlab/python-gitlab/commit/5bf7525d2d37968235514d1b93a403d037800652))
6333
+ * fix: let the homedir be expanded in path of helper ([`fc7387a`](https://github.com/python-gitlab/python-gitlab/commit/fc7387a0a6039bc58b2a741ac9b73d7068375be7))
6334
+
6335
+ * fix: make secret helper more user friendly ([`fc2798f`](https://github.com/python-gitlab/python-gitlab/commit/fc2798fc31a08997c049f609c19dd4ab8d75964e))
6336
+
6337
+ * fix: linting issues and test ([`b04dd2c`](https://github.com/python-gitlab/python-gitlab/commit/b04dd2c08b69619bb58832f40a4c4391e350a735))
6338
+
6339
+ * fix: better real life token lookup example ([`9ef8311`](https://github.com/python-gitlab/python-gitlab/commit/9ef83118efde3d0f35d73812ce8398be2c18ebff))
6340
+
6341
+ * fix(objects): add single get endpoint for instance audit events ([`c3f0a6f`](https://github.com/python-gitlab/python-gitlab/commit/c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060))
6163
6342
 
6164
6343
  * fix: checking if RESTManager._from_parent_attrs is set
6165
6344
 
@@ -6173,20 +6352,6 @@ So the checks using hasattr() were no longer valid.
6173
6352
  Update the checks to check if RESTManager._from_parent_attrs has a
6174
6353
  value. ([`8224b40`](https://github.com/python-gitlab/python-gitlab/commit/8224b4066e84720d7efed3b7891c47af73cc57ca))
6175
6354
 
6176
- * fix: handling config value in _get_values_from_helper ([`9dfb4cd`](https://github.com/python-gitlab/python-gitlab/commit/9dfb4cd97e6eb5bbfc29935cbb190b70b739cf9f))
6177
-
6178
- * fix: update doc for token helper ([`3ac6fa1`](https://github.com/python-gitlab/python-gitlab/commit/3ac6fa12b37dd33610ef2206ef4ddc3b20d9fd3f))
6179
-
6180
- * fix: let the homedir be expanded in path of helper ([`fc7387a`](https://github.com/python-gitlab/python-gitlab/commit/fc7387a0a6039bc58b2a741ac9b73d7068375be7))
6181
-
6182
- * fix: make secret helper more user friendly ([`fc2798f`](https://github.com/python-gitlab/python-gitlab/commit/fc2798fc31a08997c049f609c19dd4ab8d75964e))
6183
-
6184
- * fix(objects): add single get endpoint for instance audit events ([`c3f0a6f`](https://github.com/python-gitlab/python-gitlab/commit/c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060))
6185
-
6186
- * fix: linting issues and test ([`b04dd2c`](https://github.com/python-gitlab/python-gitlab/commit/b04dd2c08b69619bb58832f40a4c4391e350a735))
6187
-
6188
- * fix: better real life token lookup example ([`9ef8311`](https://github.com/python-gitlab/python-gitlab/commit/9ef83118efde3d0f35d73812ce8398be2c18ebff))
6189
-
6190
6355
  * fix: handle tags like debian/2%2.6-21 as identifiers
6191
6356
 
6192
6357
  Git refnames are relatively free-form and can contain all sort for
@@ -6638,7 +6803,6 @@ feat(api,cli): make user agent configurable ([`643454c`](https://github.com/pyth
6638
6803
 
6639
6804
  docs: switch from travis-ci.org to GitHub Actions ([`071d699`](https://github.com/python-gitlab/python-gitlab/commit/071d699f7e4bf7eb3aa49b78f9cc9e56a473e281))
6640
6805
 
6641
-
6642
6806
  ## v2.6.0 (2021-01-29)
6643
6807
 
6644
6808
  ### Chore
@@ -6685,18 +6849,20 @@ This ensures python-dotenv with expected behavior for .env processing ([`1f7a2ab
6685
6849
 
6686
6850
  There is no way to edit the raw commit ([`35e43c5`](https://github.com/python-gitlab/python-gitlab/commit/35e43c54cd282f06dde0d24326641646fc3fa29e))
6687
6851
 
6688
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.4.3-ce.0 ([`bc17889`](https://github.com/python-gitlab/python-gitlab/commit/bc178898776d2d61477ff773248217adfac81f56))
6689
-
6690
6852
  * chore(cli): remove python2 code ([`1030e0a`](https://github.com/python-gitlab/python-gitlab/commit/1030e0a7e13c4ec3fdc48b9010e9892833850db9))
6691
6853
 
6692
- * chore: apply suggestions ([`65ce026`](https://github.com/python-gitlab/python-gitlab/commit/65ce02675d9c9580860df91b41c3cf5e6bb8d318))
6693
-
6694
- * chore(deps): update python docker tag to v3.9 ([`1fc65e0`](https://github.com/python-gitlab/python-gitlab/commit/1fc65e072003a2d1ebc29d741e9cef1860b5ff78))
6854
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.4.3-ce.0 ([`bc17889`](https://github.com/python-gitlab/python-gitlab/commit/bc178898776d2d61477ff773248217adfac81f56))
6695
6855
 
6696
6856
  * chore: simplified search scope constants ([`16fc048`](https://github.com/python-gitlab/python-gitlab/commit/16fc0489b2fe24e0356e9092c9878210b7330a72))
6697
6857
 
6698
6858
  * chore: added docs for search scopes constants ([`7565bf0`](https://github.com/python-gitlab/python-gitlab/commit/7565bf059b240c9fffaf6959ee168a12d0fedd77))
6699
6859
 
6860
+ * chore: added constants for search API ([`8ef53d6`](https://github.com/python-gitlab/python-gitlab/commit/8ef53d6f6180440582d1cca305fd084c9eb70443))
6861
+
6862
+ * chore: apply suggestions ([`65ce026`](https://github.com/python-gitlab/python-gitlab/commit/65ce02675d9c9580860df91b41c3cf5e6bb8d318))
6863
+
6864
+ * chore(deps): update python docker tag to v3.9 ([`1fc65e0`](https://github.com/python-gitlab/python-gitlab/commit/1fc65e072003a2d1ebc29d741e9cef1860b5ff78))
6865
+
6700
6866
  * chore: use helper fixtures for test directories ([`40ec2f5`](https://github.com/python-gitlab/python-gitlab/commit/40ec2f528b885290fbb3e2d7ef0f5f8615219326))
6701
6867
 
6702
6868
  * chore: allow overriding docker-compose env vars for tag ([`27109ca`](https://github.com/python-gitlab/python-gitlab/commit/27109cad0d97114b187ce98ce77e4d7b0c7c3270))
@@ -6737,14 +6903,14 @@ work around this shortcoming. Until we know better. ([`f2cf467`](https://github.
6737
6903
 
6738
6904
  * docs: add Project Merge Request approval rule documentation ([`449fc26`](https://github.com/python-gitlab/python-gitlab/commit/449fc26ffa98ef5703d019154f37a4959816f607))
6739
6905
 
6740
- * docs(readme): also add hint to delete gitlab-runner-test
6741
-
6742
- Otherwise the whole testsuite will refuse to run ([`8894f2d`](https://github.com/python-gitlab/python-gitlab/commit/8894f2da81d885c1e788a3b21686212ad91d5bf2))
6743
-
6744
6906
  * docs(issues): add admin, project owner hint
6745
6907
 
6746
6908
  Closes #1101 ([`609c03b`](https://github.com/python-gitlab/python-gitlab/commit/609c03b7139db8af5524ebeb741fd5b003e17038))
6747
6909
 
6910
+ * docs(readme): also add hint to delete gitlab-runner-test
6911
+
6912
+ Otherwise the whole testsuite will refuse to run ([`8894f2d`](https://github.com/python-gitlab/python-gitlab/commit/8894f2da81d885c1e788a3b21686212ad91d5bf2))
6913
+
6748
6914
  * docs(projects): correct fork docs
6749
6915
 
6750
6916
  Closes #1126 ([`54921db`](https://github.com/python-gitlab/python-gitlab/commit/54921dbcf117f6b939e0c467738399be0d661a00))
@@ -6757,20 +6923,20 @@ Closes #1126 ([`54921db`](https://github.com/python-gitlab/python-gitlab/commit/
6757
6923
 
6758
6924
  * feat: support multipart uploads ([`2fa3004`](https://github.com/python-gitlab/python-gitlab/commit/2fa3004d9e34cc4b77fbd6bd89a15957898e1363))
6759
6925
 
6760
- * feat(tests): test label getter ([`a41af90`](https://github.com/python-gitlab/python-gitlab/commit/a41af902675a07cd4772bb122c152547d6d570f7))
6761
-
6762
6926
  * feat: add MINIMAL_ACCESS constant
6763
6927
 
6764
6928
  A "minimal access" access level was
6765
6929
  [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/220203) in
6766
6930
  GitLab 13.5. ([`49eb3ca`](https://github.com/python-gitlab/python-gitlab/commit/49eb3ca79172905bf49bab1486ecb91c593ea1d7))
6767
6931
 
6932
+ * feat(tests): test label getter ([`a41af90`](https://github.com/python-gitlab/python-gitlab/commit/a41af902675a07cd4772bb122c152547d6d570f7))
6933
+
6934
+ * feat: adds support for project merge request approval rules (#1199) ([`c6fbf39`](https://github.com/python-gitlab/python-gitlab/commit/c6fbf399ec5cbc92f995a5d61342f295be68bd79))
6935
+
6768
6936
  * feat: unit tests added ([`f37ebf5`](https://github.com/python-gitlab/python-gitlab/commit/f37ebf5fd792c8e8a973443a1df386fa77d1248f))
6769
6937
 
6770
6938
  * feat: added support for pipeline bridges ([`05cbdc2`](https://github.com/python-gitlab/python-gitlab/commit/05cbdc224007e9dda10fc2f6f7d63c82cf36dec0))
6771
6939
 
6772
- * feat: adds support for project merge request approval rules (#1199) ([`c6fbf39`](https://github.com/python-gitlab/python-gitlab/commit/c6fbf399ec5cbc92f995a5d61342f295be68bd79))
6773
-
6774
6940
  * feat(api): added wip filter param for merge requests ([`d6078f8`](https://github.com/python-gitlab/python-gitlab/commit/d6078f808bf19ef16cfebfaeabb09fbf70bfb4c7))
6775
6941
 
6776
6942
  * feat(api): added wip filter param for merge requests ([`aa6e80d`](https://github.com/python-gitlab/python-gitlab/commit/aa6e80d58d765102892fadb89951ce29d08e1dab))
@@ -6792,12 +6958,12 @@ Fixes #1155 ([`e1e0d8c`](https://github.com/python-gitlab/python-gitlab/commit/e
6792
6958
 
6793
6959
  * fix(cli): write binary data to stdout buffer ([`0733ec6`](https://github.com/python-gitlab/python-gitlab/commit/0733ec6cad5c11b470ce6bad5dc559018ff73b3c))
6794
6960
 
6795
- * fix(cli): add missing args for project lists ([`c73e237`](https://github.com/python-gitlab/python-gitlab/commit/c73e23747d24ffef3c1a2a4e5f4ae24252762a71))
6796
-
6797
6961
  * fix: docs changed using the consts ([`650b65c`](https://github.com/python-gitlab/python-gitlab/commit/650b65c389c686bcc9a9cef81b6ca2a509d8cad2))
6798
6962
 
6799
6963
  * fix: typo ([`9baa905`](https://github.com/python-gitlab/python-gitlab/commit/9baa90535b5a8096600f9aec96e528f4d2ac7d74))
6800
6964
 
6965
+ * fix(cli): add missing args for project lists ([`c73e237`](https://github.com/python-gitlab/python-gitlab/commit/c73e23747d24ffef3c1a2a4e5f4ae24252762a71))
6966
+
6801
6967
  * fix(api): add missing runner access_level param ([`92669f2`](https://github.com/python-gitlab/python-gitlab/commit/92669f2ef2af3cac1c5f06f9299975060cc5e64a))
6802
6968
 
6803
6969
  ### Refactor
@@ -6972,7 +7138,6 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.4-ce.0 ([`2a6801e`](htt
6972
7138
 
6973
7139
  chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](https://github.com/python-gitlab/python-gitlab/commit/769367c41d71610cc7d6a5eee67ebaaecb8b66bf))
6974
7140
 
6975
-
6976
7141
  ## v2.5.0 (2020-09-01)
6977
7142
 
6978
7143
  ### Chore
@@ -6981,10 +7146,10 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
6981
7146
 
6982
7147
  * chore(deps): update python docker tag to v3.8 ([`a8070f2`](https://github.com/python-gitlab/python-gitlab/commit/a8070f2d9a996e57104f29539069273774cf5493))
6983
7148
 
6984
- * chore(deps): update gitlab/gitlab-ce docker tag to v13.3.2-ce.0 ([`9fd778b`](https://github.com/python-gitlab/python-gitlab/commit/9fd778b4a7e92a7405ac2f05c855bafbc51dc6a8))
6985
-
6986
7149
  * chore(test): use pathlib for paths ([`5a56b6b`](https://github.com/python-gitlab/python-gitlab/commit/5a56b6b55f761940f80491eddcdcf17d37215cfd))
6987
7150
 
7151
+ * chore(deps): update gitlab/gitlab-ce docker tag to v13.3.2-ce.0 ([`9fd778b`](https://github.com/python-gitlab/python-gitlab/commit/9fd778b4a7e92a7405ac2f05c855bafbc51dc6a8))
7152
+
6988
7153
  * chore(ci): pin gitlab-ce version for renovate ([`cb79fb7`](https://github.com/python-gitlab/python-gitlab/commit/cb79fb72e899e65a1ad77ccd508f1a1baca30309))
6989
7154
 
6990
7155
  * chore(env): add pre-commit and commit-msg hooks ([`82070b2`](https://github.com/python-gitlab/python-gitlab/commit/82070b2d2ed99189aebb1d595430ad5567306c4c))
@@ -6993,16 +7158,16 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
6993
7158
 
6994
7159
  * chore: make latest black happy with existing code ([`6961479`](https://github.com/python-gitlab/python-gitlab/commit/696147922552a8e6ddda3a5b852ee2de6b983e37))
6995
7160
 
6996
- * chore: update tools dir for latest black version ([`f245ffb`](https://github.com/python-gitlab/python-gitlab/commit/f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa))
6997
-
6998
- * chore: make latest black happy with existing code ([`d299753`](https://github.com/python-gitlab/python-gitlab/commit/d2997530bc3355048143bc29580ef32fc21dac3d))
6999
-
7000
7161
  * chore: update tools dir for latest black version ([`c2806d8`](https://github.com/python-gitlab/python-gitlab/commit/c2806d8c0454a83dfdafd1bdbf7e10bb28d205e0))
7001
7162
 
7002
7163
  * chore: remove unnecessary import ([`f337b7a`](https://github.com/python-gitlab/python-gitlab/commit/f337b7ac43e49f9d3610235749b1e2a21731352d))
7003
7164
 
7004
7165
  * chore: make latest black happy with existing code ([`4039c8c`](https://github.com/python-gitlab/python-gitlab/commit/4039c8cfc6c7783270f0da1e235ef5d70b420ba9))
7005
7166
 
7167
+ * chore: update tools dir for latest black version ([`f245ffb`](https://github.com/python-gitlab/python-gitlab/commit/f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa))
7168
+
7169
+ * chore: make latest black happy with existing code ([`d299753`](https://github.com/python-gitlab/python-gitlab/commit/d2997530bc3355048143bc29580ef32fc21dac3d))
7170
+
7006
7171
  * chore: run unittest2pytest on all unit tests ([`11383e7`](https://github.com/python-gitlab/python-gitlab/commit/11383e70f74c70e6fe8a56f18b5b170db982f402))
7007
7172
 
7008
7173
  * chore: remove remnants of python2 imports ([`402566a`](https://github.com/python-gitlab/python-gitlab/commit/402566a665dfdf0862f15a7e59e4d804d1301c77))
@@ -7011,10 +7176,10 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
7011
7176
 
7012
7177
  * docs(variables): add docs for instance-level variables ([`ad4b87c`](https://github.com/python-gitlab/python-gitlab/commit/ad4b87cb3d6802deea971e6574ae9afe4f352e31))
7013
7178
 
7014
- * docs(packages): add examples for Packages API and cli usage ([`a47dfcd`](https://github.com/python-gitlab/python-gitlab/commit/a47dfcd9ded3a0467e83396f21e6dcfa232dfdd7))
7015
-
7016
7179
  * docs(api): add example for latest pipeline job artifacts ([`d20f022`](https://github.com/python-gitlab/python-gitlab/commit/d20f022a8fe29a6086d30aa7616aa1dac3e1bb17))
7017
7180
 
7181
+ * docs(packages): add examples for Packages API and cli usage ([`a47dfcd`](https://github.com/python-gitlab/python-gitlab/commit/a47dfcd9ded3a0467e83396f21e6dcfa232dfdd7))
7182
+
7018
7183
  * docs(cli): add examples for group-project list ([`af86dcd`](https://github.com/python-gitlab/python-gitlab/commit/af86dcdd28ee1b16d590af31672c838597e3f3ec))
7019
7184
 
7020
7185
  * docs: additional project file delete example
@@ -7025,14 +7190,14 @@ Showing how to delete without having to pull the file ([`9e94b75`](https://githu
7025
7190
 
7026
7191
  * feat(api): add support for instance variables ([`4492fc4`](https://github.com/python-gitlab/python-gitlab/commit/4492fc42c9f6e0031dd3f3c6c99e4c58d4f472ff))
7027
7192
 
7028
- * feat(api): add support for Packages API ([`71495d1`](https://github.com/python-gitlab/python-gitlab/commit/71495d127d30d2f4c00285485adae5454a590584))
7029
-
7030
- * feat(api): add endpoint for latest ref artifacts ([`b7a07fc`](https://github.com/python-gitlab/python-gitlab/commit/b7a07fca775b278b1de7d5cb36c8421b7d9bebb7))
7031
-
7032
7193
  * feat: add support to resource milestone events
7033
7194
 
7034
7195
  Fixes #1154 ([`88f8cc7`](https://github.com/python-gitlab/python-gitlab/commit/88f8cc78f97156d5888a9600bdb8721720563120))
7035
7196
 
7197
+ * feat(api): add endpoint for latest ref artifacts ([`b7a07fc`](https://github.com/python-gitlab/python-gitlab/commit/b7a07fca775b278b1de7d5cb36c8421b7d9bebb7))
7198
+
7199
+ * feat(api): add support for Packages API ([`71495d1`](https://github.com/python-gitlab/python-gitlab/commit/71495d127d30d2f4c00285485adae5454a590584))
7200
+
7036
7201
  * feat: add share/unshare group with group ([`7c6e541`](https://github.com/python-gitlab/python-gitlab/commit/7c6e541dc2642740a6ec2d7ed7921aca41446b37))
7037
7202
 
7038
7203
  ### Fix
@@ -7066,12 +7231,12 @@ Fixes #1146 ([`0078f89`](https://github.com/python-gitlab/python-gitlab/commit/0
7066
7231
 
7067
7232
  * test(api): add tests for variables API ([`66d108d`](https://github.com/python-gitlab/python-gitlab/commit/66d108de9665055921123476426fb6716c602496))
7068
7233
 
7069
- * test(packages): add tests for Packages API ([`7ea178b`](https://github.com/python-gitlab/python-gitlab/commit/7ea178bad398c8c2851a4584f4dca5b8adc89d29))
7070
-
7071
7234
  * test: add unit tests for resource milestone events API
7072
7235
 
7073
7236
  Fixes #1154 ([`1317f4b`](https://github.com/python-gitlab/python-gitlab/commit/1317f4b62afefcb2504472d5b5d8e24f39b0d86f))
7074
7237
 
7238
+ * test(packages): add tests for Packages API ([`7ea178b`](https://github.com/python-gitlab/python-gitlab/commit/7ea178bad398c8c2851a4584f4dca5b8adc89d29))
7239
+
7075
7240
  ### Unknown
7076
7241
 
7077
7242
  * Merge pull request #1170 from python-gitlab/chore/bump-to-2-5-0
@@ -7110,6 +7275,8 @@ chore(ci): use fixed black version ([`28aa17e`](https://github.com/python-gitlab
7110
7275
 
7111
7276
  Add support to resource milestone events ([`750f4ee`](https://github.com/python-gitlab/python-gitlab/commit/750f4ee6554381830e6add55583903919db2ba29))
7112
7277
 
7278
+ * Merge branch 'master' into issue-1154 ([`fa899d7`](https://github.com/python-gitlab/python-gitlab/commit/fa899d7a6e76acbe392f3debb5fd61d71bd88ed2))
7279
+
7113
7280
  * Merge pull request #1159 from python-gitlab/feat/project-artifacts
7114
7281
 
7115
7282
  Feat: Project job artifacts for latest successful pipeline ([`26f95f3`](https://github.com/python-gitlab/python-gitlab/commit/26f95f30a5219243f33d505747c65f798ac6a486))
@@ -7118,8 +7285,6 @@ Feat: Project job artifacts for latest successful pipeline ([`26f95f3`](https://
7118
7285
 
7119
7286
  Feat: Add support for packages API ([`0f42e32`](https://github.com/python-gitlab/python-gitlab/commit/0f42e32cb756766735c7e277f099030f6b3d8fc7))
7120
7287
 
7121
- * Merge branch 'master' into issue-1154 ([`fa899d7`](https://github.com/python-gitlab/python-gitlab/commit/fa899d7a6e76acbe392f3debb5fd61d71bd88ed2))
7122
-
7123
7288
  * Merge pull request #1156 from python-gitlab/docs/group-projects-list-cli
7124
7289
 
7125
7290
  docs(cli): add examples for group-project list ([`a038e95`](https://github.com/python-gitlab/python-gitlab/commit/a038e9567fd16259e3ed360ab0defd779e9c3901))
@@ -7140,14 +7305,20 @@ feat: add share/unshare the group with a group ([`cfa8097`](https://github.com/p
7140
7305
 
7141
7306
  docs: additional project file delete example ([`5b92de8`](https://github.com/python-gitlab/python-gitlab/commit/5b92de8eba9224210ecff1a1d4dae6a561c894be))
7142
7307
 
7143
-
7144
7308
  ## v2.4.0 (2020-07-09)
7145
7309
 
7146
7310
  ### Chore
7147
7311
 
7148
7312
  * chore: bump version to 2.4.0 ([`1606310`](https://github.com/python-gitlab/python-gitlab/commit/1606310a880f8a8a2a370db27511b57732caf178))
7149
7313
 
7150
- * chore: added constants for search API ([`8ef53d6`](https://github.com/python-gitlab/python-gitlab/commit/8ef53d6f6180440582d1cca305fd084c9eb70443))
7314
+ ### Documentation
7315
+
7316
+ * docs(pipelines): simplify download
7317
+
7318
+ This uses a context instead of inventing your own stream handler which
7319
+ makes the code simpler and should be fine for most use cases.
7320
+
7321
+ Signed-off-by: Paul Spooren <mail@aparcar.org> ([`9a068e0`](https://github.com/python-gitlab/python-gitlab/commit/9a068e00eba364eb121a2d7d4c839e2f4c7371c8))
7151
7322
 
7152
7323
  ### Feature
7153
7324
 
@@ -7161,8 +7332,6 @@ https://docs.gitlab.com/ee/api/protected_branches.html ([`dab4d0a`](https://gith
7161
7332
 
7162
7333
  ### Fix
7163
7334
 
7164
- * fix: add masked parameter for variables command ([`b6339bf`](https://github.com/python-gitlab/python-gitlab/commit/b6339bf85f3ae11d31bf03c4132f6e7b7c343900))
7165
-
7166
7335
  * fix: do not check if kwargs is none
7167
7336
 
7168
7337
  Co-authored-by: Traian Nedelea <tron1point0@pm.me> ([`a349b90`](https://github.com/python-gitlab/python-gitlab/commit/a349b90ea6016ec8fbe91583f2bbd9832b41a368))
@@ -7171,6 +7340,8 @@ Co-authored-by: Traian Nedelea <tron1point0@pm.me> ([`a349b90`](https://gi
7171
7340
 
7172
7341
  * fix: pass kwargs to subsequent queries in gitlab list ([`1d011ac`](https://github.com/python-gitlab/python-gitlab/commit/1d011ac72aeb18b5f31d10e42ffb49cf703c3e3a))
7173
7342
 
7343
+ * fix: add masked parameter for variables command ([`b6339bf`](https://github.com/python-gitlab/python-gitlab/commit/b6339bf85f3ae11d31bf03c4132f6e7b7c343900))
7344
+
7174
7345
  * fix(merge): parse arguments as query_data ([`878098b`](https://github.com/python-gitlab/python-gitlab/commit/878098b74e216b4359e0ce012ff5cd6973043a0a))
7175
7346
 
7176
7347
  ### Unknown
@@ -7195,7 +7366,6 @@ Add masked parameter for project-variable and group-variable ([`bfb5034`](https:
7195
7366
 
7196
7367
  fix(merge): parse arguments as query_data ([`1d82310`](https://github.com/python-gitlab/python-gitlab/commit/1d82310da1a15f7172a3f87c2cf062bc0c17944d))
7197
7368
 
7198
-
7199
7369
  ## v2.3.1 (2020-06-09)
7200
7370
 
7201
7371
  ### Chore
@@ -7214,7 +7384,6 @@ Instead we set pagination to offset on the other paths ([`e71fe16`](https://gith
7214
7384
 
7215
7385
  Fix/keyset pagination revert ([`3f585ad`](https://github.com/python-gitlab/python-gitlab/commit/3f585ad3f823aef4dd848942399e2bd0530a09b2))
7216
7386
 
7217
-
7218
7387
  ## v2.3.0 (2020-06-08)
7219
7388
 
7220
7389
  ### Chore
@@ -7245,16 +7414,9 @@ Fix/keyset pagination revert ([`3f585ad`](https://github.com/python-gitlab/pytho
7245
7414
 
7246
7415
  ### Documentation
7247
7416
 
7248
- * docs(remote_mirrors): fix create command ([`1bb4e42`](https://github.com/python-gitlab/python-gitlab/commit/1bb4e42858696c9ac8cbfc0f89fa703921b969f3))
7249
-
7250
7417
  * docs(remote_mirrors): fix create command ([`bab91fe`](https://github.com/python-gitlab/python-gitlab/commit/bab91fe86fc8d23464027b1c3ab30619e520235e))
7251
7418
 
7252
- * docs(pipelines): simplify download
7253
-
7254
- This uses a context instead of inventing your own stream handler which
7255
- makes the code simpler and should be fine for most use cases.
7256
-
7257
- Signed-off-by: Paul Spooren <mail@aparcar.org> ([`9a068e0`](https://github.com/python-gitlab/python-gitlab/commit/9a068e00eba364eb121a2d7d4c839e2f4c7371c8))
7419
+ * docs(remote_mirrors): fix create command ([`1bb4e42`](https://github.com/python-gitlab/python-gitlab/commit/1bb4e42858696c9ac8cbfc0f89fa703921b969f3))
7258
7420
 
7259
7421
  * docs: update authors ([`ac0c84d`](https://github.com/python-gitlab/python-gitlab/commit/ac0c84de02a237db350d3b21fe74d0c24d85a94e))
7260
7422
 
@@ -7276,6 +7438,11 @@ docs: add documentation for pipeline schedule play ([`07b9988`](https://github.c
7276
7438
 
7277
7439
  * feat(api): added support in the GroupManager to upload Group avatars ([`28eb7ea`](https://github.com/python-gitlab/python-gitlab/commit/28eb7eab8fbe3750fb56e85967e8179b7025f441))
7278
7440
 
7441
+ * feat(services): add project service list API
7442
+
7443
+ Can be used to list available services
7444
+ It was introduced in GitLab 12.7 ([`fc52221`](https://github.com/python-gitlab/python-gitlab/commit/fc5222188ad096932fa89bb53f03f7118926898a))
7445
+
7279
7446
  * feat: allow an environment variable to specify config location
7280
7447
 
7281
7448
  It can be useful (especially in scripts) to specify a configuration
@@ -7284,11 +7451,6 @@ environment variable is defined, treat its value as the path to a
7284
7451
  configuration file and include it in the set of default configuration
7285
7452
  locations. ([`401e702`](https://github.com/python-gitlab/python-gitlab/commit/401e702a9ff14bf4cc33b3ed3acf16f3c60c6945))
7286
7453
 
7287
- * feat(services): add project service list API
7288
-
7289
- Can be used to list available services
7290
- It was introduced in GitLab 12.7 ([`fc52221`](https://github.com/python-gitlab/python-gitlab/commit/fc5222188ad096932fa89bb53f03f7118926898a))
7291
-
7292
7454
  * feat(types): add __dir__ to RESTObject to expose attributes ([`cad134c`](https://github.com/python-gitlab/python-gitlab/commit/cad134c078573c009af18160652182e39ab5b114))
7293
7455
 
7294
7456
  ### Fix
@@ -7388,24 +7550,23 @@ chore: use pytest to run unit tests and coverage ([`efc6182`](https://github.com
7388
7550
 
7389
7551
  fix(project): add missing project parameters ([`29fd95e`](https://github.com/python-gitlab/python-gitlab/commit/29fd95e7edbb0369b845afb7e9ee4dbed2e1d483))
7390
7552
 
7391
-
7392
7553
  ## v2.2.0 (2020-04-07)
7393
7554
 
7394
7555
  ### Chore
7395
7556
 
7396
7557
  * chore: bump to 2.2.0 ([`22d4b46`](https://github.com/python-gitlab/python-gitlab/commit/22d4b465c3217536cb444dafe5c25e9aaa3aa7be))
7397
7558
 
7398
- * chore(group): update group_manager attributes (#1062)
7399
-
7400
- * chore(group): update group_manager attributes
7401
-
7402
- Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`fa34f5e`](https://github.com/python-gitlab/python-gitlab/commit/fa34f5e20ecbd3f5d868df2fa9e399ac6559c5d5))
7559
+ * chore: use raise..from for chained exceptions (#939) ([`79fef26`](https://github.com/python-gitlab/python-gitlab/commit/79fef262c3e05ff626981c891d9377abb1e18533))
7403
7560
 
7404
7561
  * chore: rename ExportMixin to DownloadMixin ([`847da60`](https://github.com/python-gitlab/python-gitlab/commit/847da6063b4c63c8133e5e5b5b45e5b4f004bdc4))
7405
7562
 
7406
7563
  * chore(mixins): factor out export download into ExportMixin ([`6ce5d1f`](https://github.com/python-gitlab/python-gitlab/commit/6ce5d1f14060a403f05993d77bf37720c25534ba))
7407
7564
 
7408
- * chore: use raise..from for chained exceptions (#939) ([`79fef26`](https://github.com/python-gitlab/python-gitlab/commit/79fef262c3e05ff626981c891d9377abb1e18533))
7565
+ * chore(group): update group_manager attributes (#1062)
7566
+
7567
+ * chore(group): update group_manager attributes
7568
+
7569
+ Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`fa34f5e`](https://github.com/python-gitlab/python-gitlab/commit/fa34f5e20ecbd3f5d868df2fa9e399ac6559c5d5))
7409
7570
 
7410
7571
  * chore: fix typo in allow_failures ([`265bbdd`](https://github.com/python-gitlab/python-gitlab/commit/265bbddacc25d709a8f13807ed04cae393d9802d))
7411
7572
 
@@ -7437,13 +7598,11 @@ Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`ac6b2da`](https://gith
7437
7598
 
7438
7599
  ### Feature
7439
7600
 
7440
- * feat(api): add support for remote mirrors API (#1056) ([`4cfaa2f`](https://github.com/python-gitlab/python-gitlab/commit/4cfaa2fd44b64459f6fc268a91d4469284c0e768))
7441
-
7442
7601
  * feat(api): add support for Gitlab Deploy Token API ([`01de524`](https://github.com/python-gitlab/python-gitlab/commit/01de524ce39a67b549b3157bf4de827dd0568d6b))
7443
7602
 
7444
- * feat(api): add support for Group Import/Export API (#1037) ([`6cb9d92`](https://github.com/python-gitlab/python-gitlab/commit/6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6))
7603
+ * feat(api): add support for remote mirrors API (#1056) ([`4cfaa2f`](https://github.com/python-gitlab/python-gitlab/commit/4cfaa2fd44b64459f6fc268a91d4469284c0e768))
7445
7604
 
7446
- * feat: add support for commit GPG signature API ([`da7a809`](https://github.com/python-gitlab/python-gitlab/commit/da7a809772233be27fa8e563925dd2e44e1ce058))
7605
+ * feat(api): add support for Group Import/Export API (#1037) ([`6cb9d92`](https://github.com/python-gitlab/python-gitlab/commit/6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6))
7447
7606
 
7448
7607
  * feat: add create from template args to ProjectManager
7449
7608
 
@@ -7451,6 +7610,8 @@ This commit adds the v4 Create project attributes necessary to create a
7451
7610
  project from a project, instance, or group level template as documented
7452
7611
  in https://docs.gitlab.com/ee/api/projects.html#create-project ([`f493b73`](https://github.com/python-gitlab/python-gitlab/commit/f493b73e1fbd3c3f1a187fed2de26030f00a89c9))
7453
7612
 
7613
+ * feat: add support for commit GPG signature API ([`da7a809`](https://github.com/python-gitlab/python-gitlab/commit/da7a809772233be27fa8e563925dd2e44e1ce058))
7614
+
7454
7615
  ### Fix
7455
7616
 
7456
7617
  * fix(types): do not split single value string in ListAttribute ([`a26e585`](https://github.com/python-gitlab/python-gitlab/commit/a26e58585b3d82cf1a3e60a3b7b3bfd7f51d77e5))
@@ -7515,7 +7676,6 @@ feat: add support for commit GPG signature ([`1b8e748`](https://github.com/pytho
7515
7676
 
7516
7677
  test: update tests and params for project export/import ([`4ffaf1d`](https://github.com/python-gitlab/python-gitlab/commit/4ffaf1dc0365690df810c99573f5737f635240e0))
7517
7678
 
7518
-
7519
7679
  ## v2.1.2 (2020-03-09)
7520
7680
 
7521
7681
  ### Chore
@@ -7530,7 +7690,6 @@ Revert "feat: use keyset pagination by default for `all=True`" ([`6d941b
7530
7690
 
7531
7691
  * Revert "feat: use keyset pagination by default for `all=True`" ([`6f843b6`](https://github.com/python-gitlab/python-gitlab/commit/6f843b63f7227ee3d338724d49b3ce111366a738))
7532
7692
 
7533
-
7534
7693
  ## v2.1.1 (2020-03-09)
7535
7694
 
7536
7695
  ### Chore
@@ -7553,7 +7712,6 @@ chore(user): update user attributes to 12.8 ([`8c44bb6`](https://github.com/pyth
7553
7712
 
7554
7713
  fix(docs): additional project statistics example ([`be5b15e`](https://github.com/python-gitlab/python-gitlab/commit/be5b15e27ad4a58d61f26e9f5ca3868f72959faa))
7555
7714
 
7556
-
7557
7715
  ## v2.1.0 (2020-03-08)
7558
7716
 
7559
7717
  ### Chore
@@ -7578,6 +7736,8 @@ Co-Authored-By: Mitar <mitar.git@tnode.com> ([`1609824`](https://github.co
7578
7736
 
7579
7737
  * feat(api): add support for GitLab OAuth Applications API ([`4e12356`](https://github.com/python-gitlab/python-gitlab/commit/4e12356d6da58c9ef3d8bf9ae67e8aef8fafac0a))
7580
7738
 
7739
+ * feat: use keyset pagination by default for `all=True` ([`99b4484`](https://github.com/python-gitlab/python-gitlab/commit/99b4484da924f9378518a1a1194e1a3e75b48073))
7740
+
7581
7741
  * feat: add support for user memberships API (#1009) ([`c313c2b`](https://github.com/python-gitlab/python-gitlab/commit/c313c2b01d796418539e42d578fed635f750cdc1))
7582
7742
 
7583
7743
  * feat: add support for commit revert API (#991) ([`5298964`](https://github.com/python-gitlab/python-gitlab/commit/5298964ee7db8a610f23de2d69aad8467727ca97))
@@ -7588,17 +7748,33 @@ Co-Authored-By: Mitar <mitar.git@tnode.com> ([`1609824`](https://github.co
7588
7748
 
7589
7749
  * fix(projects): correct copy-paste error ([`adc9101`](https://github.com/python-gitlab/python-gitlab/commit/adc91011e46dfce909b7798b1257819ec09d01bd))
7590
7750
 
7591
- * fix: do not require empty data dict for create() ([`99d959f`](https://github.com/python-gitlab/python-gitlab/commit/99d959f74d06cca8df3f2d2b3a4709faba7799cb))
7751
+ * fix(objects): add default name data and use http post
7592
7752
 
7593
- * fix: remove trailing slashes from base URL (#913) ([`2e396e4`](https://github.com/python-gitlab/python-gitlab/commit/2e396e4a84690c2ea2ea7035148b1a6038c03301))
7753
+ Updating approvers new api needs a POST call. Also It needs a name of the new rule, defaulting this to 'name'. ([`70c0cfb`](https://github.com/python-gitlab/python-gitlab/commit/70c0cfb686177bc17b796bf4d7eea8b784cf9651))
7754
+
7755
+ * fix: do not require empty data dict for create() ([`99d959f`](https://github.com/python-gitlab/python-gitlab/commit/99d959f74d06cca8df3f2d2b3a4709faba7799cb))
7594
7756
 
7595
7757
  * fix(docs): fix typo in user memberships example ([`33889bc`](https://github.com/python-gitlab/python-gitlab/commit/33889bcbedb4aa421ea5bf83c13abe3168256c62))
7596
7758
 
7759
+ * fix: remove trailing slashes from base URL (#913) ([`2e396e4`](https://github.com/python-gitlab/python-gitlab/commit/2e396e4a84690c2ea2ea7035148b1a6038c03301))
7760
+
7597
7761
  * fix: return response with commit data ([`b77b945`](https://github.com/python-gitlab/python-gitlab/commit/b77b945c7e0000fad4c422a5331c7e905e619a33))
7598
7762
 
7599
- * fix(objects): add default name data and use http post
7763
+ * fix(docs): update to new set approvers call for # of approvers
7600
7764
 
7601
- Updating approvers new api needs a POST call. Also It needs a name of the new rule, defaulting this to 'name'. ([`70c0cfb`](https://github.com/python-gitlab/python-gitlab/commit/70c0cfb686177bc17b796bf4d7eea8b784cf9651))
7765
+ to set the # of approvers for an MR you need to use the same function as for setting the approvers id. ([`8e0c526`](https://github.com/python-gitlab/python-gitlab/commit/8e0c52620af47a9e2247eeb7dcc7a2e677822ff4))
7766
+
7767
+ * fix(objects): update set_approvers function call
7768
+
7769
+ Added a miss paramter update to the set_approvers function ([`65ecadc`](https://github.com/python-gitlab/python-gitlab/commit/65ecadcfc724a7086e5f84dbf1ecc9f7a02e5ed8))
7770
+
7771
+ * fix(docs and tests): update docs and tests for set_approvers
7772
+
7773
+ Updated the docs with the new set_approvers arguments, and updated tests with the arg as well. ([`2cf12c7`](https://github.com/python-gitlab/python-gitlab/commit/2cf12c7973e139c4932da1f31c33bb7658b132f7))
7774
+
7775
+ * fix(objects): update to new gitlab api for path, and args
7776
+
7777
+ Updated the gitlab path for set_approvers to approvers_rules, added default arg for rule type, and added arg for # of approvals required. ([`e512cdd`](https://github.com/python-gitlab/python-gitlab/commit/e512cddd30f3047230e8eedb79d98dc06e93a77b))
7602
7778
 
7603
7779
  * fix: remove null values from features POST data, because it fails
7604
7780
  with HTTP 500 ([`1ec1816`](https://github.com/python-gitlab/python-gitlab/commit/1ec1816d7c76ae079ad3b3e3b7a1bae70e0dd95b))
@@ -7671,7 +7847,6 @@ change path for set_approvers to new api, with defaulted rule_type an… ([`1924
7671
7847
 
7672
7848
  Add capability to control GitLab features per project or group ([`066fc9b`](https://github.com/python-gitlab/python-gitlab/commit/066fc9bfdc1d8e6295cb924ea8471268ee869a90))
7673
7849
 
7674
-
7675
7850
  ## v2.0.1 (2020-02-05)
7676
7851
 
7677
7852
  ### Chore
@@ -7694,28 +7869,6 @@ This also workarounds an GitLab issue, where private_profile, would reset to fal
7694
7869
 
7695
7870
  * docs(auth): remove email/password auth ([`c9329bb`](https://github.com/python-gitlab/python-gitlab/commit/c9329bbf028c5e5ce175e99859c9e842ab8234bc))
7696
7871
 
7697
- ### Feature
7698
-
7699
- * feat: use keyset pagination by default for `all=True` ([`99b4484`](https://github.com/python-gitlab/python-gitlab/commit/99b4484da924f9378518a1a1194e1a3e75b48073))
7700
-
7701
- ### Fix
7702
-
7703
- * fix(docs): update to new set approvers call for # of approvers
7704
-
7705
- to set the # of approvers for an MR you need to use the same function as for setting the approvers id. ([`8e0c526`](https://github.com/python-gitlab/python-gitlab/commit/8e0c52620af47a9e2247eeb7dcc7a2e677822ff4))
7706
-
7707
- * fix(objects): update set_approvers function call
7708
-
7709
- Added a miss paramter update to the set_approvers function ([`65ecadc`](https://github.com/python-gitlab/python-gitlab/commit/65ecadcfc724a7086e5f84dbf1ecc9f7a02e5ed8))
7710
-
7711
- * fix(docs and tests): update docs and tests for set_approvers
7712
-
7713
- Updated the docs with the new set_approvers arguments, and updated tests with the arg as well. ([`2cf12c7`](https://github.com/python-gitlab/python-gitlab/commit/2cf12c7973e139c4932da1f31c33bb7658b132f7))
7714
-
7715
- * fix(objects): update to new gitlab api for path, and args
7716
-
7717
- Updated the gitlab path for set_approvers to approvers_rules, added default arg for rule type, and added arg for # of approvals required. ([`e512cdd`](https://github.com/python-gitlab/python-gitlab/commit/e512cddd30f3047230e8eedb79d98dc06e93a77b))
7718
-
7719
7872
  ### Unknown
7720
7873
 
7721
7874
  * Merge pull request #1007 from python-gitlab/chore/user-update
@@ -7726,7 +7879,6 @@ chore(user): update user attributes ([`f6d9858`](https://github.com/python-gitla
7726
7879
 
7727
7880
  Update auth docs ([`7843ace`](https://github.com/python-gitlab/python-gitlab/commit/7843ace913589cf629f448a2541f290a4c7214cd))
7728
7881
 
7729
-
7730
7882
  ## v2.0.0 (2020-01-26)
7731
7883
 
7732
7884
  ### Chore
@@ -7821,7 +7973,6 @@ Fix/project snippets ([`5a10eb3`](https://github.com/python-gitlab/python-gitlab
7821
7973
 
7822
7974
  feat: add autocompletion support ([`ec6e04c`](https://github.com/python-gitlab/python-gitlab/commit/ec6e04c16a8509519387b985a3ceef89d51a200b))
7823
7975
 
7824
-
7825
7976
  ## v1.15.0 (2019-12-16)
7826
7977
 
7827
7978
  ### Chore
@@ -7874,18 +8025,6 @@ repositories into gitlab. ([`aa4d41b`](https://github.com/python-gitlab/python-g
7874
8025
 
7875
8026
  * feat: nicer stacktrace ([`697cda2`](https://github.com/python-gitlab/python-gitlab/commit/697cda241509dd76adc1249b8029366cfc1d9d6e))
7876
8027
 
7877
- * feat: retry transient HTTP errors
7878
-
7879
- Fixes #970 ([`59fe271`](https://github.com/python-gitlab/python-gitlab/commit/59fe2714741133989a7beed613f1eeb67c18c54e))
7880
-
7881
- * feat: access project's issues statistics
7882
-
7883
- Fixes #966 ([`482e57b`](https://github.com/python-gitlab/python-gitlab/commit/482e57ba716c21cd7b315e5803ecb3953c479b33))
7884
-
7885
- * feat: adding project stats
7886
-
7887
- Fixes #967 ([`db0b00a`](https://github.com/python-gitlab/python-gitlab/commit/db0b00a905c14d52eaca831fcc9243f33d2f092d))
7888
-
7889
8028
  * feat: add variable_type/protected to projects ci variables
7890
8029
 
7891
8030
  This adds the ci variables types and protected flag for create/update
@@ -7901,6 +8040,18 @@ This adds the ci variables types for create/update requests.
7901
8040
  See
7902
8041
  https://docs.gitlab.com/ee/api/group_level_variables.html#create-variable ([`0986c93`](https://github.com/python-gitlab/python-gitlab/commit/0986c93177cde1f3be77d4f73314c37b14bba011))
7903
8042
 
8043
+ * feat: access project's issues statistics
8044
+
8045
+ Fixes #966 ([`482e57b`](https://github.com/python-gitlab/python-gitlab/commit/482e57ba716c21cd7b315e5803ecb3953c479b33))
8046
+
8047
+ * feat: adding project stats
8048
+
8049
+ Fixes #967 ([`db0b00a`](https://github.com/python-gitlab/python-gitlab/commit/db0b00a905c14d52eaca831fcc9243f33d2f092d))
8050
+
8051
+ * feat: retry transient HTTP errors
8052
+
8053
+ Fixes #970 ([`59fe271`](https://github.com/python-gitlab/python-gitlab/commit/59fe2714741133989a7beed613f1eeb67c18c54e))
8054
+
7904
8055
  ### Fix
7905
8056
 
7906
8057
  * fix: ignore all parameter, when as_list=True
@@ -7947,7 +8098,6 @@ Retry transient HTTP errors ([`36bbd37`](https://github.com/python-gitlab/python
7947
8098
 
7948
8099
  Fix/as list ([`3e2d694`](https://github.com/python-gitlab/python-gitlab/commit/3e2d69417aa8c6b043ee99fea5f8d7e31a2ba3e8))
7949
8100
 
7950
-
7951
8101
  ## v1.14.0 (2019-12-07)
7952
8102
 
7953
8103
  ### Chore
@@ -7976,6 +8126,8 @@ Fixes #954 ([`bbaa754`](https://github.com/python-gitlab/python-gitlab/commit/bb
7976
8126
 
7977
8127
  * docs(changelog): add notice for release-notes on Github (#938) ([`de98e57`](https://github.com/python-gitlab/python-gitlab/commit/de98e572b003ee4cf2c1ef770a692f442c216247))
7978
8128
 
8129
+ * docs(pipelines_and_jobs): add pipeline custom variables usage example ([`b275eb0`](https://github.com/python-gitlab/python-gitlab/commit/b275eb03c5954ca24f249efad8125d1eacadd3ac))
8130
+
7979
8131
  ### Feature
7980
8132
 
7981
8133
  * feat: add audit endpoint ([`2534020`](https://github.com/python-gitlab/python-gitlab/commit/2534020b1832f28339ef466d6dd3edc21a521260))
@@ -8059,7 +8211,6 @@ docs(pipelines_and_jobs): add pipeline custom variables usage example ([`4efa6e6
8059
8211
 
8060
8212
  Add support for include_subgroups filter ([`1f18230`](https://github.com/python-gitlab/python-gitlab/commit/1f182302c206502f5202d1707fef69adf527fea7))
8061
8213
 
8062
-
8063
8214
  ## v1.13.0 (2019-11-02)
8064
8215
 
8065
8216
  ### Chore
@@ -8068,8 +8219,8 @@ Add support for include_subgroups filter ([`1f18230`](https://github.com/python-
8068
8219
 
8069
8220
  * chore(setup): we support 3.8 (#924)
8070
8221
 
8071
- * chore(setup): we support 3.8
8072
-
8222
+ * chore(setup): we support 3.8
8223
+
8073
8224
  * style: format with black ([`6048175`](https://github.com/python-gitlab/python-gitlab/commit/6048175ef2c21fda298754e9b07515b0a56d66bd))
8074
8225
 
8075
8226
  * chore(ci): update latest docker image for every tag ([`01cbc7a`](https://github.com/python-gitlab/python-gitlab/commit/01cbc7ad04a875bea93a08c0ce563ab5b4fe896b))
@@ -8080,8 +8231,6 @@ Closes #907 ([`3133ed7`](https://github.com/python-gitlab/python-gitlab/commit/3
8080
8231
 
8081
8232
  ### Documentation
8082
8233
 
8083
- * docs(pipelines_and_jobs): add pipeline custom variables usage example ([`b275eb0`](https://github.com/python-gitlab/python-gitlab/commit/b275eb03c5954ca24f249efad8125d1eacadd3ac))
8084
-
8085
8234
  * docs: projects get requires id
8086
8235
 
8087
8236
  Also, add an example value for project_id to the other projects.get()
@@ -8107,10 +8256,10 @@ Fixes #917 ([`ca256a0`](https://github.com/python-gitlab/python-gitlab/commit/ca
8107
8256
 
8108
8257
  * feat(test): unused unittest2, type -> isinstance ([`33b1801`](https://github.com/python-gitlab/python-gitlab/commit/33b180120f30515d0f76fcf635cb8c76045b1b42))
8109
8258
 
8110
- * feat(doc): remove refs to api v3 in docs ([`6beeaa9`](https://github.com/python-gitlab/python-gitlab/commit/6beeaa993f8931d6b7fe682f1afed2bd4c8a4b73))
8111
-
8112
8259
  * feat(auth): remove deprecated session auth ([`b751cdf`](https://github.com/python-gitlab/python-gitlab/commit/b751cdf424454d3859f3f038b58212e441faafaf))
8113
8260
 
8261
+ * feat(doc): remove refs to api v3 in docs ([`6beeaa9`](https://github.com/python-gitlab/python-gitlab/commit/6beeaa993f8931d6b7fe682f1afed2bd4c8a4b73))
8262
+
8114
8263
  ### Fix
8115
8264
 
8116
8265
  * fix(projects): support `approval_rules` endpoint for projects
@@ -8189,7 +8338,6 @@ Remove warning about open files from test_todo() ([`ff808ee`](https://github.com
8189
8338
 
8190
8339
  remove references to api v3 in docs ([`92ba028`](https://github.com/python-gitlab/python-gitlab/commit/92ba0283b63e562e181061252787e0e46da83a29))
8191
8340
 
8192
-
8193
8341
  ## v1.12.1 (2019-10-07)
8194
8342
 
8195
8343
  ### Fix
@@ -8202,7 +8350,6 @@ remove references to api v3 in docs ([`92ba028`](https://github.com/python-gitla
8202
8350
 
8203
8351
  fix: fix not working without auth ([`f4b2927`](https://github.com/python-gitlab/python-gitlab/commit/f4b29278771e48320e2da4bacc4544d263d1754c))
8204
8352
 
8205
-
8206
8353
  ## v1.12.0 (2019-10-06)
8207
8354
 
8208
8355
  ### Chore
@@ -8333,7 +8480,6 @@ feat(user): add status api ([`b7f3342`](https://github.com/python-gitlab/python-
8333
8480
 
8334
8481
  test: re-enabled py_func_v4 test ([`1490b0e`](https://github.com/python-gitlab/python-gitlab/commit/1490b0e7f175d54cc6d35de7aac6d9e45c0e3d51))
8335
8482
 
8336
-
8337
8483
  ## v1.11.0 (2019-08-31)
8338
8484
 
8339
8485
  ### Chore
@@ -8382,7 +8528,6 @@ Fix mutable default arguments ([`e8a3585`](https://github.com/python-gitlab/pyth
8382
8528
 
8383
8529
  feat: Add grouplabel support with subscribable mixin ([`edb3359`](https://github.com/python-gitlab/python-gitlab/commit/edb3359fb3a77050d3e162da641445952397279b))
8384
8530
 
8385
-
8386
8531
  ## v1.10.0 (2019-07-22)
8387
8532
 
8388
8533
  ### Chore
@@ -8399,10 +8544,10 @@ feat: Add grouplabel support with subscribable mixin ([`edb3359`](https://github
8399
8544
 
8400
8545
  * chore(ci): update the GitLab version in the test image ([`c410699`](https://github.com/python-gitlab/python-gitlab/commit/c41069992de392747ccecf8c282ac0549932ccd1))
8401
8546
 
8402
- * chore(ci): fix gitlab PyPI publish ([`3e37df1`](https://github.com/python-gitlab/python-gitlab/commit/3e37df16e2b6a8f1beffc3a595abcb06fd48a17c))
8403
-
8404
8547
  * chore(ci): add automatic GitLab image pushes ([`95c9b6d`](https://github.com/python-gitlab/python-gitlab/commit/95c9b6dd489fc15c7dfceffca909917f4f3d4312))
8405
8548
 
8549
+ * chore(ci): fix gitlab PyPI publish ([`3e37df1`](https://github.com/python-gitlab/python-gitlab/commit/3e37df16e2b6a8f1beffc3a595abcb06fd48a17c))
8550
+
8406
8551
  * chore: add a tox job to run black
8407
8552
 
8408
8553
  Allow lines to be 88 chars long for flake8. ([`c27fa48`](https://github.com/python-gitlab/python-gitlab/commit/c27fa486698e441ebc16448ee93e5539cb885ced))
@@ -8460,14 +8605,14 @@ Fixes #660 ([`bed8e1b`](https://github.com/python-gitlab/python-gitlab/commit/be
8460
8605
 
8461
8606
  * docs(setup): use proper readme on PyPI ([`6898097`](https://github.com/python-gitlab/python-gitlab/commit/6898097c45d53a3176882a3d9cb86c0015f8d491))
8462
8607
 
8463
- * docs(groups): fix typo
8464
-
8465
- Fixes #635 ([`ac2d65a`](https://github.com/python-gitlab/python-gitlab/commit/ac2d65aacba5c19eca857290c5b47ead6bb4356d))
8466
-
8467
8608
  * docs(projects): fix typo in code sample
8468
8609
 
8469
8610
  Fixes #630 ([`b93f2a9`](https://github.com/python-gitlab/python-gitlab/commit/b93f2a9ea9661521878ac45d70c7bd9a5a470548))
8470
8611
 
8612
+ * docs(groups): fix typo
8613
+
8614
+ Fixes #635 ([`ac2d65a`](https://github.com/python-gitlab/python-gitlab/commit/ac2d65aacba5c19eca857290c5b47ead6bb4356d))
8615
+
8471
8616
  * docs(cli): add PyYAML requirement notice
8472
8617
 
8473
8618
  Fixes #606 ([`d29a489`](https://github.com/python-gitlab/python-gitlab/commit/d29a48981b521bf31d6f0304b88f39a63185328a))
@@ -8557,14 +8702,14 @@ Fix #175 ([`ca014f8`](https://github.com/python-gitlab/python-gitlab/commit/ca01
8557
8702
 
8558
8703
  * feat: get artifact by ref and job ([`cda1174`](https://github.com/python-gitlab/python-gitlab/commit/cda117456791977ad300a1dd26dec56009dac55e))
8559
8704
 
8560
- * feat: add support for board update
8561
-
8562
- Closes #801 ([`908d79f`](https://github.com/python-gitlab/python-gitlab/commit/908d79fa56965e7b3afcfa23236beef457cfa4b4))
8563
-
8564
8705
  * feat: add support for issue.related_merge_requests
8565
8706
 
8566
8707
  Closes #794 ([`90a3631`](https://github.com/python-gitlab/python-gitlab/commit/90a363154067bcf763043124d172eaf705c8fe90))
8567
8708
 
8709
+ * feat: add support for board update
8710
+
8711
+ Closes #801 ([`908d79f`](https://github.com/python-gitlab/python-gitlab/commit/908d79fa56965e7b3afcfa23236beef457cfa4b4))
8712
+
8568
8713
  * feat: bump version to 1.9.0 ([`aaed448`](https://github.com/python-gitlab/python-gitlab/commit/aaed44837869bd2ce22b6f0d2e1196b1d0e626a6))
8569
8714
 
8570
8715
  * feat: implement artifacts deletion
@@ -8579,8 +8724,8 @@ Signed-off-by: Agustin Henze <tin@redhat.com> ([`564de48`](https://github.
8579
8724
 
8580
8725
  * feat(GitLab Update): delete ProjectPipeline (#736)
8581
8726
 
8582
- * feat(GitLab Update): delete ProjectPipeline
8583
-
8727
+ * feat(GitLab Update): delete ProjectPipeline
8728
+
8584
8729
  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))
8585
8730
 
8586
8731
  * feat: Added approve & unapprove method for Mergerequests
@@ -8688,7 +8833,7 @@ Before this fix, there was virtually no way to pass spaces in arguments such as
8688
8833
 
8689
8834
  * fix(cli): exit on config parse error, instead of crashing
8690
8835
 
8691
- * Exit and hint user about possible errors
8836
+ * Exit and hint user about possible errors
8692
8837
  * test: adjust test cases to config missing error ([`6ad9da0`](https://github.com/python-gitlab/python-gitlab/commit/6ad9da04496f040ae7d95701422434bc935a5a80))
8693
8838
 
8694
8839
  * fix(docker): use docker image with current sources ([`06e8ca8`](https://github.com/python-gitlab/python-gitlab/commit/06e8ca8747256632c8a159f760860b1ae8f2b7b5))
@@ -8878,13 +9023,13 @@ Revert "Custom cli actions fix" ([`ef32990`](https://github.com/python-g
8878
9023
 
8879
9024
  Custom cli actions fix ([`e8823e9`](https://github.com/python-gitlab/python-gitlab/commit/e8823e91b04fd6cf3838ad256c02373db7029191))
8880
9025
 
8881
- * Merge pull request #759 from kkoralsky/registry_api
9026
+ * fix -/_ replacament for *Manager custom actions ([`6158fd2`](https://github.com/python-gitlab/python-gitlab/commit/6158fd23022b2e2643b6da7a39708b28ce59270a))
8882
9027
 
8883
- registry api implementation ([`84bcdc0`](https://github.com/python-gitlab/python-gitlab/commit/84bcdc0c452d2ada9a47aa9907d7551aeac23821))
9028
+ * dont ask for id attr if this is *Manager originating custom action ([`adb6305`](https://github.com/python-gitlab/python-gitlab/commit/adb63054add31e06cefec09982a02b1cd21c2cbd))
8884
9029
 
8885
- * Merge pull request #773 from python-gitlab/chore/ci-reliable-system
9030
+ * Merge pull request #759 from kkoralsky/registry_api
8886
9031
 
8887
- chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/python-gitlab/commit/3dc64131eaec7d08b059039f446cc8d8c4b58c81))
9032
+ registry api implementation ([`84bcdc0`](https://github.com/python-gitlab/python-gitlab/commit/84bcdc0c452d2ada9a47aa9907d7551aeac23821))
8888
9033
 
8889
9034
  * documentation fix ([`2d9078e`](https://github.com/python-gitlab/python-gitlab/commit/2d9078e8e785e3a17429623693f84bbf8526ee58))
8890
9035
 
@@ -8900,6 +9045,10 @@ chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/
8900
9045
 
8901
9046
  * merged new release & registry apis ([`910c286`](https://github.com/python-gitlab/python-gitlab/commit/910c2861a3c895cca5aff0a0df1672bb7388c526))
8902
9047
 
9048
+ * Merge pull request #773 from python-gitlab/chore/ci-reliable-system
9049
+
9050
+ chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/python-gitlab/commit/3dc64131eaec7d08b059039f446cc8d8c4b58c81))
9051
+
8903
9052
  * Merge pull request #769 from python-gitlab/pep-fixes
8904
9053
 
8905
9054
  fix: pep8 errors ([`a730598`](https://github.com/python-gitlab/python-gitlab/commit/a7305980ef4065a6518951fb166b11eec9003b4d))
@@ -8908,10 +9057,6 @@ fix: pep8 errors ([`a730598`](https://github.com/python-gitlab/python-gitlab/com
8908
9057
 
8909
9058
  add project releases api ([`16de1b0`](https://github.com/python-gitlab/python-gitlab/commit/16de1b03fde3dbbe8f851614dd1d8c09de102fe5))
8910
9059
 
8911
- * fix -/_ replacament for *Manager custom actions ([`6158fd2`](https://github.com/python-gitlab/python-gitlab/commit/6158fd23022b2e2643b6da7a39708b28ce59270a))
8912
-
8913
- * dont ask for id attr if this is *Manager originating custom action ([`adb6305`](https://github.com/python-gitlab/python-gitlab/commit/adb63054add31e06cefec09982a02b1cd21c2cbd))
8914
-
8915
9060
  * Use NoUpdateMixin for now ([`8e55a3c`](https://github.com/python-gitlab/python-gitlab/commit/8e55a3c85f3537e2be1032bf7d28080a4319ec89))
8916
9061
 
8917
9062
  * add project releases api ([`3680545`](https://github.com/python-gitlab/python-gitlab/commit/3680545a01513ed044eb888151d2e2c635cea255))
@@ -8936,14 +9081,14 @@ Re-enable command specific help messages ([`a6e10f9`](https://github.com/python-
8936
9081
 
8937
9082
  * Use sys.exit as in rest of code ([`6fe2988`](https://github.com/python-gitlab/python-gitlab/commit/6fe2988dd050c05b17556cacac4e283fbf5242a8))
8938
9083
 
8939
- * Merge pull request #729 from xarx00/PR-bugfix-716
8940
-
8941
- Fix for #716: %d replaced by %s ([`bc973d4`](https://github.com/python-gitlab/python-gitlab/commit/bc973d450114fcdb2fb8222ab598b5d932585064))
8942
-
8943
9084
  * Re-enable command specific help mesaages
8944
9085
 
8945
9086
  This makes sure that the global help message wont be printed instead of the command spedific one unless we fail to read the configuration file ([`a8caddc`](https://github.com/python-gitlab/python-gitlab/commit/a8caddcb1e193c5472f5521dee0e18b1af32c89b))
8946
9087
 
9088
+ * Merge pull request #729 from xarx00/PR-bugfix-716
9089
+
9090
+ Fix for #716: %d replaced by %s ([`bc973d4`](https://github.com/python-gitlab/python-gitlab/commit/bc973d450114fcdb2fb8222ab598b5d932585064))
9091
+
8947
9092
  * Fix for #716: %d replaced by %s ([`675f879`](https://github.com/python-gitlab/python-gitlab/commit/675f879c1ec6cf1c77cbf96d8b7b2cd51e1cbaad))
8948
9093
 
8949
9094
  * Merge pull request #725 from python-gitlab/fix/699
@@ -8968,7 +9113,11 @@ chore(ci): don't try to publish existing release ([`39cb97d`](https://github
8968
9113
 
8969
9114
  Implement __eq__ and __hash__ methods ([`a4ea0fe`](https://github.com/python-gitlab/python-gitlab/commit/a4ea0fe6b91d856b30d25c9f0f71ef9cae8f3f08))
8970
9115
 
8971
- * Merge pull request #705 from python-gitlab/release-1.8.0
9116
+ * Implement __eq__ and __hash__ methods
9117
+
9118
+ To ease lists and sets manipulations. ([`3d60850`](https://github.com/python-gitlab/python-gitlab/commit/3d60850aa42351a0bb0066ef579ade95df5a81ee))
9119
+
9120
+ * Merge pull request #705 from python-gitlab/release-1.8.0
8972
9121
 
8973
9122
  Release version 1.8.0 ([`57fa4e3`](https://github.com/python-gitlab/python-gitlab/commit/57fa4e37aaf6ccee0d75085520f96fd15752a3df))
8974
9123
 
@@ -8978,10 +9127,6 @@ Release version 1.8.0 ([`57fa4e3`](https://github.com/python-gitlab/python-gitla
8978
9127
 
8979
9128
  Fix all kwarg behaviour ([`8ce4e9e`](https://github.com/python-gitlab/python-gitlab/commit/8ce4e9e07913d9b9bb916d079ff0a7c528830a2d))
8980
9129
 
8981
- * Implement __eq__ and __hash__ methods
8982
-
8983
- To ease lists and sets manipulations. ([`3d60850`](https://github.com/python-gitlab/python-gitlab/commit/3d60850aa42351a0bb0066ef579ade95df5a81ee))
8984
-
8985
9130
  * Fix all kwarg behaviour
8986
9131
 
8987
9132
  `all` kwarg is used to manage GitlabList generator behaviour.
@@ -9058,10 +9203,23 @@ fix: docker entry point argument passing ([`f945910`](https://github.com/python-
9058
9203
 
9059
9204
  Improve error message handling in exceptions ([`7bd41cb`](https://github.com/python-gitlab/python-gitlab/commit/7bd41cbf88af87a31ad1943f58c5f7f8295d956b))
9060
9205
 
9206
+ * Improve error message handling in exceptions
9207
+
9208
+ * Depending on the request Gitlab has a 'message' or 'error' attribute
9209
+ in the json data, handle both
9210
+ * Add some consistency by converting messages to unicode or str for
9211
+ exceptions (depending on the python version)
9212
+
9213
+ Closes #616 ([`1fb1296`](https://github.com/python-gitlab/python-gitlab/commit/1fb1296c9191e57e109c4e5eb9504bce191a6ff1))
9214
+
9061
9215
  * Merge pull request #625 from python-gitlab/fix/611/resource_label_event
9062
9216
 
9063
9217
  Add support to resource label events ([`20eb7d8`](https://github.com/python-gitlab/python-gitlab/commit/20eb7d8900cdc24c3ea1e7ef2262dca9965a2884))
9064
9218
 
9219
+ * Add support to resource label events
9220
+
9221
+ Closes #611 ([`95d0d74`](https://github.com/python-gitlab/python-gitlab/commit/95d0d745d4bafe702c89c972f644b049d6c810ab))
9222
+
9065
9223
  * Merge pull request #642 from python-gitlab/feature/589/member_all
9066
9224
 
9067
9225
  [feature] Add support for members all() method ([`22536f3`](https://github.com/python-gitlab/python-gitlab/commit/22536f34d87e5df1a3400d3f474a988c93b9bfb1))
@@ -9070,39 +9228,26 @@ Add support to resource label events ([`20eb7d8`](https://github.com/python-gitl
9070
9228
 
9071
9229
  Closes #589 ([`ef1523a`](https://github.com/python-gitlab/python-gitlab/commit/ef1523a23737db45d0f439badcd8be564bcb67fb))
9072
9230
 
9073
- * Improve error message handling in exceptions
9074
-
9075
- * Depending on the request Gitlab has a 'message' or 'error' attribute
9076
- in the json data, handle both
9077
- * Add some consistency by converting messages to unicode or str for
9078
- exceptions (depending on the python version)
9079
-
9080
- Closes #616 ([`1fb1296`](https://github.com/python-gitlab/python-gitlab/commit/1fb1296c9191e57e109c4e5eb9504bce191a6ff1))
9081
-
9082
9231
  * Merge pull request #639 from python-gitlab/fix/628/doc_typo
9083
9232
 
9084
9233
  [docs] Fix typo in custom attributes example ([`011274e`](https://github.com/python-gitlab/python-gitlab/commit/011274e7f94519d30dee59f5448215838d058e37))
9085
9234
 
9086
- * Merge pull request #638 from python-gitlab/fix/633/milestone_filter
9087
-
9088
- [docs] Fix the milestone filetring doc (iid -> iids) ([`e6df9a8`](https://github.com/python-gitlab/python-gitlab/commit/e6df9a8b2f9c2397ea3ae67dfe19a2fa91f41c19))
9089
-
9090
9235
  * [docs] Fix typo in custom attributes example
9091
9236
 
9092
9237
  Closes #628 ([`bb251b8`](https://github.com/python-gitlab/python-gitlab/commit/bb251b8ef780216de03dde67912ad5fffbb30390))
9093
9238
 
9094
- * [docs] Fix the milestone filetring doc (iid -> iids)
9239
+ * Merge pull request #638 from python-gitlab/fix/633/milestone_filter
9095
9240
 
9096
- Fixes #633 ([`0c9a00b`](https://github.com/python-gitlab/python-gitlab/commit/0c9a00bb154007a0a9f665ca38e6fec50d378eaf))
9241
+ [docs] Fix the milestone filetring doc (iid -> iids) ([`e6df9a8`](https://github.com/python-gitlab/python-gitlab/commit/e6df9a8b2f9c2397ea3ae67dfe19a2fa91f41c19))
9097
9242
 
9098
- * Add support to resource label events
9243
+ * [docs] Fix the milestone filetring doc (iid -> iids)
9099
9244
 
9100
- Closes #611 ([`95d0d74`](https://github.com/python-gitlab/python-gitlab/commit/95d0d745d4bafe702c89c972f644b049d6c810ab))
9245
+ Fixes #633 ([`0c9a00b`](https://github.com/python-gitlab/python-gitlab/commit/0c9a00bb154007a0a9f665ca38e6fec50d378eaf))
9101
9246
 
9102
9247
  * Merge pull request #634 from python-gitlab/docs/project-typo
9103
9248
 
9104
- docs(projects): fix typo in code sample
9105
-
9249
+ docs(projects): fix typo in code sample
9250
+
9106
9251
  Closes #630 ([`c8eaeb2`](https://github.com/python-gitlab/python-gitlab/commit/c8eaeb2d258055b8fc77cbeef373aee5551c181a))
9107
9252
 
9108
9253
  * Merge pull request #636 from python-gitlab/docs/groups-fix-typo
@@ -9119,27 +9264,27 @@ Fix 3 typos in docs ([`7f09666`](https://github.com/python-gitlab/python-gitlab/
9119
9264
 
9120
9265
  Use the pythongitlab/test-python-gitlab docker image for tests ([`742243f`](https://github.com/python-gitlab/python-gitlab/commit/742243f4f43042d4b561e3875dc38e560bb71624))
9121
9266
 
9122
- * Merge pull request #619 from python-gitlab/issue/595
9123
-
9124
- [docs] Add an example of pipeline schedule vars listing ([`fcce7a3`](https://github.com/python-gitlab/python-gitlab/commit/fcce7a316968a9aea7aa504730cea1734c2f897a))
9267
+ * Use the pythongitlab/test-python-gitlab docker image for tests
9125
9268
 
9126
- * Merge pull request #626 from python-gitlab/fix/596/maintainer_wanted
9269
+ This images is updated to the latest GitLab CE.
9127
9270
 
9128
- [README] Remove the "maintainer(s) wanted" notice ([`bc6ce04`](https://github.com/python-gitlab/python-gitlab/commit/bc6ce047959a57e58e8260b41556f29b3da27da4))
9271
+ Fix the diff() test to match the change in the API output. ([`2c6c929`](https://github.com/python-gitlab/python-gitlab/commit/2c6c929f78dfda92d5ae93235bb9065d289a68cc))
9129
9272
 
9130
- * [README] Remove the "maintainer(s) wanted" notice
9273
+ * Merge pull request #619 from python-gitlab/issue/595
9131
9274
 
9132
- Closes #596 ([`f51fa19`](https://github.com/python-gitlab/python-gitlab/commit/f51fa19dc4f78d036f18217436add00b7d94c39d))
9275
+ [docs] Add an example of pipeline schedule vars listing ([`fcce7a3`](https://github.com/python-gitlab/python-gitlab/commit/fcce7a316968a9aea7aa504730cea1734c2f897a))
9133
9276
 
9134
9277
  * [docs] Add an example of pipeline schedule vars listing
9135
9278
 
9136
9279
  Closes #595 ([`f7fbfca`](https://github.com/python-gitlab/python-gitlab/commit/f7fbfca7e6a32a31dbf7ca8e1d4f83b34b7ac9db))
9137
9280
 
9138
- * Use the pythongitlab/test-python-gitlab docker image for tests
9281
+ * Merge pull request #626 from python-gitlab/fix/596/maintainer_wanted
9139
9282
 
9140
- This images is updated to the latest GitLab CE.
9283
+ [README] Remove the "maintainer(s) wanted" notice ([`bc6ce04`](https://github.com/python-gitlab/python-gitlab/commit/bc6ce047959a57e58e8260b41556f29b3da27da4))
9141
9284
 
9142
- Fix the diff() test to match the change in the API output. ([`2c6c929`](https://github.com/python-gitlab/python-gitlab/commit/2c6c929f78dfda92d5ae93235bb9065d289a68cc))
9285
+ * [README] Remove the "maintainer(s) wanted" notice
9286
+
9287
+ Closes #596 ([`f51fa19`](https://github.com/python-gitlab/python-gitlab/commit/f51fa19dc4f78d036f18217436add00b7d94c39d))
9143
9288
 
9144
9289
  * Merge pull request #620 from bittner/patch-1
9145
9290
 
@@ -9360,6 +9505,8 @@ Fixes #526 ([`617aa64`](https://github.com/python-gitlab/python-gitlab/commit/61
9360
9505
 
9361
9506
  make as_list=False work for all=True queries ([`a6512f9`](https://github.com/python-gitlab/python-gitlab/commit/a6512f9efcf50db1354bbd903526b78d8e766ae1))
9362
9507
 
9508
+ * make as_list work for all queries ([`8e78761`](https://github.com/python-gitlab/python-gitlab/commit/8e787612fa77dc945a4c1327e9faa6eee10c48f2))
9509
+
9363
9510
  * Add support for issue links (EE)
9364
9511
 
9365
9512
  Fixes #422 ([`8873eda`](https://github.com/python-gitlab/python-gitlab/commit/8873edaeebd18d6b2ed08a8609c011ad29249b48))
@@ -9374,6 +9521,8 @@ Fixes #524 ([`39c8ad5`](https://github.com/python-gitlab/python-gitlab/commit/39
9374
9521
 
9375
9522
  fix #521 change post_data default value to None ([`6dd8774`](https://github.com/python-gitlab/python-gitlab/commit/6dd8774e1fa62e6f29cd760509e0274f4205683f))
9376
9523
 
9524
+ * fix #521 change post_data default value to None ([`d4c1a8c`](https://github.com/python-gitlab/python-gitlab/commit/d4c1a8ce8f0b0a9d60922e22cdc044343fe24cd3))
9525
+
9377
9526
  * Add basic testing forr EE endpoints
9378
9527
 
9379
9528
  Today we don't have a solution for easily deploying an EE instance so
@@ -9384,10 +9533,6 @@ private EE instance. ([`c88333b`](https://github.com/python-gitlab/python-gitlab
9384
9533
 
9385
9534
  * Add support for project-level MR approval configuration ([`473dc6f`](https://github.com/python-gitlab/python-gitlab/commit/473dc6f50d27b2e5349bb2e7c8bc07b48e9834d1))
9386
9535
 
9387
- * fix #521 change post_data default value to None ([`d4c1a8c`](https://github.com/python-gitlab/python-gitlab/commit/d4c1a8ce8f0b0a9d60922e22cdc044343fe24cd3))
9388
-
9389
- * make as_list work for all queries ([`8e78761`](https://github.com/python-gitlab/python-gitlab/commit/8e787612fa77dc945a4c1327e9faa6eee10c48f2))
9390
-
9391
9536
  * Merge pull request #519 from jouve/silence
9392
9537
 
9393
9538
  silence logs/warnings in unittests ([`bbefb99`](https://github.com/python-gitlab/python-gitlab/commit/bbefb9936a18909d28d0f81b6ce99d4981ab8148))
@@ -9432,6 +9577,8 @@ Fixes #469 ([`9412a5d`](https://github.com/python-gitlab/python-gitlab/commit/94
9432
9577
 
9433
9578
  Add support for Project badges ([`01a41ef`](https://github.com/python-gitlab/python-gitlab/commit/01a41efd271dd08d4b5744473fb71a67d9f5dea5))
9434
9579
 
9580
+ * Add support for Project badges ([`e00cad4`](https://github.com/python-gitlab/python-gitlab/commit/e00cad4f73c43d28799ec6e79e32fd03e58e79b4))
9581
+
9435
9582
  * Add support for the gitlab CI lint API ([`40b9f4d`](https://github.com/python-gitlab/python-gitlab/commit/40b9f4d62d5b9853bfd63317d8ad578b4525e665))
9436
9583
 
9437
9584
  * Update the settings attributes ([`0cc9828`](https://github.com/python-gitlab/python-gitlab/commit/0cc9828fda25531a57010cb310f23d3c185e63a6))
@@ -9480,8 +9627,6 @@ Testing will be enable when GitLab 11.0 is available. ([`9be50be`](https://githu
9480
9627
 
9481
9628
  Add a new UserAgentDetail mixin to avoid code duplication. ([`7025743`](https://github.com/python-gitlab/python-gitlab/commit/70257438044b793a42adce791037b9b86ae35d9b))
9482
9629
 
9483
- * Add support for Project badges ([`e00cad4`](https://github.com/python-gitlab/python-gitlab/commit/e00cad4f73c43d28799ec6e79e32fd03e58e79b4))
9484
-
9485
9630
  * Add support for merged branches deletion ([`590ea0d`](https://github.com/python-gitlab/python-gitlab/commit/590ea0da7e5617c42e705c62370d6e94ff46ea74))
9486
9631
 
9487
9632
  * Add support for the discussions API
@@ -9577,12 +9722,14 @@ Fixes #491 ([`037585c`](https://github.com/python-gitlab/python-gitlab/commit/03
9577
9722
 
9578
9723
  Change method for getting content of snippet ([`85f2388`](https://github.com/python-gitlab/python-gitlab/commit/85f238846071724c9323df06fdc757de2b453608))
9579
9724
 
9725
+ * Add API v3 example ([`5c16c8d`](https://github.com/python-gitlab/python-gitlab/commit/5c16c8d03c39d4b6d87490a36102cdd4d2ad2160))
9726
+
9727
+ * Change method for getting content of snippet ([`505c749`](https://github.com/python-gitlab/python-gitlab/commit/505c74907fca52d315b273033e3d62643623425b))
9728
+
9580
9729
  * Fix URL encoding on branch methods
9581
9730
 
9582
9731
  Fixes #493 ([`736fece`](https://github.com/python-gitlab/python-gitlab/commit/736fece2219658ff446ea31ee3c03dfe18ecaacb))
9583
9732
 
9584
- * Add API v3 example ([`5c16c8d`](https://github.com/python-gitlab/python-gitlab/commit/5c16c8d03c39d4b6d87490a36102cdd4d2ad2160))
9585
-
9586
9733
  * Merge pull request #488 from siemens/feat/rate-limit
9587
9734
 
9588
9735
  feat: obey the rate limit ([`86a8251`](https://github.com/python-gitlab/python-gitlab/commit/86a825143fdae82d231c2c3589d81b26c8c3ab81))
@@ -9595,8 +9742,6 @@ This reverts commit 32b399af0e506b38a10a2c625338848a03f0b35d. ([`25ed8e7`](https
9595
9742
 
9596
9743
  Update projects.py documentation ([`2b9ae5c`](https://github.com/python-gitlab/python-gitlab/commit/2b9ae5ce1664b97414152dfb1acb50fbcd05f95e))
9597
9744
 
9598
- * Change method for getting content of snippet ([`505c749`](https://github.com/python-gitlab/python-gitlab/commit/505c74907fca52d315b273033e3d62643623425b))
9599
-
9600
9745
  * Update projects.py
9601
9746
 
9602
9747
  Add missing attributes to file.create in order to make it work. ([`629b1e1`](https://github.com/python-gitlab/python-gitlab/commit/629b1e1c9488cea4bf853a42622dd7f182ee47ed))
@@ -9736,22 +9881,32 @@ Add documentation about labels update ([`0cbd9c6`](https://github.com/python-git
9736
9881
 
9737
9882
  * Merge branch 'mlq-feature/pipeline-schedules' ([`39a0429`](https://github.com/python-gitlab/python-gitlab/commit/39a04297d2661f82980f1b1921a3aba1ab1feb32))
9738
9883
 
9884
+ * Update pipeline schedules code ([`6a87d38`](https://github.com/python-gitlab/python-gitlab/commit/6a87d38b0c5ffdfa9c78dcf5232ec78986010ce6))
9885
+
9886
+ * Project pipeline jobs ([`b861837`](https://github.com/python-gitlab/python-gitlab/commit/b861837b25bb45dbe40b035dff5f41898450e22b))
9887
+
9888
+ * Project pipeline schedules ([`34e32a0`](https://github.com/python-gitlab/python-gitlab/commit/34e32a0944b65583a57b97bf0124b8935ab49fa7))
9889
+
9739
9890
  * Project pipeline jobs ([`fd726cd`](https://github.com/python-gitlab/python-gitlab/commit/fd726cdb61a78aafb780cae56a7909e7b648e4dc))
9740
9891
 
9741
9892
  * Project pipeline schedules ([`31eb913`](https://github.com/python-gitlab/python-gitlab/commit/31eb913be34f8dea0c4b1f8396b74bb74b32a6f0))
9742
9893
 
9743
- * Update pipeline schedules code ([`6a87d38`](https://github.com/python-gitlab/python-gitlab/commit/6a87d38b0c5ffdfa9c78dcf5232ec78986010ce6))
9744
-
9745
9894
  * Merge pull request #420 from tardyp/patch-2
9746
9895
 
9747
9896
  make trigger_pipeline return the pipeline ([`70c779c`](https://github.com/python-gitlab/python-gitlab/commit/70c779c4243d1807323cc1afc8cbc97918c3b8fc))
9748
9897
 
9898
+ * fix pep8 ([`8134f84`](https://github.com/python-gitlab/python-gitlab/commit/8134f84f96059dbde72359c414352e2dbe3535e0))
9899
+
9900
+ * make trigger_pipeline return the pipeline
9901
+
9902
+ Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
9903
+
9904
+ 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))
9905
+
9749
9906
  * Merge pull request #419 from tardyp/patch-1
9750
9907
 
9751
9908
  Simplify the example for streamed artifacts ([`6ea7ab7`](https://github.com/python-gitlab/python-gitlab/commit/6ea7ab73eb6be20c4e8c092044bf0efe421ce4f5))
9752
9909
 
9753
- * fix pep8 ([`8134f84`](https://github.com/python-gitlab/python-gitlab/commit/8134f84f96059dbde72359c414352e2dbe3535e0))
9754
-
9755
9910
  * add a Simplified example for streamed artifacts
9756
9911
 
9757
9912
  Going through an object adds a lot of complication.
@@ -9767,12 +9922,6 @@ Fixes #371 ([`b4f0317`](https://github.com/python-gitlab/python-gitlab/commit/b4
9767
9922
 
9768
9923
  Fixes #421 ([`29bd813`](https://github.com/python-gitlab/python-gitlab/commit/29bd81336828b72a47673c76862cb4b532401766))
9769
9924
 
9770
- * make trigger_pipeline return the pipeline
9771
-
9772
- Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
9773
-
9774
- 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))
9775
-
9776
9925
  * Add Gitlab and User events support
9777
9926
 
9778
9927
  Closes #412 ([`1ca3080`](https://github.com/python-gitlab/python-gitlab/commit/1ca30807566ca3ac1bd295516a122cd75ba9031f))
@@ -9799,14 +9948,14 @@ Fixes #416 ([`e957817`](https://github.com/python-gitlab/python-gitlab/commit/e9
9799
9948
 
9800
9949
  Adding the supported version badge ([`5149651`](https://github.com/python-gitlab/python-gitlab/commit/5149651fb4d21dabfde012238abad470bb0aa9b5))
9801
9950
 
9951
+ * Adding the supported version badge ([`9253661`](https://github.com/python-gitlab/python-gitlab/commit/9253661c381e9298643e689074c00b7fae831955))
9952
+
9802
9953
  * Merge pull request #409 from movermeyer/patch-2
9803
9954
 
9804
9955
  Clarifying what compatible means ([`8a953c2`](https://github.com/python-gitlab/python-gitlab/commit/8a953c2d3ede2bdd672323621b4e72a5f660f6f5))
9805
9956
 
9806
9957
  * Clarifying what supports means ([`b980c9f`](https://github.com/python-gitlab/python-gitlab/commit/b980c9f7db97f8d55ed50d116a1d9fcf817ebf0d))
9807
9958
 
9808
- * Adding the supported version badge ([`9253661`](https://github.com/python-gitlab/python-gitlab/commit/9253661c381e9298643e689074c00b7fae831955))
9809
-
9810
9959
  * Prepare v1.2.0 ([`3a119cd`](https://github.com/python-gitlab/python-gitlab/commit/3a119cd6a4841fae5b2f116512830ed12b4b29f0))
9811
9960
 
9812
9961
  * Respect content of REQUESTS_CA_BUNDLE and *_proxy envvars
@@ -9906,33 +10055,29 @@ Fixes #361 ([`b33265c`](https://github.com/python-gitlab/python-gitlab/commit/b3
9906
10055
 
9907
10056
  Expected HTTP response for subscribe is 201 ([`f624d2e`](https://github.com/python-gitlab/python-gitlab/commit/f624d2e642e4ebabb8d330595f3fe0fc9882add7))
9908
10057
 
10058
+ * Expected HTTP response for subscribe is 201
10059
+
10060
+ It seems that the GitLab API gives HTTP response code 201 ("created") when
10061
+ successfully subscribing to an object, not 200. ([`0d5f275`](https://github.com/python-gitlab/python-gitlab/commit/0d5f275d9b23d20da45ac675da10bfd428327a2f))
10062
+
9909
10063
  * Merge pull request #374 from benjamb/typos
9910
10064
 
9911
10065
  Fix typos in docs ([`8f3b656`](https://github.com/python-gitlab/python-gitlab/commit/8f3b656d007c95fa2fa99389aaf326a2eb998e16))
9912
10066
 
10067
+ * Fix typos in docs ([`7c886de`](https://github.com/python-gitlab/python-gitlab/commit/7c886dea5e9c42c88be01ef077532202cbad65ea))
10068
+
10069
+ * Fix link to settings API ([`be386b8`](https://github.com/python-gitlab/python-gitlab/commit/be386b81049e84a4b9a0daeb6cbba15ddb4b041e))
10070
+
9913
10071
  * Update pagination docs for ProjectCommit
9914
10072
 
9915
10073
  In v3 pagination starts at page 0 instead of page 1.
9916
10074
 
9917
10075
  Fixes: #377 ([`c6c0686`](https://github.com/python-gitlab/python-gitlab/commit/c6c068629273393eaf4f7063e1e01c5f0528c4ec))
9918
10076
 
9919
- * Expected HTTP response for subscribe is 201
9920
-
9921
- It seems that the GitLab API gives HTTP response code 201 ("created") when
9922
- successfully subscribing to an object, not 200. ([`0d5f275`](https://github.com/python-gitlab/python-gitlab/commit/0d5f275d9b23d20da45ac675da10bfd428327a2f))
9923
-
9924
- * Fix typos in docs ([`7c886de`](https://github.com/python-gitlab/python-gitlab/commit/7c886dea5e9c42c88be01ef077532202cbad65ea))
9925
-
9926
- * Fix link to settings API ([`be386b8`](https://github.com/python-gitlab/python-gitlab/commit/be386b81049e84a4b9a0daeb6cbba15ddb4b041e))
9927
-
9928
10077
  * Revert "Add unit tests for mixin exceptions"
9929
10078
 
9930
10079
  This reverts commit 4ee139ad5c58006da1f9af93fdd4e70592e6daa0. ([`084b905`](https://github.com/python-gitlab/python-gitlab/commit/084b905f78046d894fc76d3ad545689312b94bb8))
9931
10080
 
9932
- * Project pipeline jobs ([`b861837`](https://github.com/python-gitlab/python-gitlab/commit/b861837b25bb45dbe40b035dff5f41898450e22b))
9933
-
9934
- * Project pipeline schedules ([`34e32a0`](https://github.com/python-gitlab/python-gitlab/commit/34e32a0944b65583a57b97bf0124b8935ab49fa7))
9935
-
9936
10081
  * Add support for project housekeeping
9937
10082
 
9938
10083
  Closes #368 ([`9ede652`](https://github.com/python-gitlab/python-gitlab/commit/9ede6529884e850532758ae218465c1b7584c2d4))
@@ -9994,6 +10139,8 @@ Add docs and unit tests ([`e9b1583`](https://github.com/python-gitlab/python-git
9994
10139
 
9995
10140
  Add mattermost service support ([`82897b7`](https://github.com/python-gitlab/python-gitlab/commit/82897b7c0461f069f5067de3ebf787466a6c4486))
9996
10141
 
10142
+ * Add mattermost service support ([`b5e6a46`](https://github.com/python-gitlab/python-gitlab/commit/b5e6a469e7e299dfa09bac730daee48432454075))
10143
+
9997
10144
  * Add users custome attributes support ([`4fb2e43`](https://github.com/python-gitlab/python-gitlab/commit/4fb2e439803bd55868b91827a5fbaa448f1dff56))
9998
10145
 
9999
10146
  * 1.1.0 release ([`32f7e17`](https://github.com/python-gitlab/python-gitlab/commit/32f7e17208987fa345670421c333e22ae6aced6a))
@@ -10006,10 +10153,10 @@ Closes #23 ([`fa89746`](https://github.com/python-gitlab/python-gitlab/commit/fa
10006
10153
 
10007
10154
  * Module's base objects serialization (#359)
10008
10155
 
10009
- Make gitlab objects serializable
10010
-
10011
- With current implementation of API v3 and v4 support, some instances
10012
- have properties of type module and are not serializable. Handle
10156
+ Make gitlab objects serializable
10157
+
10158
+ With current implementation of API v3 and v4 support, some instances
10159
+ have properties of type module and are not serializable. Handle
10013
10160
  these properties manually with setstate and getstate methods. ([`226e6ce`](https://github.com/python-gitlab/python-gitlab/commit/226e6ce9e5217367c896125a2b4b9d16afd2cf94))
10014
10161
 
10015
10162
  * Pagination generators: expose more information
@@ -10084,8 +10231,6 @@ so let's drop the _constructor_types definitions. ([`32ea62a`](https://githu
10084
10231
 
10085
10232
  Fixes #343 ([`dc504ab`](https://github.com/python-gitlab/python-gitlab/commit/dc504ab815cc9ad74a6a6beaf6faa88a5d99c293))
10086
10233
 
10087
- * Add mattermost service support ([`b5e6a46`](https://github.com/python-gitlab/python-gitlab/commit/b5e6a469e7e299dfa09bac730daee48432454075))
10088
-
10089
10234
  * ProjectFileManager.create: handle / in file paths
10090
10235
 
10091
10236
  Replace / with %2F as is done in other methods.
@@ -10118,8 +10263,8 @@ Closes #337 ([`8764903`](https://github.com/python-gitlab/python-gitlab/commit/8
10118
10263
 
10119
10264
  * Fix trigger variables in v4 API (#334)
10120
10265
 
10121
- Fix trigger variables in v4 API
10122
-
10266
+ Fix trigger variables in v4 API
10267
+
10123
10268
  Close #333 ([`ac430a3`](https://github.com/python-gitlab/python-gitlab/commit/ac430a3cac4be76efc02e4321f7ee88867d28712))
10124
10269
 
10125
10270
  * Prepare the 1.0.2 release ([`9e09cf6`](https://github.com/python-gitlab/python-gitlab/commit/9e09cf618a01e2366f2ae7d66874f4697567cfc3))
@@ -10291,14 +10436,14 @@ Support SSL verification via internal CA bundle ([`0e70dd9`](https://github.com/
10291
10436
 
10292
10437
  Docs: Add link to gitlab docs on obtaining a token ([`657f011`](https://github.com/python-gitlab/python-gitlab/commit/657f0119a3e13ceb07e4d0b17fa126260a4dafc7))
10293
10438
 
10294
- * update tox/travis test envs ([`759f6ed`](https://github.com/python-gitlab/python-gitlab/commit/759f6edaf71b456cc36e9de00157385c28e2e3e7))
10295
-
10296
- * Merge branch 'rework_api' ([`3ccdec0`](https://github.com/python-gitlab/python-gitlab/commit/3ccdec04525456c906f26ee2e931607a5d0dcd20))
10297
-
10298
10439
  * Docs: Add link to gitlab docs on obtaining a token
10299
10440
 
10300
10441
  I find these sort of links very user friendly 😅 ([`9b8b806`](https://github.com/python-gitlab/python-gitlab/commit/9b8b8060a56465d8aade2368033172387e15527a))
10301
10442
 
10443
+ * update tox/travis test envs ([`759f6ed`](https://github.com/python-gitlab/python-gitlab/commit/759f6edaf71b456cc36e9de00157385c28e2e3e7))
10444
+
10445
+ * Merge branch 'rework_api' ([`3ccdec0`](https://github.com/python-gitlab/python-gitlab/commit/3ccdec04525456c906f26ee2e931607a5d0dcd20))
10446
+
10302
10447
  * Make the project services work in v4 ([`2816c1a`](https://github.com/python-gitlab/python-gitlab/commit/2816c1ae51b01214012679b74aa14de1a6696eb5))
10303
10448
 
10304
10449
  * Fix v3 tests ([`eee39a3`](https://github.com/python-gitlab/python-gitlab/commit/eee39a3a5f1ef3bccc45b0f23009531a9bf76801))
@@ -10325,42 +10470,12 @@ Match the exceptions raised in v3 for v4.
10325
10470
 
10326
10471
  Also update the doc strings with correct information. ([`c15ba3b`](https://github.com/python-gitlab/python-gitlab/commit/c15ba3b61065973da983ff792a34268a3ba75e12))
10327
10472
 
10328
- * Merge pull request #282 from velvetz7/docs_typo
10329
-
10330
- Fixed repository_compare examples ([`e87835f`](https://github.com/python-gitlab/python-gitlab/commit/e87835fe02aeb174c1b0355a1733733d89b2e404))
10331
-
10332
- * Changed attribution reference ([`73be8f9`](https://github.com/python-gitlab/python-gitlab/commit/73be8f9a64b8a8db39f1a9d39b7bd677e1c68b0a))
10333
-
10334
10473
  * Fix merge_when_build_succeeds attribute name
10335
10474
 
10336
10475
  Fixes #285 ([`374a6c4`](https://github.com/python-gitlab/python-gitlab/commit/374a6c4544931a564221cccabb6abbda9e6bc558))
10337
10476
 
10338
- * Fix merge_when_build_succeeds attribute name
10339
-
10340
- Fixes #285 ([`67d9a89`](https://github.com/python-gitlab/python-gitlab/commit/67d9a8989b76af25fca1b5f0f82c4af5e81332eb))
10341
-
10342
10477
  * Merge branch 'master' into rework_api ([`274b3bf`](https://github.com/python-gitlab/python-gitlab/commit/274b3bffc3365eca2fd3fa10c1e7e9b49990533e))
10343
10478
 
10344
- * Merge pull request #286 from jonafato/python3.6
10345
-
10346
- Declare support for Python 3.6 ([`cb8c1a1`](https://github.com/python-gitlab/python-gitlab/commit/cb8c1a198276cc6aa2a3ddbf52bcc3866418e9fd))
10347
-
10348
- * Merge pull request #287 from guyzmo/features/dependency_injection
10349
-
10350
- Added dependency injection support for Session ([`46b7f48`](https://github.com/python-gitlab/python-gitlab/commit/46b7f488c3dcd6f2e975f69fe1a378b920721b87))
10351
-
10352
- * Added dependency injection support for Session
10353
-
10354
- fixes #280
10355
-
10356
- Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net> ([`116e3d4`](https://github.com/python-gitlab/python-gitlab/commit/116e3d42c9e94c6d23128533da6c25920ff04d0f))
10357
-
10358
- * Declare support for Python 3.6
10359
-
10360
- Add Python 3.6 environments to `tox.ini` and `.travis.yml`. ([`4c916b8`](https://github.com/python-gitlab/python-gitlab/commit/4c916b893e84993369d06dee5523cd00ea6b626a))
10361
-
10362
- * fixed repository_compare examples ([`261db17`](https://github.com/python-gitlab/python-gitlab/commit/261db178f2e91b68f45a6535009367b56af75769))
10363
-
10364
10479
  * remove useless attributes ([`fe3a06c`](https://github.com/python-gitlab/python-gitlab/commit/fe3a06c2a6a9776c22ff9120c99b3654e02e5e50))
10365
10480
 
10366
10481
  * Refactor the CLI
@@ -10378,20 +10493,12 @@ For now v4 isn't working at all. ([`e3d50b5`](https://github.com/python-gitl
10378
10493
 
10379
10494
  * Fix GroupProject constructor ([`afe4b05`](https://github.com/python-gitlab/python-gitlab/commit/afe4b05de9833d450b9bb52f572be5663d8f4dd7))
10380
10495
 
10381
- * Merge pull request #276 from elisarver/patch-1
10382
-
10383
- Missing expires_at in GroupMembers update ([`f19681f`](https://github.com/python-gitlab/python-gitlab/commit/f19681fc0d1aeb36f56c9c7f07aac83915a59497))
10384
-
10385
10496
  * minor doc updates ([`6e5a6ec`](https://github.com/python-gitlab/python-gitlab/commit/6e5a6ec1f7c2993697c359b2bcab0e1324e219bc))
10386
10497
 
10387
10498
  * Fix changelog and release notes inclusion in sdist ([`1922cd5`](https://github.com/python-gitlab/python-gitlab/commit/1922cd5d9b182902586170927acb758f8a6f614c))
10388
10499
 
10389
10500
  * Rework documentation ([`1a7f672`](https://github.com/python-gitlab/python-gitlab/commit/1a7f67274c9175f46a76c5ae0d8bde7ca2731014))
10390
10501
 
10391
- * Missing expires_at in GroupMembers update
10392
-
10393
- CreateAttrs was set twice in GroupMember due to possible copy-paste error. ([`d41e972`](https://github.com/python-gitlab/python-gitlab/commit/d41e9728c0f583e031313419bcf998bfdfb8688a))
10394
-
10395
10502
  * Remove unused future.division import
10396
10503
 
10397
10504
  We don't do math. ([`2a0afc5`](https://github.com/python-gitlab/python-gitlab/commit/2a0afc50311c727ee3bef700553fb60924439ef4))
@@ -10404,8 +10511,6 @@ We don't do math. ([`2a0afc5`](https://github.com/python-gitlab/python-gitla
10404
10511
 
10405
10512
  * 0.10 is old history: remove the upgrade doc ([`76e9b12`](https://github.com/python-gitlab/python-gitlab/commit/76e9b1211fd23a3565ab00be0b169d782a14dca7))
10406
10513
 
10407
- * 0.21.2 release ([`19f1b1a`](https://github.com/python-gitlab/python-gitlab/commit/19f1b1a968aba7bd9604511c015e8930e5111324))
10408
-
10409
10514
  * Add laziness to get()
10410
10515
 
10411
10516
  The goal is to create empty objects (no API called) but give access to
@@ -10424,16 +10529,8 @@ gl.project_issue_notes) ([`61fba84`](https://github.com/python-gitlab/python-git
10424
10529
 
10425
10530
  * Add new event types to ProjectHook ([`a0f215c`](https://github.com/python-gitlab/python-gitlab/commit/a0f215c2deb16ce5d9e96de5b36e4f360ac1b168))
10426
10531
 
10427
- * Merge pull request #272 from astronouth7303/patch-1
10428
-
10429
- Add new event types to ProjectHook ([`4ce2794`](https://github.com/python-gitlab/python-gitlab/commit/4ce2794b284647283c861d28f77a6d63ba809bc9))
10430
-
10431
10532
  * Fix a few remaining methods ([`3488c5c`](https://github.com/python-gitlab/python-gitlab/commit/3488c5cf137b0dbe6e96a4412698bafaaa640143))
10432
10533
 
10433
- * Add new event types to ProjectHook
10434
-
10435
- These are being returned in the live API, but can't set them. ([`1a58f7e`](https://github.com/python-gitlab/python-gitlab/commit/1a58f7e522bb4784e2127582b2d46d6991a8f2a9))
10436
-
10437
10534
  * tests for objects mixins ([`68f4114`](https://github.com/python-gitlab/python-gitlab/commit/68f411478f0d693f7d37436a9280847cb610a15b))
10438
10535
 
10439
10536
  * Add tests for managers mixins ([`b776c5e`](https://github.com/python-gitlab/python-gitlab/commit/b776c5ee66a84f89acd4126ea729c77196e07f66))
@@ -10446,30 +10543,28 @@ These are being returned in the live API, but can't set them. ([`1a58f7e`](h
10446
10543
 
10447
10544
  * Merge branch 'rework_api' of github.com:python-gitlab/python-gitlab into rework_api ([`a5b39a5`](https://github.com/python-gitlab/python-gitlab/commit/a5b39a526035c1868a39f0533f019e5e24eeb4db))
10448
10545
 
10449
- * Fixed spelling mistake (#269) ([`2b1e0f0`](https://github.com/python-gitlab/python-gitlab/commit/2b1e0f0041ae04134d38a5db47cc301aa757d7ea))
10450
-
10451
- * Tests and fixes for the http_* methods ([`ff82c88`](https://github.com/python-gitlab/python-gitlab/commit/ff82c88df5794dbf0020989cfc52412cefc4c176))
10546
+ * Tests and fixes for the http_* methods ([`904c9fa`](https://github.com/python-gitlab/python-gitlab/commit/904c9fadaa892cb4a2dbd12e564841281aa86c51))
10452
10547
 
10453
- * make the tests pass ([`f754f21`](https://github.com/python-gitlab/python-gitlab/commit/f754f21dd9138142b923cf3b919187a4638b674a))
10548
+ * make the tests pass ([`d0a9334`](https://github.com/python-gitlab/python-gitlab/commit/d0a933404f4acec28956e1f07e9dcc3261fae87e))
10454
10549
 
10455
10550
  * Migrate all v4 objects to new API
10456
10551
 
10457
10552
  Some things are probably broken. Next step is writting unit and
10458
10553
  functional tests.
10459
10554
 
10460
- And fix. ([`f418767`](https://github.com/python-gitlab/python-gitlab/commit/f418767ec94c430aabd132d189d1c5e9e2370e68))
10555
+ And fix. ([`6be990c`](https://github.com/python-gitlab/python-gitlab/commit/6be990cef8725eca6954e9098f83ff8f4ad202a8))
10461
10556
 
10462
- * Simplify SidekiqManager ([`0467f77`](https://github.com/python-gitlab/python-gitlab/commit/0467f779eb1d2649f3626e3817531511d3397038))
10557
+ * Simplify SidekiqManager ([`230b567`](https://github.com/python-gitlab/python-gitlab/commit/230b5679ee083dc8a5f3a8deb0bef2dab0fe12d6))
10463
10558
 
10464
- * New API: handle gl.auth() and CurrentUser* classes ([`a1c9e2b`](https://github.com/python-gitlab/python-gitlab/commit/a1c9e2bce1d0df0eff0468fabad4919d0565f09f))
10559
+ * New API: handle gl.auth() and CurrentUser* classes ([`7193034`](https://github.com/python-gitlab/python-gitlab/commit/71930345be5b7a1a89f7f823a563cb6cd4bd790b))
10465
10560
 
10466
10561
  * Add support for managers in objects for new API
10467
10562
 
10468
- Convert User* to the new REST* API. ([`a506902`](https://github.com/python-gitlab/python-gitlab/commit/a50690288f9c03ec37ff374839d1f465c74ecf0a))
10563
+ Convert User* to the new REST* API. ([`5319d0d`](https://github.com/python-gitlab/python-gitlab/commit/5319d0de2fa13e6ed7c65b4d8e9dc26ccb6f18eb))
10469
10564
 
10470
- * pep8 ([`9fbdb94`](https://github.com/python-gitlab/python-gitlab/commit/9fbdb9461a660181a3a268cd398865cafd0b4a89))
10565
+ * pep8 ([`29cb0e4`](https://github.com/python-gitlab/python-gitlab/commit/29cb0e42116ad066e6aabb39362785fd61c65924))
10471
10566
 
10472
- * Move the mixins in their own module ([`fb5782e`](https://github.com/python-gitlab/python-gitlab/commit/fb5782e691a11aad35e57f55af139ec4b951a225))
10567
+ * Move the mixins in their own module ([`0748c89`](https://github.com/python-gitlab/python-gitlab/commit/0748c8993f0afa6ca89836601a19c7aeeaaf8397))
10473
10568
 
10474
10569
  * Rework the manager and object classes
10475
10570
 
@@ -10483,9 +10578,9 @@ Both ways (old and new) can be used together, migrate only a few v4
10483
10578
  objects to the new method as a POC.
10484
10579
 
10485
10580
  TODO: handle managers on generated objects (have to deal with attributes
10486
- in the URLs). ([`993d576`](https://github.com/python-gitlab/python-gitlab/commit/993d576ba794a29aacd56a7610e79a331789773d))
10581
+ in the URLs). ([`29e0bae`](https://github.com/python-gitlab/python-gitlab/commit/29e0baee39728472abd6b67822b04518c3985d97))
10487
10582
 
10488
- * pep8 again ([`d809fef`](https://github.com/python-gitlab/python-gitlab/commit/d809fefaf5b382f13f8f9da344320741e553ced1))
10583
+ * pep8 again ([`b7298de`](https://github.com/python-gitlab/python-gitlab/commit/b7298dea19f37d3ae0dfb3e233f3bc7cf5bda10d))
10489
10584
 
10490
10585
  * Add lower-level methods for Gitlab()
10491
10586
 
@@ -10497,36 +10592,30 @@ Multiple goals:
10497
10592
  gitlab server.
10498
10593
  * With this the objects gain control on how they should do requests.
10499
10594
  The complexities of dealing with object specifics will be moved in the
10500
- object classes where they belong. ([`c5ad540`](https://github.com/python-gitlab/python-gitlab/commit/c5ad54062ad767c0d2882f64381ad15c034e8872))
10501
-
10502
- * import urlencode() from six.moves.urllib.parse instead of from urllib (#268)
10503
-
10504
- Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
10505
-
10506
- `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))
10595
+ object classes where they belong. ([`7ddbd5e`](https://github.com/python-gitlab/python-gitlab/commit/7ddbd5e5e124be1d93fbc77da7229fc80062b35f))
10507
10596
 
10508
- * Tests and fixes for the http_* methods ([`904c9fa`](https://github.com/python-gitlab/python-gitlab/commit/904c9fadaa892cb4a2dbd12e564841281aa86c51))
10597
+ * Tests and fixes for the http_* methods ([`ff82c88`](https://github.com/python-gitlab/python-gitlab/commit/ff82c88df5794dbf0020989cfc52412cefc4c176))
10509
10598
 
10510
- * make the tests pass ([`d0a9334`](https://github.com/python-gitlab/python-gitlab/commit/d0a933404f4acec28956e1f07e9dcc3261fae87e))
10599
+ * make the tests pass ([`f754f21`](https://github.com/python-gitlab/python-gitlab/commit/f754f21dd9138142b923cf3b919187a4638b674a))
10511
10600
 
10512
10601
  * Migrate all v4 objects to new API
10513
10602
 
10514
10603
  Some things are probably broken. Next step is writting unit and
10515
10604
  functional tests.
10516
10605
 
10517
- And fix. ([`6be990c`](https://github.com/python-gitlab/python-gitlab/commit/6be990cef8725eca6954e9098f83ff8f4ad202a8))
10606
+ And fix. ([`f418767`](https://github.com/python-gitlab/python-gitlab/commit/f418767ec94c430aabd132d189d1c5e9e2370e68))
10518
10607
 
10519
- * Simplify SidekiqManager ([`230b567`](https://github.com/python-gitlab/python-gitlab/commit/230b5679ee083dc8a5f3a8deb0bef2dab0fe12d6))
10608
+ * Simplify SidekiqManager ([`0467f77`](https://github.com/python-gitlab/python-gitlab/commit/0467f779eb1d2649f3626e3817531511d3397038))
10520
10609
 
10521
- * New API: handle gl.auth() and CurrentUser* classes ([`7193034`](https://github.com/python-gitlab/python-gitlab/commit/71930345be5b7a1a89f7f823a563cb6cd4bd790b))
10610
+ * New API: handle gl.auth() and CurrentUser* classes ([`a1c9e2b`](https://github.com/python-gitlab/python-gitlab/commit/a1c9e2bce1d0df0eff0468fabad4919d0565f09f))
10522
10611
 
10523
10612
  * Add support for managers in objects for new API
10524
10613
 
10525
- Convert User* to the new REST* API. ([`5319d0d`](https://github.com/python-gitlab/python-gitlab/commit/5319d0de2fa13e6ed7c65b4d8e9dc26ccb6f18eb))
10614
+ Convert User* to the new REST* API. ([`a506902`](https://github.com/python-gitlab/python-gitlab/commit/a50690288f9c03ec37ff374839d1f465c74ecf0a))
10526
10615
 
10527
- * pep8 ([`29cb0e4`](https://github.com/python-gitlab/python-gitlab/commit/29cb0e42116ad066e6aabb39362785fd61c65924))
10616
+ * pep8 ([`9fbdb94`](https://github.com/python-gitlab/python-gitlab/commit/9fbdb9461a660181a3a268cd398865cafd0b4a89))
10528
10617
 
10529
- * Move the mixins in their own module ([`0748c89`](https://github.com/python-gitlab/python-gitlab/commit/0748c8993f0afa6ca89836601a19c7aeeaaf8397))
10618
+ * Move the mixins in their own module ([`fb5782e`](https://github.com/python-gitlab/python-gitlab/commit/fb5782e691a11aad35e57f55af139ec4b951a225))
10530
10619
 
10531
10620
  * Rework the manager and object classes
10532
10621
 
@@ -10540,9 +10629,9 @@ Both ways (old and new) can be used together, migrate only a few v4
10540
10629
  objects to the new method as a POC.
10541
10630
 
10542
10631
  TODO: handle managers on generated objects (have to deal with attributes
10543
- in the URLs). ([`29e0bae`](https://github.com/python-gitlab/python-gitlab/commit/29e0baee39728472abd6b67822b04518c3985d97))
10632
+ in the URLs). ([`993d576`](https://github.com/python-gitlab/python-gitlab/commit/993d576ba794a29aacd56a7610e79a331789773d))
10544
10633
 
10545
- * pep8 again ([`b7298de`](https://github.com/python-gitlab/python-gitlab/commit/b7298dea19f37d3ae0dfb3e233f3bc7cf5bda10d))
10634
+ * pep8 again ([`d809fef`](https://github.com/python-gitlab/python-gitlab/commit/d809fefaf5b382f13f8f9da344320741e553ced1))
10546
10635
 
10547
10636
  * Add lower-level methods for Gitlab()
10548
10637
 
@@ -10554,7 +10643,63 @@ Multiple goals:
10554
10643
  gitlab server.
10555
10644
  * With this the objects gain control on how they should do requests.
10556
10645
  The complexities of dealing with object specifics will be moved in the
10557
- object classes where they belong. ([`7ddbd5e`](https://github.com/python-gitlab/python-gitlab/commit/7ddbd5e5e124be1d93fbc77da7229fc80062b35f))
10646
+ object classes where they belong. ([`c5ad540`](https://github.com/python-gitlab/python-gitlab/commit/c5ad54062ad767c0d2882f64381ad15c034e8872))
10647
+
10648
+ * Merge pull request #282 from velvetz7/docs_typo
10649
+
10650
+ Fixed repository_compare examples ([`e87835f`](https://github.com/python-gitlab/python-gitlab/commit/e87835fe02aeb174c1b0355a1733733d89b2e404))
10651
+
10652
+ * Changed attribution reference ([`73be8f9`](https://github.com/python-gitlab/python-gitlab/commit/73be8f9a64b8a8db39f1a9d39b7bd677e1c68b0a))
10653
+
10654
+ * fixed repository_compare examples ([`261db17`](https://github.com/python-gitlab/python-gitlab/commit/261db178f2e91b68f45a6535009367b56af75769))
10655
+
10656
+ * Fix merge_when_build_succeeds attribute name
10657
+
10658
+ Fixes #285 ([`67d9a89`](https://github.com/python-gitlab/python-gitlab/commit/67d9a8989b76af25fca1b5f0f82c4af5e81332eb))
10659
+
10660
+ * Merge pull request #286 from jonafato/python3.6
10661
+
10662
+ Declare support for Python 3.6 ([`cb8c1a1`](https://github.com/python-gitlab/python-gitlab/commit/cb8c1a198276cc6aa2a3ddbf52bcc3866418e9fd))
10663
+
10664
+ * Declare support for Python 3.6
10665
+
10666
+ Add Python 3.6 environments to `tox.ini` and `.travis.yml`. ([`4c916b8`](https://github.com/python-gitlab/python-gitlab/commit/4c916b893e84993369d06dee5523cd00ea6b626a))
10667
+
10668
+ * Merge pull request #287 from guyzmo/features/dependency_injection
10669
+
10670
+ Added dependency injection support for Session ([`46b7f48`](https://github.com/python-gitlab/python-gitlab/commit/46b7f488c3dcd6f2e975f69fe1a378b920721b87))
10671
+
10672
+ * Added dependency injection support for Session
10673
+
10674
+ fixes #280
10675
+
10676
+ Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net> ([`116e3d4`](https://github.com/python-gitlab/python-gitlab/commit/116e3d42c9e94c6d23128533da6c25920ff04d0f))
10677
+
10678
+ * Merge pull request #276 from elisarver/patch-1
10679
+
10680
+ Missing expires_at in GroupMembers update ([`f19681f`](https://github.com/python-gitlab/python-gitlab/commit/f19681fc0d1aeb36f56c9c7f07aac83915a59497))
10681
+
10682
+ * Missing expires_at in GroupMembers update
10683
+
10684
+ CreateAttrs was set twice in GroupMember due to possible copy-paste error. ([`d41e972`](https://github.com/python-gitlab/python-gitlab/commit/d41e9728c0f583e031313419bcf998bfdfb8688a))
10685
+
10686
+ * 0.21.2 release ([`19f1b1a`](https://github.com/python-gitlab/python-gitlab/commit/19f1b1a968aba7bd9604511c015e8930e5111324))
10687
+
10688
+ * Merge pull request #272 from astronouth7303/patch-1
10689
+
10690
+ Add new event types to ProjectHook ([`4ce2794`](https://github.com/python-gitlab/python-gitlab/commit/4ce2794b284647283c861d28f77a6d63ba809bc9))
10691
+
10692
+ * Add new event types to ProjectHook
10693
+
10694
+ These are being returned in the live API, but can't set them. ([`1a58f7e`](https://github.com/python-gitlab/python-gitlab/commit/1a58f7e522bb4784e2127582b2d46d6991a8f2a9))
10695
+
10696
+ * Fixed spelling mistake (#269) ([`2b1e0f0`](https://github.com/python-gitlab/python-gitlab/commit/2b1e0f0041ae04134d38a5db47cc301aa757d7ea))
10697
+
10698
+ * import urlencode() from six.moves.urllib.parse instead of from urllib (#268)
10699
+
10700
+ Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
10701
+
10702
+ `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))
10558
10703
 
10559
10704
  * Prepare for v4 API testing ([`38bff3e`](https://github.com/python-gitlab/python-gitlab/commit/38bff3eb43ee6526b3e3b35c8207fac9ef9bc9d9))
10560
10705
 
@@ -10620,14 +10765,6 @@ Fixes #267 ([`a3b8858`](https://github.com/python-gitlab/python-gitlab/commit/a3
10620
10765
 
10621
10766
  * [v4] Remove deprecated objects methods and classes ([`8e4b65f`](https://github.com/python-gitlab/python-gitlab/commit/8e4b65fc78f47a2be658b11ae30f84da66b13c2a))
10622
10767
 
10623
- * Deprecate parameter related methods in gitlab.Gitlab
10624
-
10625
- These methods change the auth information and URL, and might have some
10626
- unwanted side effects.
10627
-
10628
- Users should create a new Gitlab instance to change the URL and
10629
- authentication information. ([`7ac1e4c`](https://github.com/python-gitlab/python-gitlab/commit/7ac1e4c1fe4ccff8c8ee4a9ae212a227d5499bce))
10630
-
10631
10768
  * pop8 fixes ([`441244b`](https://github.com/python-gitlab/python-gitlab/commit/441244b8d91ac0674195dbb2151570712d234d15))
10632
10769
 
10633
10770
  * [v4] Users confirm attribute renamed skip_confirmation ([`cd98903`](https://github.com/python-gitlab/python-gitlab/commit/cd98903d6c1a2cbf21d533d6d6d4ea58917930b1))
@@ -10707,6 +10844,14 @@ some code duplication, but it should be maintainable. ([`e853a30`](https://githu
10707
10844
 
10708
10845
  * Initial, non-functional v4 support ([`c02dabd`](https://github.com/python-gitlab/python-gitlab/commit/c02dabd25507a14d666e85c7f1ea7831c64d0394))
10709
10846
 
10847
+ * Deprecate parameter related methods in gitlab.Gitlab
10848
+
10849
+ These methods change the auth information and URL, and might have some
10850
+ unwanted side effects.
10851
+
10852
+ Users should create a new Gitlab instance to change the URL and
10853
+ authentication information. ([`7ac1e4c`](https://github.com/python-gitlab/python-gitlab/commit/7ac1e4c1fe4ccff8c8ee4a9ae212a227d5499bce))
10854
+
10710
10855
  * Add 'search' attribute to projects.list()
10711
10856
 
10712
10857
  projects.search() has been deprecated by Gitlab ([`ce3dd0d`](https://github.com/python-gitlab/python-gitlab/commit/ce3dd0d1ac3fbed3cf671720e273470fb1ccdbc6))
@@ -10763,6 +10908,10 @@ Add time_stats to ProjectMergeRequest ([`f05a24b`](https://github.com/python-git
10763
10908
 
10764
10909
  Make GroupProject inherit from Project ([`20d6678`](https://github.com/python-gitlab/python-gitlab/commit/20d667840ab7097260d453e9a79b7377f216bc1c))
10765
10910
 
10911
+ * Make GroupProject inherit from Project
10912
+
10913
+ Fixes #209 ([`380bcc4`](https://github.com/python-gitlab/python-gitlab/commit/380bcc4cce66d7b2c080f258a1acb0d14a5a1fc3))
10914
+
10766
10915
  * Stop listing if recursion limit is hit (#234) ([`989f3b7`](https://github.com/python-gitlab/python-gitlab/commit/989f3b706d97045f4ea6af69fd11233e2f54adbf))
10767
10916
 
10768
10917
  * Provide API wrapper for cherry picking commits (#236) ([`22bf128`](https://github.com/python-gitlab/python-gitlab/commit/22bf12827387cb1719bacae6c0c745cd768eee6c))
@@ -10775,10 +10924,6 @@ Change to correct logic of functions ([`cc4fe78`](https://github.com/python-gitl
10775
10924
 
10776
10925
  * Change to correct logic of functions ([`889bbe5`](https://github.com/python-gitlab/python-gitlab/commit/889bbe57d07966f1f146245db1e62accd5b23d93))
10777
10926
 
10778
- * Make GroupProject inherit from Project
10779
-
10780
- Fixes #209 ([`380bcc4`](https://github.com/python-gitlab/python-gitlab/commit/380bcc4cce66d7b2c080f258a1acb0d14a5a1fc3))
10781
-
10782
10927
  * Implement pipeline creation API (#237) ([`8c27e70`](https://github.com/python-gitlab/python-gitlab/commit/8c27e70b821e02921dfec4f8e4c6b77b5b284009))
10783
10928
 
10784
10929
  * Properly handle extra args when listing with all=True
@@ -10809,18 +10954,18 @@ Fixes #209 ([`35339d6`](https://github.com/python-gitlab/python-gitlab/commit/35
10809
10954
 
10810
10955
  * Changelog: improvements. Fixes #229 (#230)
10811
10956
 
10812
- + change indentation so bullet points are not treated as quote
10813
- + add links to releases
10814
- + add dates to releases
10957
+ + change indentation so bullet points are not treated as quote
10958
+ + add links to releases
10959
+ + add dates to releases
10815
10960
  + use releases as headers ([`37ee7ea`](https://github.com/python-gitlab/python-gitlab/commit/37ee7ea6a9354c0ea5bd618d48b4a2a3ddbc950c))
10816
10961
 
10817
10962
  * Time tracking (#222)
10818
10963
 
10819
- * Added gitlab time tracking features
10820
-
10821
- - get/set/remove estimated time per issue
10822
- - get/set/remove time spent per issue
10823
-
10964
+ * Added gitlab time tracking features
10965
+
10966
+ - get/set/remove estimated time per issue
10967
+ - get/set/remove time spent per issue
10968
+
10824
10969
  * Added documentation for time tracking functions ([`92151b2`](https://github.com/python-gitlab/python-gitlab/commit/92151b22b5b03b3d529caf1865a2e35738a2f3d2))
10825
10970
 
10826
10971
  * 0.19 release ([`cd69624`](https://github.com/python-gitlab/python-gitlab/commit/cd696240ec9000ce12c4232db3436fbca58b8fdd))
@@ -10840,6 +10985,8 @@ This fixes the tests. ([`41ca449`](https://github.com/python-gitlab/python-gitla
10840
10985
 
10841
10986
  added due_date attribute to ProjectIssue ([`1e0ae59`](https://github.com/python-gitlab/python-gitlab/commit/1e0ae591616b297739bb5f35db6697eee88909a3))
10842
10987
 
10988
+ * fixes gpocentek/python-gitlab#215 ([`58708b1`](https://github.com/python-gitlab/python-gitlab/commit/58708b186e71289427cbce8decfeab28fdf66ad6))
10989
+
10843
10990
  * Merge pull request #220 from alexwidener/master
10844
10991
 
10845
10992
  Added pipeline_events to ProjectHook attrs ([`19c7784`](https://github.com/python-gitlab/python-gitlab/commit/19c77845a2d69bed180f175f3a98761655631d0f))
@@ -10848,8 +10995,6 @@ Added pipeline_events to ProjectHook attrs ([`19c7784`](https://github.com/pytho
10848
10995
 
10849
10996
  Ran tests, all passed. ([`3f98e03`](https://github.com/python-gitlab/python-gitlab/commit/3f98e0345c451a8ecb7d46d727acf7725ce73d80))
10850
10997
 
10851
- * fixes gpocentek/python-gitlab#215 ([`58708b1`](https://github.com/python-gitlab/python-gitlab/commit/58708b186e71289427cbce8decfeab28fdf66ad6))
10852
-
10853
10998
  * document the dynamic aspect of objects ([`2f274bc`](https://github.com/python-gitlab/python-gitlab/commit/2f274bcd0bfb9fef2a2682445843b7804980ecf6))
10854
10999
 
10855
11000
  * Deploy keys: rework enable/disable
@@ -10935,6 +11080,12 @@ Rename the method to make what it does more explicit. ([`7453895`](https://githu
10935
11080
 
10936
11081
  * Merge branch 'features/personal_snippets' of https://github.com/guyzmo/python-gitlab into guyzmo-features/personal_snippets ([`26c8a0f`](https://github.com/python-gitlab/python-gitlab/commit/26c8a0f25707dafdf772d1e7ed455ee065b7e277))
10937
11082
 
11083
+ * Added support for Snippets (new API in Gitlab 8.15)
11084
+
11085
+ cf [Gitlab-CE MR !6373](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6373)
11086
+
11087
+ Signed-off-by: Guyzmo <guyzmo+github@m0g.net> ([`6022dfe`](https://github.com/python-gitlab/python-gitlab/commit/6022dfec44c67f7f45b0c3274f5eef02e8ac93f0))
11088
+
10938
11089
  * [CLI] Fix wrong use of arguments
10939
11090
 
10940
11091
  The previous change removed undefined arguments from the args dict,
@@ -10957,12 +11108,6 @@ First page is page 1.
10957
11108
 
10958
11109
  Fixes #197 ([`d86ca59`](https://github.com/python-gitlab/python-gitlab/commit/d86ca59dbe1d7f852416ec227a7d241d236424cf))
10959
11110
 
10960
- * Added support for Snippets (new API in Gitlab 8.15)
10961
-
10962
- cf [Gitlab-CE MR !6373](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6373)
10963
-
10964
- Signed-off-by: Guyzmo <guyzmo+github@m0g.net> ([`6022dfe`](https://github.com/python-gitlab/python-gitlab/commit/6022dfec44c67f7f45b0c3274f5eef02e8ac93f0))
10965
-
10966
11111
  * Merge pull request #192 from galet/gitlab-8.14-jira
10967
11112
 
10968
11113
  Fix JIRA service editing for GitLab 8.14+ ([`15d3362`](https://github.com/python-gitlab/python-gitlab/commit/15d336256c0dca756e189fb9746ab60be2d3c886))
@@ -10981,13 +11126,13 @@ moved to optional section. ([`343c131`](https://github.com/python-gitlab/python-
10981
11126
 
10982
11127
  Fix `should_remove_source_branch` ([`39288c8`](https://github.com/python-gitlab/python-gitlab/commit/39288c8fca774112ef1445c1281001a6190dd080))
10983
11128
 
11129
+ * Fix `should_remove_source_branch` ([`ac2bf24`](https://github.com/python-gitlab/python-gitlab/commit/ac2bf240510f26c477ea02eddb0425f2afb64fcc))
11130
+
10984
11131
  * Rework requests arguments
10985
11132
 
10986
11133
  * Factorize the code
10987
11134
  * Don't send empty auth information to requests (Fixes #188) ([`6e5734b`](https://github.com/python-gitlab/python-gitlab/commit/6e5734bd910ef2d04122c162bac44c8843793312))
10988
11135
 
10989
- * Fix `should_remove_source_branch` ([`ac2bf24`](https://github.com/python-gitlab/python-gitlab/commit/ac2bf240510f26c477ea02eddb0425f2afb64fcc))
10990
-
10991
11136
  * Add support for triggering a new build
10992
11137
 
10993
11138
  Fixes #184 ([`de05dae`](https://github.com/python-gitlab/python-gitlab/commit/de05daea0aa30e73c3a6f073bd173f23489c8339))
@@ -11006,12 +11151,12 @@ Please add these missing attrs ([`840cb89`](https://github.com/python-gitlab/pyt
11006
11151
 
11007
11152
  Add attr 'updated_at' to ProjectIssue ([`f290b2b`](https://github.com/python-gitlab/python-gitlab/commit/f290b2b6e413604bc1b966266ab87f301cd0e32b))
11008
11153
 
11154
+ * Add attr 'updated_at' to ProjectIssue ([`a25fef5`](https://github.com/python-gitlab/python-gitlab/commit/a25fef5076286543a522b907c51f2c9060262867))
11155
+
11009
11156
  * Merge pull request #1 from GregoryEAllen/GregoryEAllen-patch-1
11010
11157
 
11011
11158
  Add attr 'created_at' to ProjectIssueNote ([`14e7ccd`](https://github.com/python-gitlab/python-gitlab/commit/14e7ccd10f04b2aa5b986580bca52f9361af4858))
11012
11159
 
11013
- * Add attr 'updated_at' to ProjectIssue ([`a25fef5`](https://github.com/python-gitlab/python-gitlab/commit/a25fef5076286543a522b907c51f2c9060262867))
11014
-
11015
11160
  * Add attr 'created_at' to ProjectIssueNote ([`5b24122`](https://github.com/python-gitlab/python-gitlab/commit/5b2412217481b6ddf654277e0748585135a4fe64))
11016
11161
 
11017
11162
  * Add support for templates API
@@ -11073,12 +11218,6 @@ available on the object itself, not the manager. ([`c17ecc0`](https://github.com
11073
11218
 
11074
11219
  * Merge branch 'master-project-deploy-keys' of https://github.com/Asher256/python-gitlab into Asher256-master-project-deploy-keys ([`0c1817f`](https://github.com/python-gitlab/python-gitlab/commit/0c1817f8be113a949218332a61655a1a835248c5))
11075
11220
 
11076
- * add missing files in MANIFEST.in ([`12fca84`](https://github.com/python-gitlab/python-gitlab/commit/12fca8409156b910cab0240bf77726a0b0bca1e0))
11077
-
11078
- * ProjectHook: support the token attribute
11079
-
11080
- Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f84967444cc07cf9e7bdfd63324ad4890b370))
11081
-
11082
11221
  * Project deploy key response code = 201 ([`6bedfc3`](https://github.com/python-gitlab/python-gitlab/commit/6bedfc32e1f35e21ab3f1c6f0a2cf5c66b06a95e))
11083
11222
 
11084
11223
  * Fixing the response and project_id argument ([`72d982b`](https://github.com/python-gitlab/python-gitlab/commit/72d982b70b00f4018de3c1cac3bbf1507283aa33))
@@ -11093,6 +11232,12 @@ Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f
11093
11232
 
11094
11233
  * Feature: enable / disable the deploy key in a project ([`6310d71`](https://github.com/python-gitlab/python-gitlab/commit/6310d71c53558a201600bd48a174147623c99462))
11095
11234
 
11235
+ * add missing files in MANIFEST.in ([`12fca84`](https://github.com/python-gitlab/python-gitlab/commit/12fca8409156b910cab0240bf77726a0b0bca1e0))
11236
+
11237
+ * ProjectHook: support the token attribute
11238
+
11239
+ Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f84967444cc07cf9e7bdfd63324ad4890b370))
11240
+
11096
11241
  * Merge pull request #178 from cgumpert/master
11097
11242
 
11098
11243
  fix bug when retrieving changes for merge request ([`4689e73`](https://github.com/python-gitlab/python-gitlab/commit/4689e73b051fa985168cb648f49ee2dd6b6df523))
@@ -11196,10 +11341,6 @@ Fixes #156 ([`d09eaa0`](https://github.com/python-gitlab/python-gitlab/commit/d0
11196
11341
 
11197
11342
  * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`6f7e499`](https://github.com/python-gitlab/python-gitlab/commit/6f7e499a93b8e80181cb8c91a5b1d63ec76f1ba0))
11198
11343
 
11199
- * Add support for --all in CLI
11200
-
11201
- Fixes #153 ([`5860421`](https://github.com/python-gitlab/python-gitlab/commit/58604213efbe4d275be8da6615ed77d6f3510cbe))
11202
-
11203
11344
  * Merge pull request #155 from rafaeleyng/add-only_allow_merge_if_build_succeeds
11204
11345
 
11205
11346
  add only_allow_merge_if_build_succeeds option to project objects ([`26d97a7`](https://github.com/python-gitlab/python-gitlab/commit/26d97a736022c7f6828529920d2dbc88ecada18c))
@@ -11208,6 +11349,10 @@ add only_allow_merge_if_build_succeeds option to project objects ([`26d97a7`](ht
11208
11349
 
11209
11350
  * add only_allow_merge_if_build_succeeds option to project objects ([`94932a0`](https://github.com/python-gitlab/python-gitlab/commit/94932a038bc6a862ecaaa1da87141b832b10ceda))
11210
11351
 
11352
+ * Add support for --all in CLI
11353
+
11354
+ Fixes #153 ([`5860421`](https://github.com/python-gitlab/python-gitlab/commit/58604213efbe4d275be8da6615ed77d6f3510cbe))
11355
+
11211
11356
  * Merge pull request #154 from derek-austin/patch-1
11212
11357
 
11213
11358
  Create a project in a group ([`4390afb`](https://github.com/python-gitlab/python-gitlab/commit/4390afbff39deb5a33b857342dae6ee494684ce7))
@@ -11353,12 +11498,12 @@ Fixes #132 ([`922041d`](https://github.com/python-gitlab/python-gitlab/commit/92
11353
11498
 
11354
11499
  * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`e3ac32f`](https://github.com/python-gitlab/python-gitlab/commit/e3ac32f76a54e06c9c465c5acd41398988154fe9))
11355
11500
 
11356
- * add a contributing section in README ([`e6ffd69`](https://github.com/python-gitlab/python-gitlab/commit/e6ffd69bc745ce1a5b857fc248a3bef793e30138))
11357
-
11358
11501
  * doc: replace incorrect archive call() ([`e1f5e15`](https://github.com/python-gitlab/python-gitlab/commit/e1f5e1560e53019d45b113a71916ad9a7695afeb))
11359
11502
 
11360
11503
  * document namespaces API ([`1f52cd2`](https://github.com/python-gitlab/python-gitlab/commit/1f52cd2df35dab33dbf7429c8d514443278b549a))
11361
11504
 
11505
+ * add a contributing section in README ([`e6ffd69`](https://github.com/python-gitlab/python-gitlab/commit/e6ffd69bc745ce1a5b857fc248a3bef793e30138))
11506
+
11362
11507
  * Merge pull request #131 from chrwen-omicron/enable_container_registry
11363
11508
 
11364
11509
  Added a new project attribute to enable the container registry. ([`e0f2290`](https://github.com/python-gitlab/python-gitlab/commit/e0f2290fdbbb8d2ee4c9fcb9e531b04bb69232fa))
@@ -11469,12 +11614,16 @@ add `note_events` to project hooks attributes ([`c88c638`](https://github.com/py
11469
11614
 
11470
11615
  * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`2e0ac3f`](https://github.com/python-gitlab/python-gitlab/commit/2e0ac3fa4a66a63921b2aeee81dcc942a0849985))
11471
11616
 
11472
- * issues: add optional listing parameters ([`c85276a`](https://github.com/python-gitlab/python-gitlab/commit/c85276a6e6c5088ea6f2ecb13059488c9779ea2c))
11473
-
11474
11617
  * Merge pull request #125 from gpocentek/issue-122
11475
11618
 
11476
11619
  Add support for build artifacts and trace ([`80a1908`](https://github.com/python-gitlab/python-gitlab/commit/80a190888028db4eb1df0c4f827938e89b20f8a1))
11477
11620
 
11621
+ * Add support for build artifacts and trace
11622
+
11623
+ Fixes #122 ([`b3e0974`](https://github.com/python-gitlab/python-gitlab/commit/b3e0974451b49ab64866dc131bff59e5471ea620))
11624
+
11625
+ * issues: add optional listing parameters ([`c85276a`](https://github.com/python-gitlab/python-gitlab/commit/c85276a6e6c5088ea6f2ecb13059488c9779ea2c))
11626
+
11478
11627
  * Add support for commit comments
11479
11628
 
11480
11629
  https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/commits.md ([`412e2bc`](https://github.com/python-gitlab/python-gitlab/commit/412e2bc7e00a5229974388f795caefa1f0896273))
@@ -11493,19 +11642,19 @@ https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/commits.md ([`412e2bc`]
11493
11642
 
11494
11643
  * move into own class & create manager class ([`eb6c26f`](https://github.com/python-gitlab/python-gitlab/commit/eb6c26f51131fa171c71c19c28448e736f2f5243))
11495
11644
 
11645
+ * update docblock ([`cd13aff`](https://github.com/python-gitlab/python-gitlab/commit/cd13aff8a0df9136ba3e289fbccd85de3f159bb5))
11646
+
11647
+ * list projects under group ([`d4e2cd6`](https://github.com/python-gitlab/python-gitlab/commit/d4e2cd6c618d137df645c182271f67c5ae7e8ff5))
11648
+
11496
11649
  * Merge pull request #124 from Condla/master
11497
11650
 
11498
11651
  Fix: --title is required argument, when in reality optional ([`18de4ef`](https://github.com/python-gitlab/python-gitlab/commit/18de4ef22f5f801dd721d76d0721c5b4cd459c37))
11499
11652
 
11500
11653
  * Fix --title is not a required argument anymore ([`899490b`](https://github.com/python-gitlab/python-gitlab/commit/899490b04055029196eff9e03b496131e2238e61))
11501
11654
 
11502
- * Fix --title is not a required argument anymore ([`c24f0d9`](https://github.com/python-gitlab/python-gitlab/commit/c24f0d9a3664c025e3284e056d5b4c007dcf5435))
11503
-
11504
11655
  * Fix that --title is a required argument, when trying to update a ProjectMilestone ([`bea8ea9`](https://github.com/python-gitlab/python-gitlab/commit/bea8ea9d0fa921cc5c4fdd1b948420f1f780770c))
11505
11656
 
11506
- * Add support for build artifacts and trace
11507
-
11508
- Fixes #122 ([`b3e0974`](https://github.com/python-gitlab/python-gitlab/commit/b3e0974451b49ab64866dc131bff59e5471ea620))
11657
+ * Fix --title is not a required argument anymore ([`c24f0d9`](https://github.com/python-gitlab/python-gitlab/commit/c24f0d9a3664c025e3284e056d5b4c007dcf5435))
11509
11658
 
11510
11659
  * Merge pull request #121 from PeterMosmans/httpauthextended
11511
11660
 
@@ -11529,18 +11678,25 @@ Added support for HTTP basic authentication ([`11f1e2d`](https://github.com/pyth
11529
11678
 
11530
11679
  Add support for subscribe and unsubscribe in issues ([`7bbbfbd`](https://github.com/python-gitlab/python-gitlab/commit/7bbbfbdc534a4d26aa61b1b4287911c9f7c6f8a5))
11531
11680
 
11532
- * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`b8f19ca`](https://github.com/python-gitlab/python-gitlab/commit/b8f19ca9f64b737296782e74816f4b0b88a05d2f))
11533
-
11534
11681
  * Add support for subscribe and unsubscribe in issues ([`d42687d`](https://github.com/python-gitlab/python-gitlab/commit/d42687db9f0c58ea8a08532fbf6c524b0cc5ed17))
11535
11682
 
11536
- * version bump ([`0535808`](https://github.com/python-gitlab/python-gitlab/commit/0535808d5a82ffbcd5a7ea23ecc4d0c22dad34a1))
11537
-
11538
- * update changelog and authors ([`57936af`](https://github.com/python-gitlab/python-gitlab/commit/57936af70758f35ea28ad060c4ead2d916a3b47e))
11683
+ * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`b8f19ca`](https://github.com/python-gitlab/python-gitlab/commit/b8f19ca9f64b737296782e74816f4b0b88a05d2f))
11539
11684
 
11540
11685
  * Merge pull request #110 from chrwen-omicron/remove_next_url_from_cls_kwargs
11541
11686
 
11542
11687
  Remove 'next_url' from kwargs before passing it to the cls constructor. ([`05dd8dc`](https://github.com/python-gitlab/python-gitlab/commit/05dd8dc353fb5ebcb04cad72db19a8e08e0f7c56))
11543
11688
 
11689
+ * Remove 'next_url' from kwargs before passing it to the cls constructor.
11690
+
11691
+ The 'next_url' argument causes problems in the _construct_url method if it
11692
+ doesn't belong there. E.g. if you list all projects, change an attribute
11693
+ of a project and then try to save it, the _construct_url will use the
11694
+ 'next_url' from the list method and the save will fail. ([`c261875`](https://github.com/python-gitlab/python-gitlab/commit/c261875cf167e6858d052dc983fb0dcb03e3ea40))
11695
+
11696
+ * version bump ([`0535808`](https://github.com/python-gitlab/python-gitlab/commit/0535808d5a82ffbcd5a7ea23ecc4d0c22dad34a1))
11697
+
11698
+ * update changelog and authors ([`57936af`](https://github.com/python-gitlab/python-gitlab/commit/57936af70758f35ea28ad060c4ead2d916a3b47e))
11699
+
11544
11700
  * Manage optional parameters for list() and get()
11545
11701
 
11546
11702
  * List these elements in the API doc
@@ -11552,14 +11708,20 @@ Remove 'next_url' from kwargs before passing it to the cls constructor.
11552
11708
 
11553
11709
  * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`ee1620b`](https://github.com/python-gitlab/python-gitlab/commit/ee1620bcfe0533b70c9ceebb34968d3633e2613c))
11554
11710
 
11555
- * implement star/unstar for projects ([`1de6b7e`](https://github.com/python-gitlab/python-gitlab/commit/1de6b7e7641f2c0cb101a82385cee569aa786e3f))
11556
-
11557
- * Deprecate Project.archive() ([`24c283f`](https://github.com/python-gitlab/python-gitlab/commit/24c283f5861f21e51489afc815bd9f31bff58bee))
11558
-
11559
11711
  * Merge pull request #113 from adamreid/master
11560
11712
 
11561
11713
  Enable updates on ProjectIssueNotes ([`f5c75cb`](https://github.com/python-gitlab/python-gitlab/commit/f5c75cbf05ded3a326db6050c11dbdf67b5eca99))
11562
11714
 
11715
+ * Merge branch 'master' of https://github.com/gpocentek/python-gitlab ([`8edd7f7`](https://github.com/python-gitlab/python-gitlab/commit/8edd7f79050559062ac119797329d0a8dba57a06))
11716
+
11717
+ * Remove unnecessary canUpdate property from ProjectIssuesNote ([`111b7d9`](https://github.com/python-gitlab/python-gitlab/commit/111b7d9a4ee60176714b950d7ed9da86c6051feb))
11718
+
11719
+ * Enable updates on ProjectIssueNotes ([`5fe7e27`](https://github.com/python-gitlab/python-gitlab/commit/5fe7e27bb16a06271f87bf19473b8604df92b4f7))
11720
+
11721
+ * implement star/unstar for projects ([`1de6b7e`](https://github.com/python-gitlab/python-gitlab/commit/1de6b7e7641f2c0cb101a82385cee569aa786e3f))
11722
+
11723
+ * Deprecate Project.archive() ([`24c283f`](https://github.com/python-gitlab/python-gitlab/commit/24c283f5861f21e51489afc815bd9f31bff58bee))
11724
+
11563
11725
  * Rename some methods to better match the API URLs
11564
11726
 
11565
11727
  Also deprecate the file_* methods in favor of the files manager. ([`45adb6e`](https://github.com/python-gitlab/python-gitlab/commit/45adb6e4dbe7667376639d68078754d6d72cb55c))
@@ -11588,10 +11750,6 @@ Fixes #96 ([`d204e66`](https://github.com/python-gitlab/python-gitlab/commit/d20
11588
11750
 
11589
11751
  Fixes #116 ([`f12c732`](https://github.com/python-gitlab/python-gitlab/commit/f12c732f5e0dff7db1048adf50f54bfdd63ca6fc))
11590
11752
 
11591
- * Merge branch 'master' of https://github.com/gpocentek/python-gitlab ([`8edd7f7`](https://github.com/python-gitlab/python-gitlab/commit/8edd7f79050559062ac119797329d0a8dba57a06))
11592
-
11593
- * Remove unnecessary canUpdate property from ProjectIssuesNote ([`111b7d9`](https://github.com/python-gitlab/python-gitlab/commit/111b7d9a4ee60176714b950d7ed9da86c6051feb))
11594
-
11595
11753
  * Drop the next_url attribute when listing
11596
11754
 
11597
11755
  Fixes #106 ([`64af398`](https://github.com/python-gitlab/python-gitlab/commit/64af39818d02af1b40644d71fd047d6bc3f6e69e))
@@ -11608,19 +11766,6 @@ Fixes #112 ([`250f348`](https://github.com/python-gitlab/python-gitlab/commit/25
11608
11766
 
11609
11767
  Adding a Session instance for all HTTP requests ([`23e8146`](https://github.com/python-gitlab/python-gitlab/commit/23e8146a391e4269e9b3d57a553148963d412179))
11610
11768
 
11611
- * Enable updates on ProjectIssueNotes ([`5fe7e27`](https://github.com/python-gitlab/python-gitlab/commit/5fe7e27bb16a06271f87bf19473b8604df92b4f7))
11612
-
11613
- * update docblock ([`cd13aff`](https://github.com/python-gitlab/python-gitlab/commit/cd13aff8a0df9136ba3e289fbccd85de3f159bb5))
11614
-
11615
- * list projects under group ([`d4e2cd6`](https://github.com/python-gitlab/python-gitlab/commit/d4e2cd6c618d137df645c182271f67c5ae7e8ff5))
11616
-
11617
- * Remove 'next_url' from kwargs before passing it to the cls constructor.
11618
-
11619
- The 'next_url' argument causes problems in the _construct_url method if it
11620
- doesn't belong there. E.g. if you list all projects, change an attribute
11621
- of a project and then try to save it, the _construct_url will use the
11622
- 'next_url' from the list method and the save will fail. ([`c261875`](https://github.com/python-gitlab/python-gitlab/commit/c261875cf167e6858d052dc983fb0dcb03e3ea40))
11623
-
11624
11769
  * Adding a Session instance for all HTTP requests
11625
11770
 
11626
11771
  The session instance will make it easier for setting up once headers, including
@@ -11662,8 +11807,6 @@ fixes #105 ([`43e8a2a`](https://github.com/python-gitlab/python-gitlab/commit/43
11662
11807
 
11663
11808
  * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`e46c188`](https://github.com/python-gitlab/python-gitlab/commit/e46c18898deb8579d4fee0e76bfc17abed12c512))
11664
11809
 
11665
- * pep8 ignore H803 errors (git messages) ([`86ade4a`](https://github.com/python-gitlab/python-gitlab/commit/86ade4ac78fd14cc8f12be39c74ff60688a2fcf7))
11666
-
11667
11810
  * Merge pull request #98 from Asher256/fix-unicode-syntax-py3
11668
11811
 
11669
11812
  Fix the 'invalid syntax' on Python 3.2, because of u'password' ([`aea678b`](https://github.com/python-gitlab/python-gitlab/commit/aea678b9398f87b6943f005ff207755aa8a982a4))
@@ -11694,6 +11837,8 @@ It is a recent change:
11694
11837
 
11695
11838
  To solve the issue, 'u' was removed. ([`7ed84a7`](https://github.com/python-gitlab/python-gitlab/commit/7ed84a7b4ca73d1b0cc6be7db0c43958ff9f4c47))
11696
11839
 
11840
+ * pep8 ignore H803 errors (git messages) ([`86ade4a`](https://github.com/python-gitlab/python-gitlab/commit/86ade4ac78fd14cc8f12be39c74ff60688a2fcf7))
11841
+
11697
11842
  * Re-implement _custom_list in the Gitlab class
11698
11843
 
11699
11844
  Rename the method _raw_list. This adds support for the ``all=True``
@@ -11731,6 +11876,18 @@ get_by_username(). ([`b79af1d`](https://github.com/python-gitlab/python-gitlab/c
11731
11876
 
11732
11877
  Adding new `ProjectHook` attributes: ([`81be3cf`](https://github.com/python-gitlab/python-gitlab/commit/81be3cf181f5e49ef20c2824eb8c48785f4ab922))
11733
11878
 
11879
+ * Added missing comma ([`1f81c2d`](https://github.com/python-gitlab/python-gitlab/commit/1f81c2d7a93cc7c719bf8bda627020946aa975d3))
11880
+
11881
+ * Adding new `ProjectHook` attributes:
11882
+
11883
+ * `build_events`
11884
+ * `enable_ssl_verification`
11885
+
11886
+ See the two links below:
11887
+
11888
+ * https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/projects.md#add-project-hook
11889
+ * https://github.com/pyapi-gitlab/pyapi-gitlab/pull/173 ([`db9bbf6`](https://github.com/python-gitlab/python-gitlab/commit/db9bbf6528e792976e80f870b2013199569a0021))
11890
+
11734
11891
  * Add a coverage tox env ([`2e1f84e`](https://github.com/python-gitlab/python-gitlab/commit/2e1f84ede56b73c5b6857515d24d061a60b509fb))
11735
11892
 
11736
11893
  * Add some unit tests for CLI
@@ -11749,18 +11906,6 @@ fix GitlabObject creation in _custom_list ([`f5ca0eb`](https://github.com/python
11749
11906
 
11750
11907
  * Add support for user block/unblock ([`e387de5`](https://github.com/python-gitlab/python-gitlab/commit/e387de528ad21766747b91bb7e1cd91f6e4642b5))
11751
11908
 
11752
- * Added missing comma ([`1f81c2d`](https://github.com/python-gitlab/python-gitlab/commit/1f81c2d7a93cc7c719bf8bda627020946aa975d3))
11753
-
11754
- * Adding new `ProjectHook` attributes:
11755
-
11756
- * `build_events`
11757
- * `enable_ssl_verification`
11758
-
11759
- See the two links below:
11760
-
11761
- * https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/projects.md#add-project-hook
11762
- * https://github.com/pyapi-gitlab/pyapi-gitlab/pull/173 ([`db9bbf6`](https://github.com/python-gitlab/python-gitlab/commit/db9bbf6528e792976e80f870b2013199569a0021))
11763
-
11764
11909
  * bump version to cleanup my mess on pypi ([`942468d`](https://github.com/python-gitlab/python-gitlab/commit/942468d344eac2a70f73ed69a43c27a87baf78db))
11765
11910
 
11766
11911
  * Update ChangeLog and AUTHORS ([`74d82d4`](https://github.com/python-gitlab/python-gitlab/commit/74d82d4109e65d541707638fc9d3efc110c6ef32))
@@ -11797,10 +11942,6 @@ is very abrupt.) ([`c56fc47`](https://github.com/python-gitlab/python-gitlab/com
11797
11942
 
11798
11943
  * fix usage error message ([`bc7332f`](https://github.com/python-gitlab/python-gitlab/commit/bc7332f3462295320bf76e056a5ab6206ffa4d6b))
11799
11944
 
11800
- * Add docstrings to some methods ([`1b5c8f1`](https://github.com/python-gitlab/python-gitlab/commit/1b5c8f1b0bf9766ea09ef864b9bf4c1dc313f168))
11801
-
11802
- * Fix the RTD requirements ([`2e5476e`](https://github.com/python-gitlab/python-gitlab/commit/2e5476e5cb465680b2e48308d92109c408b9f1ef))
11803
-
11804
11945
  * improve error handling
11805
11946
 
11806
11947
  Break up pipelines and check the exit status of non-basic commands to
@@ -11851,15 +11992,19 @@ it easy to prefix all log messages if desired. ([`867fe2f`](https://github.com/p
11851
11992
  Note that build_test_env.sh now creates and prepares the Python
11852
11993
  virtualenv (it didn't before). ([`26999bf`](https://github.com/python-gitlab/python-gitlab/commit/26999bf0132eeac7e5b78094c54e6436964007ef))
11853
11994
 
11995
+ * wrap long lines
11996
+
11997
+ Use line continuations to keep lines shorter than 80 columns. ([`6df844a`](https://github.com/python-gitlab/python-gitlab/commit/6df844a49c2631fd38940db4679ab1cba760e4ab))
11998
+
11999
+ * Add docstrings to some methods ([`1b5c8f1`](https://github.com/python-gitlab/python-gitlab/commit/1b5c8f1b0bf9766ea09ef864b9bf4c1dc313f168))
12000
+
12001
+ * Fix the RTD requirements ([`2e5476e`](https://github.com/python-gitlab/python-gitlab/commit/2e5476e5cb465680b2e48308d92109c408b9f1ef))
12002
+
11854
12003
  * Automatic doc generation for BaseManager classes
11855
12004
 
11856
12005
  Provide a sphinx extension that parses the required/optioanl attributes
11857
12006
  and add infoo to the class docstring. ([`a2eca72`](https://github.com/python-gitlab/python-gitlab/commit/a2eca72246ab40a0d96f6389c99e3a0b54e9342e))
11858
12007
 
11859
- * wrap long lines
11860
-
11861
- Use line continuations to keep lines shorter than 80 columns. ([`6df844a`](https://github.com/python-gitlab/python-gitlab/commit/6df844a49c2631fd38940db4679ab1cba760e4ab))
11862
-
11863
12008
  * travis lacks py35 support without tricks ([`770dd4b`](https://github.com/python-gitlab/python-gitlab/commit/770dd4b3fee1fe9f4e40a144777afb6030992149))
11864
12009
 
11865
12010
  * add python 3.5 test env ([`920d248`](https://github.com/python-gitlab/python-gitlab/commit/920d24823c3d7381097e1f30e34c3be8cec45627))
@@ -11933,8 +12078,6 @@ Also add unit tests and fix pep8 test ([`d7271b1`](https://github.com/python-git
11933
12078
 
11934
12079
  * Merge branch 'fix-json' of https://github.com/rhansen/python-gitlab into rhansen-fix-json ([`26d73e2`](https://github.com/python-gitlab/python-gitlab/commit/26d73e2828db89f9464c291de7607b7e78c58ca4))
11935
12080
 
11936
- * use a custom docker image for tests ([`3f38689`](https://github.com/python-gitlab/python-gitlab/commit/3f386891ecf15ac4f0da34bdda59cf8e8d2f6ff0))
11937
-
11938
12081
  * skip BaseManager attributes when encoding to JSON
11939
12082
 
11940
12083
  This fixes the following exception when calling User.json():
@@ -11946,6 +12089,8 @@ This fixes the following exception when calling User.json():
11946
12089
  Add the import inside the function rather than at the top of the file
11947
12090
  because otherwise it would introduce a circular dependency. ([`c95b3c3`](https://github.com/python-gitlab/python-gitlab/commit/c95b3c3b54c412cd5cc77c4d58816139363fb2d1))
11948
12091
 
12092
+ * use a custom docker image for tests ([`3f38689`](https://github.com/python-gitlab/python-gitlab/commit/3f386891ecf15ac4f0da34bdda59cf8e8d2f6ff0))
12093
+
11949
12094
  * Add an initial set of API tests ([`7e4e1a3`](https://github.com/python-gitlab/python-gitlab/commit/7e4e1a32ec2481453475a5da5186d187e704cf19))
11950
12095
 
11951
12096
  * include the docs in the tarball ([`bbcccaa`](https://github.com/python-gitlab/python-gitlab/commit/bbcccaa5407fa9d281f8b1268a653b6dff29d050))
@@ -12046,12 +12191,12 @@ Unit tests have been added. ([`689ecae`](https://github.com/python-gitlab/python
12046
12191
 
12047
12192
  * Merge branch 'add_fork_support' of https://github.com/fgouteroux/python-gitlab into fgouteroux-add_fork_support ([`77d34b3`](https://github.com/python-gitlab/python-gitlab/commit/77d34b353a1dfb1892de316a58b461c26eead66b))
12048
12193
 
12194
+ * add fork project support ([`cedf080`](https://github.com/python-gitlab/python-gitlab/commit/cedf080ff8553b6ef5cd7995f5ab3608aaeb3793))
12195
+
12049
12196
  * Deprecate the "old" Gitlab methods
12050
12197
 
12051
12198
  Update the associated unit tests. ([`2bf9794`](https://github.com/python-gitlab/python-gitlab/commit/2bf9794c81487883c346850a79d6b7db1295fd95))
12052
12199
 
12053
- * add fork project support ([`cedf080`](https://github.com/python-gitlab/python-gitlab/commit/cedf080ff8553b6ef5cd7995f5ab3608aaeb3793))
12054
-
12055
12200
  * README update ([`dc0099d`](https://github.com/python-gitlab/python-gitlab/commit/dc0099d7901bd381fabadb8be77b93e7258454b3))
12056
12201
 
12057
12202
  * Provide a getting started doc for the API ([`2237d85`](https://github.com/python-gitlab/python-gitlab/commit/2237d854f3c83f176b03392debf9785c53b0738b))
@@ -12123,10 +12268,6 @@ Closes #73 ([`99c4710`](https://github.com/python-gitlab/python-gitlab/commit/99
12123
12268
 
12124
12269
  * Merge branch 'master' of github.com:gpocentek/python-gitlab ([`45becb9`](https://github.com/python-gitlab/python-gitlab/commit/45becb92f47c74cb6433cdb644da5e2052a337e8))
12125
12270
 
12126
- * Sanitize the id used to construct URLs
12127
-
12128
- Closes #28 ([`5d88f68`](https://github.com/python-gitlab/python-gitlab/commit/5d88f68ddadddf98c42940a713817487058f8c17))
12129
-
12130
12271
  * Merge pull request #78 from cdbennett/fix_python3_sort_types
12131
12272
 
12132
12273
  Use name as sort key to fix Python 3 TypeError ([`6f1fd7e`](https://github.com/python-gitlab/python-gitlab/commit/6f1fd7ea8d203b771e32393b5270a6af490b37a8))
@@ -12140,6 +12281,10 @@ The call to sort() on cli.py line 259 produced the error:
12140
12281
 
12141
12282
  TypeError: unorderable types: type() < type() ([`363b75e`](https://github.com/python-gitlab/python-gitlab/commit/363b75e73c2b66ab625811accdb9d639fb068675))
12142
12283
 
12284
+ * Sanitize the id used to construct URLs
12285
+
12286
+ Closes #28 ([`5d88f68`](https://github.com/python-gitlab/python-gitlab/commit/5d88f68ddadddf98c42940a713817487058f8c17))
12287
+
12143
12288
  * try to fix the RTD build ([`acc1511`](https://github.com/python-gitlab/python-gitlab/commit/acc151190e32ddaf9198a10c5b816af2d36c0f19))
12144
12289
 
12145
12290
  * Merge pull request #72 from pa4373/newuser-confirm-fix
@@ -12179,6 +12324,12 @@ just like the CLI does. ([`fef8c7f`](https://github.com/python-gitlab/python-git
12179
12324
 
12180
12325
  python-gitlab Issue #63 - implement pagination for list() ([`24d5035`](https://github.com/python-gitlab/python-gitlab/commit/24d5035558dec227d2a497d7bf5be3bbaafc0c00))
12181
12326
 
12327
+ * issue #63 add unit tests for 'next' link handling in list() ([`719526d`](https://github.com/python-gitlab/python-gitlab/commit/719526dc8b0fb7d577f0a5ffa80d8f0ca31a95c6))
12328
+
12329
+ * issue #63 - revert logging additions ([`f9654cd`](https://github.com/python-gitlab/python-gitlab/commit/f9654cd1c0dca5b75a2ae78634b06feea7cc3b62))
12330
+
12331
+ * python-gitlab Issue #63 - implement pagination for list() ([`33ceed6`](https://github.com/python-gitlab/python-gitlab/commit/33ceed61759e1eb5197154d16cd81030e138921d))
12332
+
12182
12333
  * Merge pull request #66 from stefanklug/master
12183
12334
 
12184
12335
  Fix error when fetching single MergeRequests ([`adbe0a4`](https://github.com/python-gitlab/python-gitlab/commit/adbe0a4391f1e3b4d615ef7966dfa66e75b9a6fa))
@@ -12187,12 +12338,6 @@ Fix error when fetching single MergeRequests ([`adbe0a4`](https://github.com/pyt
12187
12338
 
12188
12339
  * fix url when fetching a single MergeRequest ([`227f71c`](https://github.com/python-gitlab/python-gitlab/commit/227f71ce49cc3e0a3537a52dd2fac1d8045110f4))
12189
12340
 
12190
- * issue #63 add unit tests for 'next' link handling in list() ([`719526d`](https://github.com/python-gitlab/python-gitlab/commit/719526dc8b0fb7d577f0a5ffa80d8f0ca31a95c6))
12191
-
12192
- * issue #63 - revert logging additions ([`f9654cd`](https://github.com/python-gitlab/python-gitlab/commit/f9654cd1c0dca5b75a2ae78634b06feea7cc3b62))
12193
-
12194
- * python-gitlab Issue #63 - implement pagination for list() ([`33ceed6`](https://github.com/python-gitlab/python-gitlab/commit/33ceed61759e1eb5197154d16cd81030e138921d))
12195
-
12196
12341
  * Fix the update/delete CLI subcommands
12197
12342
 
12198
12343
  Also update the testing tool to test these features.
@@ -12272,6 +12417,11 @@ closes #31 ([`8b42559`](https://github.com/python-gitlab/python-gitlab/commit/8b
12272
12417
  Conflicts:
12273
12418
  setup.py ([`0443256`](https://github.com/python-gitlab/python-gitlab/commit/04432561cb0e1a7e658cf771fd530835b4f463c8))
12274
12419
 
12420
+ * Added tests.
12421
+
12422
+ Uses httmock library to abstract away requests-library.
12423
+ Uses nose to actually run tests. ([`f458522`](https://github.com/python-gitlab/python-gitlab/commit/f45852205397d84a3ca2b9554ffaacae153791cc))
12424
+
12275
12425
  * Deprecate some Gitlab object methods
12276
12426
 
12277
12427
  raw* methods should never have been exposed; replace them with _raw_*
@@ -12390,73 +12540,68 @@ Changed Gitlab-class to use GitlabObject-class version of _getListOrObject ([`90
12390
12540
 
12391
12541
  Classes for ProjectLabels and ProjectFiles ([`928b9f0`](https://github.com/python-gitlab/python-gitlab/commit/928b9f09291a45283ed371b931288b1caddb5b1c))
12392
12542
 
12543
+ * Classes for ProjectLabels and ProjectFiles ([`ad63e17`](https://github.com/python-gitlab/python-gitlab/commit/ad63e17ce7b6fd8c8eef993a44a1b18cc73fc4be))
12544
+
12393
12545
  * Merge pull request #44 from mjmaenpaa/noid_objects
12394
12546
 
12395
12547
  Support api-objects which don't have id in api response. ([`afe0ab4`](https://github.com/python-gitlab/python-gitlab/commit/afe0ab4b7ecf9a37b88a3d8f77a2c17d95e571d3))
12396
12548
 
12549
+ * Fixed object creation in list ([`134fc7a`](https://github.com/python-gitlab/python-gitlab/commit/134fc7ac024aa96b1d22cc421a081df6cd2724f3))
12550
+
12551
+ * Support api-objects which don't have id in api response. ([`c3ab869`](https://github.com/python-gitlab/python-gitlab/commit/c3ab869711276522fe2997ba6e6332704a059d22))
12552
+
12397
12553
  * Merge pull request #43 from mjmaenpaa/url_delete_attrs
12398
12554
 
12399
12555
  Moved url attributes to separate list. Added list for delete attributes. ([`f7dfad3`](https://github.com/python-gitlab/python-gitlab/commit/f7dfad38877f9886d891ed19a21188de61e5c5bc))
12400
12556
 
12557
+ * Moved url attributes to separate list. Added list for delete attributes. ([`ea4c099`](https://github.com/python-gitlab/python-gitlab/commit/ea4c099532993cdb3ea547fcbd931127c03fdffa))
12558
+
12401
12559
  * Merge pull request #40 from mjmaenpaa/py3
12402
12560
 
12403
12561
  Python3 compatibility ([`1eccc3b`](https://github.com/python-gitlab/python-gitlab/commit/1eccc3b38bdb6d0b53d76b6a5099db89dcb53871))
12404
12562
 
12405
- * Fixed object creation in list ([`134fc7a`](https://github.com/python-gitlab/python-gitlab/commit/134fc7ac024aa96b1d22cc421a081df6cd2724f3))
12406
-
12407
- * Classes for ProjectLabels and ProjectFiles ([`ad63e17`](https://github.com/python-gitlab/python-gitlab/commit/ad63e17ce7b6fd8c8eef993a44a1b18cc73fc4be))
12563
+ * Py3 compatibility with six ([`431e4bd`](https://github.com/python-gitlab/python-gitlab/commit/431e4bdf089354534f6877d39631ff23038e8866))
12408
12564
 
12409
- * Support api-objects which don't have id in api response. ([`c3ab869`](https://github.com/python-gitlab/python-gitlab/commit/c3ab869711276522fe2997ba6e6332704a059d22))
12565
+ * Python 3 compatibility for cli-program ([`d714c4d`](https://github.com/python-gitlab/python-gitlab/commit/d714c4d35bc627d9113a4925f843c54d6123e621))
12410
12566
 
12411
- * Moved url attributes to separate list. Added list for delete attributes. ([`ea4c099`](https://github.com/python-gitlab/python-gitlab/commit/ea4c099532993cdb3ea547fcbd931127c03fdffa))
12567
+ * Python3 compatibility ([`15c0da5`](https://github.com/python-gitlab/python-gitlab/commit/15c0da5552aa57340d25946bb41d0cd079ec495d))
12412
12568
 
12413
12569
  * Merge pull request #42 from mjmaenpaa/constructUrl
12414
12570
 
12415
12571
  Moved url-construction to separate function ([`221f418`](https://github.com/python-gitlab/python-gitlab/commit/221f41806d0dad67adada158a9352aa9e2f2036f))
12416
12572
 
12573
+ * Moved url-construction to separate function ([`e14e3bf`](https://github.com/python-gitlab/python-gitlab/commit/e14e3bf0f675c54930af53c832ccd7ab98df89f3))
12574
+
12417
12575
  * Merge pull request #41 from mjmaenpaa/gitlab_get_exception
12418
12576
 
12419
12577
  Gitlab.get() raised GitlabListError instead of GitlabGetError ([`9736e0b`](https://github.com/python-gitlab/python-gitlab/commit/9736e0b0893e298712d1ad356e3f8341852ef0f7))
12420
12578
 
12421
- * Moved url-construction to separate function ([`e14e3bf`](https://github.com/python-gitlab/python-gitlab/commit/e14e3bf0f675c54930af53c832ccd7ab98df89f3))
12422
-
12423
12579
  * Gitlab.get() raised GitlabListError instead of GitlabGetError ([`ee54b3e`](https://github.com/python-gitlab/python-gitlab/commit/ee54b3e6927f6c8d3b5f9bcbec0e67b94be8566d))
12424
12580
 
12425
- * Py3 compatibility with six ([`431e4bd`](https://github.com/python-gitlab/python-gitlab/commit/431e4bdf089354534f6877d39631ff23038e8866))
12426
-
12427
12581
  * Merge pull request #39 from mjmaenpaa/timeout
12428
12582
 
12429
12583
  Timeout support ([`9f134fc`](https://github.com/python-gitlab/python-gitlab/commit/9f134fcaf41594e2e37bf24f20cde128bd21364b))
12430
12584
 
12431
- * Python 3 compatibility for cli-program ([`d714c4d`](https://github.com/python-gitlab/python-gitlab/commit/d714c4d35bc627d9113a4925f843c54d6123e621))
12432
-
12433
12585
  * Timeout support ([`d2e591e`](https://github.com/python-gitlab/python-gitlab/commit/d2e591ec75aec916f3b37192ddcdc2163d558995))
12434
12586
 
12435
- * Python3 compatibility ([`15c0da5`](https://github.com/python-gitlab/python-gitlab/commit/15c0da5552aa57340d25946bb41d0cd079ec495d))
12436
-
12437
12587
  * Merge pull request #38 from mjmaenpaa/currentuser_key
12438
12588
 
12439
12589
  Changed CurrentUser.Key to use _getListOrObject-method like all other functions ([`4664ebd`](https://github.com/python-gitlab/python-gitlab/commit/4664ebd9125d4eb07ee2add768b89362c6902f81))
12440
12590
 
12591
+ * CurrentUser.Key uses _getListOrObject-method ([`afcf1c2`](https://github.com/python-gitlab/python-gitlab/commit/afcf1c23c36a7aa0f65392892ca4abb973e35b43))
12592
+
12441
12593
  * Merge pull request #37 from mjmaenpaa/list_kwargs
12442
12594
 
12443
12595
  No reason to add kwargs to object in Gitlab.list()-method ([`2c86085`](https://github.com/python-gitlab/python-gitlab/commit/2c860856689bac90bbda44d4812a27d5b22144c0))
12444
12596
 
12445
- * Merge pull request #36 from mjmaenpaa/setFromDict
12446
-
12447
- _setFromDict thinks False is None ([`4c5c39d`](https://github.com/python-gitlab/python-gitlab/commit/4c5c39de41221696fa1d63de13ec61ae88f85f9f))
12448
-
12449
- * CurrentUser.Key uses _getListOrObject-method ([`afcf1c2`](https://github.com/python-gitlab/python-gitlab/commit/afcf1c23c36a7aa0f65392892ca4abb973e35b43))
12450
-
12451
12597
  * No reason to add kwargs to object in Gitlab.list()-method because GitlabObject
12452
12598
  constructor can handle them. ([`40ce81e`](https://github.com/python-gitlab/python-gitlab/commit/40ce81e9b9cea0dd75c712ccac887afd37416996))
12453
12599
 
12454
- * _setFromDict thinks False is None ([`3cf35ce`](https://github.com/python-gitlab/python-gitlab/commit/3cf35cedfff4784af9e7b882b85f71b22ec93c25))
12600
+ * Merge pull request #36 from mjmaenpaa/setFromDict
12455
12601
 
12456
- * Added tests.
12602
+ _setFromDict thinks False is None ([`4c5c39d`](https://github.com/python-gitlab/python-gitlab/commit/4c5c39de41221696fa1d63de13ec61ae88f85f9f))
12457
12603
 
12458
- Uses httmock library to abstract away requests-library.
12459
- Uses nose to actually run tests. ([`f458522`](https://github.com/python-gitlab/python-gitlab/commit/f45852205397d84a3ca2b9554ffaacae153791cc))
12604
+ * _setFromDict thinks False is None ([`3cf35ce`](https://github.com/python-gitlab/python-gitlab/commit/3cf35cedfff4784af9e7b882b85f71b22ec93c25))
12460
12605
 
12461
12606
  * Merge pull request #34 from tekacs/master
12462
12607
 
@@ -12497,16 +12642,6 @@ Closes #28 ([`34d6952`](https://github.com/python-gitlab/python-gitlab/commit/34
12497
12642
 
12498
12643
  Fix encoding errors on display and update with redirected output ([`2b5ea46`](https://github.com/python-gitlab/python-gitlab/commit/2b5ea468c68058a2d9141ecafda02263dd1845ca))
12499
12644
 
12500
- * Support state_event in ProjectMilestone
12501
-
12502
- Closes #30 ([`2281283`](https://github.com/python-gitlab/python-gitlab/commit/22812832021911dccdd93ced0ef1088441e3d227))
12503
-
12504
- * add support for branches creation and deletion ([`97e2689`](https://github.com/python-gitlab/python-gitlab/commit/97e26896a7c2916b0f0d2c64934f280d4c9e5dc7))
12505
-
12506
- * add support for UserKey listing and deletion ([`09e4a64`](https://github.com/python-gitlab/python-gitlab/commit/09e4a64cda0531f7dd45984625cf5e1c90bb430f))
12507
-
12508
- * drop the module shebang ([`01335f3`](https://github.com/python-gitlab/python-gitlab/commit/01335f3b904a7ea4c1fee2d5b7f84f6420577834))
12509
-
12510
12645
  * Fix encoding error when updating with redirected output
12511
12646
 
12512
12647
  When output is redirected sys.stdout.encoding is None. Fix this by
@@ -12518,6 +12653,16 @@ used by the local system is irrelevant here. ([`ec185cf`](https://github.com/pyt
12518
12653
  When redirecting output to a file sys.stdout.encoding is None, so use
12519
12654
  sys.getdefaultencoding() instead. ([`e236fd9`](https://github.com/python-gitlab/python-gitlab/commit/e236fd94c48b949bbbc8e0dc2d55ebfaa1ef0069))
12520
12655
 
12656
+ * Support state_event in ProjectMilestone
12657
+
12658
+ Closes #30 ([`2281283`](https://github.com/python-gitlab/python-gitlab/commit/22812832021911dccdd93ced0ef1088441e3d227))
12659
+
12660
+ * add support for branches creation and deletion ([`97e2689`](https://github.com/python-gitlab/python-gitlab/commit/97e26896a7c2916b0f0d2c64934f280d4c9e5dc7))
12661
+
12662
+ * add support for UserKey listing and deletion ([`09e4a64`](https://github.com/python-gitlab/python-gitlab/commit/09e4a64cda0531f7dd45984625cf5e1c90bb430f))
12663
+
12664
+ * drop the module shebang ([`01335f3`](https://github.com/python-gitlab/python-gitlab/commit/01335f3b904a7ea4c1fee2d5b7f84f6420577834))
12665
+
12521
12666
  * Merge pull request #16 from locke105/master
12522
12667
 
12523
12668
  Fix license classifier in setup.py ([`8ce3e30`](https://github.com/python-gitlab/python-gitlab/commit/8ce3e30ba1fd3f9c587746dbe050a528bc6e952a))
@@ -12534,16 +12679,16 @@ Update Changelog and AUTHORS ([`1fe783d`](https://github.com/python-gitlab/pytho
12534
12679
 
12535
12680
  Add support for extra parameters when listing all projects (Refs #12) ([`4b882b7`](https://github.com/python-gitlab/python-gitlab/commit/4b882b7b6b4b303fc18c428a3da2a26e1001e5c2))
12536
12681
 
12682
+ * Add support for extra parameters when listing all projects (Refs #12)
12683
+
12684
+ Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c595`](https://github.com/python-gitlab/python-gitlab/commit/1b6c5952f06fe1236e1e75ae68f9c2325e78d372))
12685
+
12537
12686
  * ProjectMember: constructor should not create a User object ([`1c21423`](https://github.com/python-gitlab/python-gitlab/commit/1c214233360524fae06c9f6946e0956843a000f3))
12538
12687
 
12539
12688
  * ids can be unicode
12540
12689
 
12541
12690
  Fixes #15 ([`c6e371e`](https://github.com/python-gitlab/python-gitlab/commit/c6e371e7b2e2e499e32dd11feb81c013b8ab32c4))
12542
12691
 
12543
- * Add support for extra parameters when listing all projects (Refs #12)
12544
-
12545
- Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c595`](https://github.com/python-gitlab/python-gitlab/commit/1b6c5952f06fe1236e1e75ae68f9c2325e78d372))
12546
-
12547
12692
  * version bump ([`04574f3`](https://github.com/python-gitlab/python-gitlab/commit/04574f381d3d50afa86ec890681105f8f5a2a31e))
12548
12693
 
12549
12694
  * support creation of projects for users ([`dc2bf5e`](https://github.com/python-gitlab/python-gitlab/commit/dc2bf5ea5ae827178e1e7a058e39b491ddebc01a))
@@ -12566,6 +12711,10 @@ Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c59
12566
12711
 
12567
12712
  * Merge remote-tracking branch 'github-mrts/master' ([`7fb7c47`](https://github.com/python-gitlab/python-gitlab/commit/7fb7c473c58cc2b4e7567d444ffff3b3ecdb3243))
12568
12713
 
12714
+ * Add support for project events. ([`32d4224`](https://github.com/python-gitlab/python-gitlab/commit/32d422445388766e7cc4913a51bf8890487d4ce5))
12715
+
12716
+ * Fix comments. ([`6705928`](https://github.com/python-gitlab/python-gitlab/commit/6705928406667ee010f448e41c14cfa63c263178))
12717
+
12569
12718
  * add a Key() method for User objects ([`1969abb`](https://github.com/python-gitlab/python-gitlab/commit/1969abb3bbb61c4cbb8499496be9f48bd74cf558))
12570
12719
 
12571
12720
  * Merge pull request #10 from ksmets/master
@@ -12574,10 +12723,6 @@ Add SSH key for user ([`e31bb9e`](https://github.com/python-gitlab/python-gitlab
12574
12723
 
12575
12724
  * Add SSH key for user ([`909c10e`](https://github.com/python-gitlab/python-gitlab/commit/909c10e0d155b0fcfcd63129e2f5921a11d9c017))
12576
12725
 
12577
- * Add support for project events. ([`32d4224`](https://github.com/python-gitlab/python-gitlab/commit/32d422445388766e7cc4913a51bf8890487d4ce5))
12578
-
12579
- * Fix comments. ([`6705928`](https://github.com/python-gitlab/python-gitlab/commit/6705928406667ee010f448e41c14cfa63c263178))
12580
-
12581
12726
  * Merge pull request #8 from Itxaka/master
12582
12727
 
12583
12728
  fixed the requirements auto install from setup.py ([`37e6648`](https://github.com/python-gitlab/python-gitlab/commit/37e6648fe4127a51601a9456a03bbaf8ff674c10))
@@ -12609,6 +12754,8 @@ fixed the requirements auto install from setup.py ([`37e6648`](https://github.co
12609
12754
 
12610
12755
  * Merge branch 'header-private-token' of https://github.com/dekimsey/python-gitlab into token_in_header ([`9adb4fa`](https://github.com/python-gitlab/python-gitlab/commit/9adb4fae912279b7635820029fe0b12013e6332e))
12611
12756
 
12757
+ * Use PRIVATE-TOKEN header for passing the auth token ([`d39c471`](https://github.com/python-gitlab/python-gitlab/commit/d39c471b188ad1302f0ef6c5f7eac4c6e0d1b742))
12758
+
12612
12759
  * provide a ChangeLog ([`2d5342b`](https://github.com/python-gitlab/python-gitlab/commit/2d5342b54f723f621ada53acdfc5ff5d8b1b8b8b))
12613
12760
 
12614
12761
  * provide a AUTHORS file ([`7c85fb7`](https://github.com/python-gitlab/python-gitlab/commit/7c85fb7e865a648b49494add224f286e2343e9ff))
@@ -12644,9 +12791,9 @@ Addded API for team access. ([`8f65cf8`](https://github.com/python-gitlab/python
12644
12791
  Conflicts:
12645
12792
  gitlab.py ([`cb5b754`](https://github.com/python-gitlab/python-gitlab/commit/cb5b7542edde926f73be6e7a2ab55f944ccbca00))
12646
12793
 
12647
- * Addded API for team access. ([`8a22958`](https://github.com/python-gitlab/python-gitlab/commit/8a22958e20a622400daecb288135793544ad01ad))
12794
+ * Basic team support. ([`5388d19`](https://github.com/python-gitlab/python-gitlab/commit/5388d19f8885d3ca2f93c5e07ed58a1b84a87475))
12648
12795
 
12649
- * Use PRIVATE-TOKEN header for passing the auth token ([`d39c471`](https://github.com/python-gitlab/python-gitlab/commit/d39c471b188ad1302f0ef6c5f7eac4c6e0d1b742))
12796
+ * Addded API for team access. ([`8a22958`](https://github.com/python-gitlab/python-gitlab/commit/8a22958e20a622400daecb288135793544ad01ad))
12650
12797
 
12651
12798
  * improve pretty_print() ([`05ab473`](https://github.com/python-gitlab/python-gitlab/commit/05ab4732ceaee7d6d6c1f162b5925602b7c9ad44))
12652
12799
 
@@ -12730,8 +12877,6 @@ We can use a more common syntax (-- prefix for options) this way. ([`a8072d9`](h
12730
12877
 
12731
12878
  * Allow creation of objects using the "hidden API" ([`1d55e67`](https://github.com/python-gitlab/python-gitlab/commit/1d55e67b7335926435cb2298b675698cec1873d0))
12732
12879
 
12733
- * Basic team support. ([`5388d19`](https://github.com/python-gitlab/python-gitlab/commit/5388d19f8885d3ca2f93c5e07ed58a1b84a87475))
12734
-
12735
12880
  * Check the needed attributes to create objects
12736
12881
 
12737
12882
  Provide a required and optional arguments lists for each object that can