python-gitlab 4.7.0__tar.gz → 4.9.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.
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/CHANGELOG.md +904 -748
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/PKG-INFO +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/api-objects.rst +3 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/api-usage.rst +21 -0
- python_gitlab-4.9.0/docs/gl_objects/cluster_agents.rst +41 -0
- python_gitlab-4.9.0/docs/gl_objects/protected_container_repositories.rst +44 -0
- python_gitlab-4.9.0/docs/gl_objects/protected_packages.rst +44 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/snippets.rst +10 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/variables.rst +25 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/_version.py +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/cli.py +2 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/client.py +17 -3
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/mixins.py +4 -2
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/utils.py +11 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/cli.py +25 -7
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/__init__.py +3 -0
- python_gitlab-4.9.0/gitlab/v4/objects/cluster_agents.py +26 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/commits.py +18 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/files.py +11 -7
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/issues.py +14 -8
- python_gitlab-4.9.0/gitlab/v4/objects/package_protection_rules.py +43 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/projects.py +8 -0
- python_gitlab-4.9.0/gitlab/v4/objects/registry_protection_rules.py +35 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/snippets.py +53 -3
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/python_gitlab.egg-info/PKG-INFO +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/python_gitlab.egg-info/SOURCES.txt +10 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/requirements-docs.txt +2 -2
- python_gitlab-4.9.0/requirements-lint.txt +13 -0
- python_gitlab-4.9.0/requirements-precommit.txt +1 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/requirements-test.txt +3 -3
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_issues.py +3 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_merge_requests.py +3 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_packages.py +32 -1
- python_gitlab-4.9.0/tests/functional/api/test_registry.py +28 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_repository.py +3 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_snippets.py +7 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/.env +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/docker-compose.yml +0 -1
- python_gitlab-4.9.0/tests/unit/objects/test_cluster_agents.py +97 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_commits.py +23 -0
- python_gitlab-4.9.0/tests/unit/objects/test_package_protection_rules.py +98 -0
- python_gitlab-4.9.0/tests/unit/objects/test_registry_protection_rules.py +82 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_utils.py +21 -0
- python_gitlab-4.7.0/requirements-lint.txt +0 -13
- python_gitlab-4.7.0/requirements-precommit.txt +0 -1
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/AUTHORS +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/COPYING +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/MANIFEST.in +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/README.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/Makefile +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/_static/js/gitter.js +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/api/gitlab.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/api/gitlab.v4.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/api-levels.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/api-usage-advanced.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/changelog.md +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/cli-examples.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/cli-objects.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/cli-usage.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/conf.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/ext/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/ext/docstrings.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/ext/manager_tmpl.j2 +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/faq.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/access_requests.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/appearance.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/applications.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/badges.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/boards.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/branches.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/bulk_imports.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/ci_lint.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/clusters.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/commits.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/deploy_keys.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/deploy_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/deployments.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/discussions.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/draft_notes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/emojis.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/environments.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/epics.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/events.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/features.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/geo_nodes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/group_access_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/groups.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/invitations.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/issues.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/iterations.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/job_token_scope.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/keys.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/labels.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/merge_request_approvals.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/merge_requests.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/merge_trains.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/messages.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/milestones.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/namespaces.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/notes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/notifications.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/packages.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/pagesdomains.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/personal_access_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/pipelines_and_jobs.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/project_access_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/projects.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/protected_branches.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/protected_environments.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/releases.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/remote_mirrors.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/repositories.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/repository_tags.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/resource_groups.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/runners.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/search.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/secure_files.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/settings.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/sidekiq.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/statistics.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/system_hooks.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/templates.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/todos.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/topics.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/users.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/gl_objects/wikis.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/index.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/make.bat +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/docs/release-notes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/__main__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/_backends/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/_backends/protocol.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/_backends/requests_backend.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/base.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/config.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/const.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/exceptions.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/py.typed +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/types.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/access_requests.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/appearance.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/applications.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/artifacts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/audit_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/award_emojis.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/badges.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/boards.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/branches.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/broadcast_messages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/bulk_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/ci_lint.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/clusters.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/container_registry.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/custom_attributes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/deploy_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/deploy_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/deployments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/discussions.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/draft_notes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/environments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/epics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/export_import.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/features.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/geo_nodes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/group_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/hooks.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/integrations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/invitations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/iterations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/job_token_scope.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/jobs.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/labels.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/ldap.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/members.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/merge_request_approvals.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/merge_requests.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/merge_trains.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/milestones.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/namespaces.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/notes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/notification_settings.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/packages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/pages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/personal_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/pipelines.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/project_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/push_rules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/releases.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/repositories.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/resource_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/reviewers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/runners.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/secure_files.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/service_accounts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/settings.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/sidekiq.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/tags.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/templates.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/todos.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/topics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/triggers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/gitlab/v4/objects/wikis.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/pyproject.toml +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/python_gitlab.egg-info/dependency_links.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/python_gitlab.egg-info/entry_points.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/python_gitlab.egg-info/requires.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/python_gitlab.egg-info/top_level.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/requirements-docker.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/requirements.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/setup.cfg +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_boards.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_branches.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_bulk_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_current_user.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_deploy_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_deploy_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_epics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_gitlab.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_import_export.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_lazy_objects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_project_job_token_scope.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_projects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_push_rules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_releases.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_services.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_topics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/api/test_wikis.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_artifacts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_packages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_projects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_repository.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_resource_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_v4.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/cli/test_cli_variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/ee-test.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/avatar.png +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/create_license.rb +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/docker.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/invalid_auth.cfg +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/invalid_version.cfg +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/fixtures/set_token.rb +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/functional/helpers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/install/test_install.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/smoke/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/smoke/test_dists.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/_backends/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/_backends/test_requests_backend.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/base/test_rest_manager.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/base/test_rest_object.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/helpers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/meta/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/meta/test_ensure_type_hints.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/meta/test_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/meta/test_mro.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/mixins/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/mixins/test_meta_mixins.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/mixins/test_mixin_methods.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/mixins/test_object_mixins_attributes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_appearance.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_applications.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_audit_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_badges.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_bridges.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_bulk_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_ci_lint.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_deploy_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_deployments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_draft_notes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_environments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_group_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_hooks.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_invitations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_issues.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_iterations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_job_artifacts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_job_token_scope.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_jobs.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_members.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_merge_request_pipelines.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_merge_requests.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_merge_trains.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_packages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_personal_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_pipeline_schedules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_pipelines.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_project_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_project_import_export.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_project_merge_request_approvals.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_project_statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_projects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_registry_repositories.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_releases.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_remote_mirrors.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_repositories.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_resource_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_resource_iteration_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_resource_label_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_resource_milestone_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_resource_state_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_runners.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_secure_files.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_services.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_snippets.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_submodules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_todos.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_topics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/objects/test_variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_cli.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_config.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_exceptions.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_gitlab.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_gitlab_auth.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_gitlab_http_methods.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tests/unit/test_types.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.9.0}/tox.ini +0 -0
@@ -1,5 +1,163 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## v4.9.0 (2024-08-06)
|
4
|
+
|
5
|
+
### Chore
|
6
|
+
|
7
|
+
* chore(deps): update pre-commit hook maxbrunet/pre-commit-renovate to v38 ([`f13968b`](https://github.com/python-gitlab/python-gitlab/commit/f13968be9e2bb532f3c1185c1fa4185c05335552))
|
8
|
+
|
9
|
+
* chore(deps): update all non-major dependencies ([`f95ca26`](https://github.com/python-gitlab/python-gitlab/commit/f95ca26b411e5a8998eb4b81e41c061726271240))
|
10
|
+
|
11
|
+
* chore(deps): update dependency types-setuptools to v71 ([`d6a7dba`](https://github.com/python-gitlab/python-gitlab/commit/d6a7dba600923e582064a77579dea82281871c25))
|
12
|
+
|
13
|
+
* chore(deps): update python-semantic-release/upload-to-gh-release digest to 0dcddac ([`eb5c6f7`](https://github.com/python-gitlab/python-gitlab/commit/eb5c6f7fb6487da21c69582adbc69aaf36149143))
|
14
|
+
|
15
|
+
* chore(deps): update gitlab/gitlab-ee docker tag to v17.2.1-ee.0 ([`d13a656`](https://github.com/python-gitlab/python-gitlab/commit/d13a656565898886cc6ba11028b3bcb719c21f0f))
|
16
|
+
|
17
|
+
* chore(deps): update all non-major dependencies ([`7adc86b`](https://github.com/python-gitlab/python-gitlab/commit/7adc86b2e202cad42776991f0ed8c81517bb37ad))
|
18
|
+
|
19
|
+
* chore(deps): update python-semantic-release/upload-to-gh-release digest to e2355e1 ([`eb18552`](https://github.com/python-gitlab/python-gitlab/commit/eb18552e423e270a27a2b205bfd2f22fcb2eb949))
|
20
|
+
|
21
|
+
* chore(deps): update all non-major dependencies ([`e820db0`](https://github.com/python-gitlab/python-gitlab/commit/e820db0d9db42a826884b45a76267fee861453d4))
|
22
|
+
|
23
|
+
* chore(ci): make pre-commit check happy
|
24
|
+
|
25
|
+
pre-commit incorrectly wants double back-quotes inside the code
|
26
|
+
section. Rather than fight it, just use single quotes. ([`67370d8`](https://github.com/python-gitlab/python-gitlab/commit/67370d8f083ddc34c0acf0c0b06742a194dfa735))
|
27
|
+
|
28
|
+
### Feature
|
29
|
+
|
30
|
+
* feat(snippets): add support for listing all instance snippets ([`64ae61e`](https://github.com/python-gitlab/python-gitlab/commit/64ae61ed9ba60169037703041c2a9a71017475b9))
|
31
|
+
|
32
|
+
## v4.8.0 (2024-07-16)
|
33
|
+
|
34
|
+
### Chore
|
35
|
+
|
36
|
+
* chore(deps): update gitlab/gitlab-ee docker tag to v17.1.2-ee.0 ([`6fedfa5`](https://github.com/python-gitlab/python-gitlab/commit/6fedfa546120942757ea48337ce7446914eb3813))
|
37
|
+
|
38
|
+
* chore(deps): update all non-major dependencies ([`4a2b213`](https://github.com/python-gitlab/python-gitlab/commit/4a2b2133b52dac102d6f623bf028bdef6dd5a92f))
|
39
|
+
|
40
|
+
* chore(ci): specify name of "stale" label
|
41
|
+
|
42
|
+
Saw the following error in the log:
|
43
|
+
[#2618] Removing the label "Stale" from this issue...
|
44
|
+
##[error][#2618] Error when removing the label: "Label does not exist"
|
45
|
+
|
46
|
+
My theory is that the case doesn't match ("Stale" != "stale") and that
|
47
|
+
is why it failed. Our label is "stale" so update this to match.
|
48
|
+
Thought of changing the label name on GitHub but then would also
|
49
|
+
require a change here to the "any-of-labels". So it seemed simpler to
|
50
|
+
just change it here.
|
51
|
+
|
52
|
+
It is confusing though that it detected the label "stale", but then
|
53
|
+
couldn't delete it. ([`44f62c4`](https://github.com/python-gitlab/python-gitlab/commit/44f62c49106abce2099d5bb1f3f97b64971da406))
|
54
|
+
|
55
|
+
* chore(ci): stale: allow issues/PRs that have stale label to be closed
|
56
|
+
|
57
|
+
If a `stale` label is manually applied, allow the issue or PR to be
|
58
|
+
closed by the stale job.
|
59
|
+
|
60
|
+
Previously it would require the `stale` label and to also have one of
|
61
|
+
'need info' or 'Waiting for response' labels added. ([`2ab88b2`](https://github.com/python-gitlab/python-gitlab/commit/2ab88b25a64bd8e028cee2deeb842476de54b109))
|
62
|
+
|
63
|
+
* chore(ci): use codecov token when available ([`b74a6fb`](https://github.com/python-gitlab/python-gitlab/commit/b74a6fb5157e55d3e4471a0c5c8378fed8075edc))
|
64
|
+
|
65
|
+
* chore(deps): update python-semantic-release/upload-to-gh-release digest to fe6cc89 ([`3f3ad80`](https://github.com/python-gitlab/python-gitlab/commit/3f3ad80ef5bb2ed837adceae061291b2b5545ed3))
|
66
|
+
|
67
|
+
* chore(deps): update all non-major dependencies ([`0f59069`](https://github.com/python-gitlab/python-gitlab/commit/0f59069420f403a17f67a5c36c81485c9016b59b))
|
68
|
+
|
69
|
+
* chore: add `show_caller` argument to `utils.warn()`
|
70
|
+
|
71
|
+
This allows us to not add the caller's location to the UserWarning
|
72
|
+
message. ([`7d04315`](https://github.com/python-gitlab/python-gitlab/commit/7d04315d7d9641d88b0649e42bf24dd160629af5))
|
73
|
+
|
74
|
+
* chore: use correct type-hint for `die()` ([`9358640`](https://github.com/python-gitlab/python-gitlab/commit/93586405fbfa61317dc75e186799549573bc0bbb))
|
75
|
+
|
76
|
+
* chore(deps): update gitlab/gitlab-ee docker tag to v17.1.1-ee.0 ([`5e98510`](https://github.com/python-gitlab/python-gitlab/commit/5e98510a6c918b33c0db0a7756e8a43a8bdd868a))
|
77
|
+
|
78
|
+
* chore(deps): update python-semantic-release/upload-to-gh-release digest to c7c3b69 ([`23393fa`](https://github.com/python-gitlab/python-gitlab/commit/23393faa0642c66a991fd88f1d2d68aed1d2f172))
|
79
|
+
|
80
|
+
* chore(deps): update all non-major dependencies ([`cf87226`](https://github.com/python-gitlab/python-gitlab/commit/cf87226a81108fbed4f58751f1c03234cc57bcf1))
|
81
|
+
|
82
|
+
### Documentation
|
83
|
+
|
84
|
+
* docs: document how to use `sudo` if modifying an object
|
85
|
+
|
86
|
+
Add a warning about using `sudo` when saving.
|
87
|
+
|
88
|
+
Give an example of how to `get` an object, modify it, and then `save`
|
89
|
+
it using `sudo`
|
90
|
+
|
91
|
+
Closes: #532 ([`d509da6`](https://github.com/python-gitlab/python-gitlab/commit/d509da60155e9470dee197d91926850ea9548de9))
|
92
|
+
|
93
|
+
* docs: variables: add note about `filter` for updating
|
94
|
+
|
95
|
+
Add a note about using `filter` when updating a variable.
|
96
|
+
|
97
|
+
Closes: #2835
|
98
|
+
Closes: #1387
|
99
|
+
Closes: #1125 ([`c378817`](https://github.com/python-gitlab/python-gitlab/commit/c378817389a9510ef508b5a3c90282e5fb60049f))
|
100
|
+
|
101
|
+
### Feature
|
102
|
+
|
103
|
+
* feat(api): add support for project cluster agents ([`32dbc6f`](https://github.com/python-gitlab/python-gitlab/commit/32dbc6f2bee5b22d18c4793f135223d9b9824d15))
|
104
|
+
|
105
|
+
* feat(api): add support for container registry protection rules ([`6d31649`](https://github.com/python-gitlab/python-gitlab/commit/6d31649190279a844bfa591a953b0556cd6fc492))
|
106
|
+
|
107
|
+
* feat(api): add support for package protection rules ([`6b37811`](https://github.com/python-gitlab/python-gitlab/commit/6b37811c3060620afd8b81e54a99d96e4e094ce9))
|
108
|
+
|
109
|
+
* feat(api): add support for commit sequence ([`1f97be2`](https://github.com/python-gitlab/python-gitlab/commit/1f97be2a540122cb872ff59500d85a35031cab5f))
|
110
|
+
|
111
|
+
### Fix
|
112
|
+
|
113
|
+
* fix: issues `closed_by()/related_merge_requests()` use `http_list`
|
114
|
+
|
115
|
+
The `closed_by()` and `related_merge_requests()` API calls return
|
116
|
+
lists. So use the `http_list()` method.
|
117
|
+
|
118
|
+
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))
|
119
|
+
|
120
|
+
* fix: Have `participants()` method use `http_list()`
|
121
|
+
|
122
|
+
Previously it was using `http_get()` but the `participants` API
|
123
|
+
returns a list of participants. Also by using this then we will warn
|
124
|
+
if only a subset of the participants are returned.
|
125
|
+
|
126
|
+
Closes: #2913 ([`d065275`](https://github.com/python-gitlab/python-gitlab/commit/d065275f2fe296dd00e9bbd0f676d1596f261a85))
|
127
|
+
|
128
|
+
* fix(files): CR: add explicit comparison to `None`
|
129
|
+
|
130
|
+
Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`51d8f88`](https://github.com/python-gitlab/python-gitlab/commit/51d8f888aca469cff1c5ee5e158fb259d2862017))
|
131
|
+
|
132
|
+
* fix(files): make `ref` parameter optional in get raw file api
|
133
|
+
|
134
|
+
The `ref` parameter was made optional in gitlab v13.11.0. ([`00640ac`](https://github.com/python-gitlab/python-gitlab/commit/00640ac11f77e338919d7e9a1457d111c82af371))
|
135
|
+
|
136
|
+
* fix(cli): generate UserWarning if `list` does not return all entries
|
137
|
+
|
138
|
+
Previously in the CLI, calls to `list()` would have `get_all=False` by
|
139
|
+
default. Therefore hiding the fact that not all items are being
|
140
|
+
returned if there were more than 20 items.
|
141
|
+
|
142
|
+
Added `--no-get-all` option to `list` actions. Along with the already
|
143
|
+
existing `--get-all`.
|
144
|
+
|
145
|
+
Closes: #2900 ([`e5a4379`](https://github.com/python-gitlab/python-gitlab/commit/e5a43799b5039261d7034af909011444718a5814))
|
146
|
+
|
147
|
+
### Refactor
|
148
|
+
|
149
|
+
* refactor(package_protection_rules): add missing attributes ([`c307dd2`](https://github.com/python-gitlab/python-gitlab/commit/c307dd20e3df61b118b3b1a8191c0f1880bc9ed6))
|
150
|
+
|
151
|
+
### Test
|
152
|
+
|
153
|
+
* test(registry): disable functional tests for unavailable endpoints ([`ee393a1`](https://github.com/python-gitlab/python-gitlab/commit/ee393a16e1aa6dbf2f9785eb3ef486f7d5b9276f))
|
154
|
+
|
155
|
+
* test(files): test with and without `ref` parameter in test case ([`f316b46`](https://github.com/python-gitlab/python-gitlab/commit/f316b466c04f8ff3c0cca06d0e18ddf2d62d033c))
|
156
|
+
|
157
|
+
* test(files): omit optional `ref` parameter in test case ([`9cb3396`](https://github.com/python-gitlab/python-gitlab/commit/9cb3396d3bd83e82535a2a173b6e52b4f8c020f4))
|
158
|
+
|
159
|
+
* test(fixtures): remove deprecated config option ([`2156949`](https://github.com/python-gitlab/python-gitlab/commit/2156949866ce95af542c127ba4b069e83fcc8104))
|
160
|
+
|
3
161
|
## v4.7.0 (2024-06-28)
|
4
162
|
|
5
163
|
### Chore
|
@@ -1140,8 +1298,6 @@ Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`4f7c784`](https://gith
|
|
1140
1298
|
|
1141
1299
|
* fix(cli): display items when iterator is returned ([`33a04e7`](https://github.com/python-gitlab/python-gitlab/commit/33a04e74fc42d720c7be32172133a614f7268ec1))
|
1142
1300
|
|
1143
|
-
* fix: typo fixed in docs ([`ee5f444`](https://github.com/python-gitlab/python-gitlab/commit/ee5f444b16e4d2f645499ac06f5d81f22867f050))
|
1144
|
-
|
1145
1301
|
### Refactor
|
1146
1302
|
|
1147
1303
|
* refactor(client): let mypy know http_password is set ([`2dd177b`](https://github.com/python-gitlab/python-gitlab/commit/2dd177bf83fdf62f0e9bdcb3bc41d5e4f5631504))
|
@@ -1283,6 +1439,8 @@ too much memory. ([`585e3a8`](https://github.com/python-gitlab/python-gitlab/com
|
|
1283
1439
|
|
1284
1440
|
* fix(deps): bump requests-toolbelt to fix deprecation warning ([`faf842e`](https://github.com/python-gitlab/python-gitlab/commit/faf842e97d4858ff5ebd8ae6996e0cb3ca29881c))
|
1285
1441
|
|
1442
|
+
* fix: typo fixed in docs ([`ee5f444`](https://github.com/python-gitlab/python-gitlab/commit/ee5f444b16e4d2f645499ac06f5d81f22867f050))
|
1443
|
+
|
1286
1444
|
* fix: Use the ProjectIterationManager within the Project object
|
1287
1445
|
|
1288
1446
|
The Project object was previously using the GroupIterationManager
|
@@ -1677,10 +1835,10 @@ chore(deps): update all non-major dependencies ([`9410acb`](https://github.com/p
|
|
1677
1835
|
|
1678
1836
|
* chore(deps): update dependency commitizen to v2.32.5 ([`e180f14`](https://github.com/python-gitlab/python-gitlab/commit/e180f14309fa728e612ad6259c2e2c1f328a140c))
|
1679
1837
|
|
1680
|
-
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`31ba64f`](https://github.com/python-gitlab/python-gitlab/commit/31ba64f2849ce85d434cd04ec7b837ca8f659e03))
|
1681
|
-
|
1682
1838
|
* chore(deps): update dependency commitizen to v2.32.2 ([`31aea28`](https://github.com/python-gitlab/python-gitlab/commit/31aea286e0767148498af300e78db7dbdf715bda))
|
1683
1839
|
|
1840
|
+
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`31ba64f`](https://github.com/python-gitlab/python-gitlab/commit/31ba64f2849ce85d434cd04ec7b837ca8f659e03))
|
1841
|
+
|
1684
1842
|
### Feature
|
1685
1843
|
|
1686
1844
|
* feat: Add reset_approvals api
|
@@ -1689,6 +1847,13 @@ Added the newly added reset_approvals merge request api.
|
|
1689
1847
|
|
1690
1848
|
Signed-off-by: Lucas Zampieri <lzampier@redhat.com> ([`88693ff`](https://github.com/python-gitlab/python-gitlab/commit/88693ff2d6f4eecf3c79d017df52738886e2d636))
|
1691
1849
|
|
1850
|
+
* feat: add support for deployment approval endpoint
|
1851
|
+
|
1852
|
+
Add support for the deployment approval endpoint[1]
|
1853
|
+
|
1854
|
+
[1] https://docs.gitlab.com/ee/api/deployments.html#approve-or-reject-a-blocked-deployment
|
1855
|
+
Closes: #2253 ([`9c9eeb9`](https://github.com/python-gitlab/python-gitlab/commit/9c9eeb901b1f3acd3fb0c4f24014ae2ed7c975ec))
|
1856
|
+
|
1692
1857
|
### Fix
|
1693
1858
|
|
1694
1859
|
* fix(cli): add missing attributes for creating MRs ([`1714d0a`](https://github.com/python-gitlab/python-gitlab/commit/1714d0a980afdb648d203751dedf95ee95ac326e))
|
@@ -1749,24 +1914,17 @@ $ tox -e api_func_v4 -- -k test_gitlab.py ([`98f1956`](https://github.com/python
|
|
1749
1914
|
|
1750
1915
|
* chore(deps): update dependency types-requests to v2.28.9 ([`be932f6`](https://github.com/python-gitlab/python-gitlab/commit/be932f6dde5f47fb3d30e654b82563cd719ae8ce))
|
1751
1916
|
|
1752
|
-
* chore(deps): update dependency types-setuptools to v64 ([`4c97f26`](https://github.com/python-gitlab/python-gitlab/commit/4c97f26287cc947ab5ee228a5862f2a20535d2ae))
|
1753
|
-
|
1754
1917
|
* chore(deps): update pre-commit hook pycqa/flake8 to v5 ([`835d884`](https://github.com/python-gitlab/python-gitlab/commit/835d884e702f1ee48575b3154136f1ef4b2f2ff2))
|
1755
1918
|
|
1756
|
-
* chore(deps): update dependency types-requests to v2.28.8 ([`8e5b86f`](https://github.com/python-gitlab/python-gitlab/commit/8e5b86fcc72bf30749228519f1b4a6e29a8dbbe9))
|
1757
|
-
|
1758
1919
|
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.31.0 ([`71d37d9`](https://github.com/python-gitlab/python-gitlab/commit/71d37d98721c0813b096124ed2ccf5487ab463b9))
|
1759
1920
|
|
1760
1921
|
* chore(deps): update dependency commitizen to v2.31.0 ([`4ff0894`](https://github.com/python-gitlab/python-gitlab/commit/4ff0894870977f07657e80bfaa06387f2af87d10))
|
1761
1922
|
|
1762
|
-
|
1763
|
-
|
1764
|
-
* feat: add support for deployment approval endpoint
|
1923
|
+
* chore(deps): update dependency types-setuptools to v64 ([`4c97f26`](https://github.com/python-gitlab/python-gitlab/commit/4c97f26287cc947ab5ee228a5862f2a20535d2ae))
|
1765
1924
|
|
1766
|
-
|
1925
|
+
* chore(deps): update dependency types-requests to v2.28.8 ([`8e5b86f`](https://github.com/python-gitlab/python-gitlab/commit/8e5b86fcc72bf30749228519f1b4a6e29a8dbbe9))
|
1767
1926
|
|
1768
|
-
|
1769
|
-
Closes: #2253 ([`9c9eeb9`](https://github.com/python-gitlab/python-gitlab/commit/9c9eeb901b1f3acd3fb0c4f24014ae2ed7c975ec))
|
1927
|
+
### Feature
|
1770
1928
|
|
1771
1929
|
* feat: add support for merge_base API ([`dd4fbd5`](https://github.com/python-gitlab/python-gitlab/commit/dd4fbd5e43adbbc502624a8de0d30925d798dec0))
|
1772
1930
|
|
@@ -1839,13 +1997,13 @@ query parameters. ([`6d1b62d`](https://github.com/python-gitlab/python-gitlab/co
|
|
1839
1997
|
|
1840
1998
|
* chore: enable mypy check `disallow_any_generics` ([`24d17b4`](https://github.com/python-gitlab/python-gitlab/commit/24d17b43da16dd11ab37b2cee561d9392c90f32e))
|
1841
1999
|
|
1842
|
-
* chore:
|
2000
|
+
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.2 ([`4988c02`](https://github.com/python-gitlab/python-gitlab/commit/4988c029e0dda89ff43375d1cd2f407abdbe3dc7))
|
1843
2001
|
|
1844
|
-
* chore
|
2002
|
+
* chore: enable mypy check `no_implicit_optional` ([`64b208e`](https://github.com/python-gitlab/python-gitlab/commit/64b208e0e91540af2b645da595f0ef79ee7522e1))
|
1845
2003
|
|
1846
2004
|
* chore(deps): update dependency flake8 to v5 ([`cdc384b`](https://github.com/python-gitlab/python-gitlab/commit/cdc384b8a2096e31aff12ea98383e2b1456c5731))
|
1847
2005
|
|
1848
|
-
* chore(deps): update
|
2006
|
+
* chore(deps): update dependency types-requests to v2.28.6 ([`54dd4c3`](https://github.com/python-gitlab/python-gitlab/commit/54dd4c3f857f82aa8781b0daf22fa2dd3c60c2c4))
|
1849
2007
|
|
1850
2008
|
* chore(deps): update dependency commitizen to v2.29.2 ([`30274ea`](https://github.com/python-gitlab/python-gitlab/commit/30274ead81205946a5a7560e592f346075035e0e))
|
1851
2009
|
|
@@ -1856,16 +2014,16 @@ the path. So https://gitlab.com/gitlab-org/gitlab would only show
|
|
1856
2014
|
"gitlab". Using `path_with_namespace` it will now show
|
1857
2015
|
"gitlab-org/gitlab" ([`7cccefe`](https://github.com/python-gitlab/python-gitlab/commit/7cccefe6da0e90391953734d95debab2fe07ea49))
|
1858
2016
|
|
2017
|
+
* chore: enable mypy check `warn_return_any`
|
2018
|
+
|
2019
|
+
Update code so that the `warn_return_any` check passes. ([`76ec4b4`](https://github.com/python-gitlab/python-gitlab/commit/76ec4b481fa931ea36a195ac474812c11babef7b))
|
2020
|
+
|
1859
2021
|
* chore: make code PEP597 compliant
|
1860
2022
|
|
1861
2023
|
Use `encoding="utf-8"` in `open()` and open-like functions.
|
1862
2024
|
|
1863
2025
|
https://peps.python.org/pep-0597/ ([`433dba0`](https://github.com/python-gitlab/python-gitlab/commit/433dba02e0d4462ae84a73d8699fe7f3e07aa410))
|
1864
2026
|
|
1865
|
-
* chore: enable mypy check `warn_return_any`
|
1866
|
-
|
1867
|
-
Update code so that the `warn_return_any` check passes. ([`76ec4b4`](https://github.com/python-gitlab/python-gitlab/commit/76ec4b481fa931ea36a195ac474812c11babef7b))
|
1868
|
-
|
1869
2027
|
* chore(clusters): deprecate clusters support
|
1870
2028
|
|
1871
2029
|
Cluster support was deprecated in GitLab 14.5 [1]. And disabled by
|
@@ -1925,6 +2083,10 @@ running.
|
|
1925
2083
|
|
1926
2084
|
[1] https://docs.gitlab.com/ee/user/admin_area/monitoring/health_check.html ([`67508e8`](https://github.com/python-gitlab/python-gitlab/commit/67508e8100be18ce066016dcb8e39fa9f0c59e51))
|
1927
2085
|
|
2086
|
+
* test(functional): bump GitLab docker image to 15.2.0-ee.0
|
2087
|
+
|
2088
|
+
Use the GitLab docker image 15.2.0-ee.0 in the functional testing. ([`69014e9`](https://github.com/python-gitlab/python-gitlab/commit/69014e9be3a781be6742478af820ea097d004791))
|
2089
|
+
|
1928
2090
|
### Unknown
|
1929
2091
|
|
1930
2092
|
* Merge pull request #2221 from python-gitlab/jlvillal/unparse
|
@@ -1993,14 +2155,14 @@ Enable using GitLab Enterprise Edition (EE) in the functional tests.
|
|
1993
2155
|
This will allow us to add functional tests for EE only features in the
|
1994
2156
|
functional tests. ([`17c01ea`](https://github.com/python-gitlab/python-gitlab/commit/17c01ea55806c722523f2f9aef0175455ec942c5))
|
1995
2157
|
|
1996
|
-
* chore(deps): update dependency mypy to v0.971 ([`7481d27`](https://github.com/python-gitlab/python-gitlab/commit/7481d271512eaa234315bcdbaf329026589bfda7))
|
1997
|
-
|
1998
2158
|
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.0 ([`ad8d62a`](https://github.com/python-gitlab/python-gitlab/commit/ad8d62ae9612c173a749d413f7a84e5b8c0167cf))
|
1999
2159
|
|
2000
|
-
* chore(deps): update typing dependencies ([`f2209a0`](https://github.com/python-gitlab/python-gitlab/commit/f2209a0ea084eaf7fbc89591ddfea138d99527a6))
|
2001
|
-
|
2002
2160
|
* chore(deps): update dependency commitizen to v2.29.0 ([`c365be1`](https://github.com/python-gitlab/python-gitlab/commit/c365be1b908c5e4fda445680c023607bdf6c6281))
|
2003
2161
|
|
2162
|
+
* chore(deps): update dependency mypy to v0.971 ([`7481d27`](https://github.com/python-gitlab/python-gitlab/commit/7481d271512eaa234315bcdbaf329026589bfda7))
|
2163
|
+
|
2164
|
+
* chore(deps): update typing dependencies ([`f2209a0`](https://github.com/python-gitlab/python-gitlab/commit/f2209a0ea084eaf7fbc89591ddfea138d99527a6))
|
2165
|
+
|
2004
2166
|
* chore(authors): fix email and do the ABC ([`9833632`](https://github.com/python-gitlab/python-gitlab/commit/98336320a66d1859ba73e084a5e86edc3aa1643c))
|
2005
2167
|
|
2006
2168
|
* chore: make reset_gitlab() better
|
@@ -2061,21 +2223,21 @@ that naming convention. ([`8cf5cd9`](https://github.com/python-gitlab/python-git
|
|
2061
2223
|
|
2062
2224
|
* chore(ci_lint): add create attributes ([`6e1342f`](https://github.com/python-gitlab/python-gitlab/commit/6e1342fc0b7cf740b25a939942ea02cdd18a9625))
|
2063
2225
|
|
2064
|
-
* chore(deps): update dependency requests to v2.28.1 ([`be33245`](https://github.com/python-gitlab/python-gitlab/commit/be3324597aa3f22b0692d3afa1df489f2709a73e))
|
2065
|
-
|
2066
|
-
* chore(deps): update dependency pylint to v2.14.4 ([`2cee2d4`](https://github.com/python-gitlab/python-gitlab/commit/2cee2d4a86e76d3f63f3608ed6a92e64813613d3))
|
2067
|
-
|
2068
2226
|
* chore: simplify multi-nested try blocks
|
2069
2227
|
|
2070
2228
|
Instead of have a multi-nested series of try blocks. Convert it to a
|
2071
2229
|
more readable series of `if` statements. ([`e734470`](https://github.com/python-gitlab/python-gitlab/commit/e7344709d931e2b254d225d77ca1474bc69971f8))
|
2072
2230
|
|
2073
|
-
* chore(
|
2231
|
+
* chore(deps): update dependency requests to v2.28.1 ([`be33245`](https://github.com/python-gitlab/python-gitlab/commit/be3324597aa3f22b0692d3afa1df489f2709a73e))
|
2074
2232
|
|
2075
|
-
|
2233
|
+
* chore(deps): update dependency pylint to v2.14.4 ([`2cee2d4`](https://github.com/python-gitlab/python-gitlab/commit/2cee2d4a86e76d3f63f3608ed6a92e64813613d3))
|
2076
2234
|
|
2077
2235
|
* chore: fix misspelling ([`2d08fc8`](https://github.com/python-gitlab/python-gitlab/commit/2d08fc89fb67de25ad41f64c86a9b8e96e4c261a))
|
2078
2236
|
|
2237
|
+
* chore(docs): convert tabs to spaces
|
2238
|
+
|
2239
|
+
Some tabs snuck into the documentation. Convert them to 4-spaces. ([`9ea5520`](https://github.com/python-gitlab/python-gitlab/commit/9ea5520cec8979000d7f5dbcc950f2250babea96))
|
2240
|
+
|
2079
2241
|
### Documentation
|
2080
2242
|
|
2081
2243
|
* docs(cli): showcase use of token scopes ([`4a6f8d6`](https://github.com/python-gitlab/python-gitlab/commit/4a6f8d67a94a3d104a24081ad1dbad5b2e3d9c3e))
|
@@ -2250,6 +2412,8 @@ Closes: #2116 ([`5d9c198`](https://github.com/python-gitlab/python-gitlab/commit
|
|
2250
2412
|
|
2251
2413
|
* refactor(test-projects): apply suggestions and use fixtures ([`a51f848`](https://github.com/python-gitlab/python-gitlab/commit/a51f848db4204b2f37ae96fd235ae33cb7c2fe98))
|
2252
2414
|
|
2415
|
+
* refactor(test-projects): remove test_restore_project ([`9be0875`](https://github.com/python-gitlab/python-gitlab/commit/9be0875c3793324b4c4dde29519ee62b39a8cc18))
|
2416
|
+
|
2253
2417
|
### Test
|
2254
2418
|
|
2255
2419
|
* test(cli): add tests for token scopes ([`263fe3d`](https://github.com/python-gitlab/python-gitlab/commit/263fe3d24836b34dccdcee0221bd417e0b74fb2e))
|
@@ -2259,10 +2423,6 @@ Closes: #2116 ([`5d9c198`](https://github.com/python-gitlab/python-gitlab/commit
|
|
2259
2423
|
https://github.com/python-gitlab/python-gitlab/issues/1698 has been
|
2260
2424
|
fixed. Add test to show that. ([`75bec7d`](https://github.com/python-gitlab/python-gitlab/commit/75bec7d543dd740c50452b21b0b4509377cd40ce))
|
2261
2425
|
|
2262
|
-
* test(functional): bump GitLab docker image to 15.2.0-ee.0
|
2263
|
-
|
2264
|
-
Use the GitLab docker image 15.2.0-ee.0 in the functional testing. ([`69014e9`](https://github.com/python-gitlab/python-gitlab/commit/69014e9be3a781be6742478af820ea097d004791))
|
2265
|
-
|
2266
2426
|
* test: always ensure clean config environment ([`8d4f13b`](https://github.com/python-gitlab/python-gitlab/commit/8d4f13b192afd5d4610eeaf2bbea71c3b6a25964))
|
2267
2427
|
|
2268
2428
|
* test(ee): add an EE specific test ([`10987b3`](https://github.com/python-gitlab/python-gitlab/commit/10987b3089d4fe218dd2116dd871e0a070db3f7f))
|
@@ -2295,6 +2455,8 @@ show up in the log. ([`95fe924`](https://github.com/python-gitlab/python-gitlab/
|
|
2295
2455
|
|
2296
2456
|
* test(functional): replace len() calls with list membership checks ([`97e0eb9`](https://github.com/python-gitlab/python-gitlab/commit/97e0eb9267202052ed14882258dceca0f6c4afd7))
|
2297
2457
|
|
2458
|
+
* test(projects): add unit tests for projects ([`67942f0`](https://github.com/python-gitlab/python-gitlab/commit/67942f0d46b7d445f28f80d3f57aa91eeea97a24))
|
2459
|
+
|
2298
2460
|
### Unknown
|
2299
2461
|
|
2300
2462
|
* Merge pull request #2198 from nickbroon/nickbroon-release-sort-order
|
@@ -2421,10 +2583,10 @@ chore(docs): convert tabs to spaces ([`8771ad8`](https://github.com/python-gitla
|
|
2421
2583
|
|
2422
2584
|
* chore(workflows): explicitly use python-version ([`eb14475`](https://github.com/python-gitlab/python-gitlab/commit/eb1447588dfbbdfe724fca9009ea5451061b5ff0))
|
2423
2585
|
|
2424
|
-
* chore(deps): update typing dependencies ([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
|
2425
|
-
|
2426
2586
|
* chore(deps): update actions/setup-python action to v4 ([`77c1f03`](https://github.com/python-gitlab/python-gitlab/commit/77c1f0352adc8488041318e5dfd2fa98a5b5af62))
|
2427
2587
|
|
2588
|
+
* chore(deps): update typing dependencies ([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
|
2589
|
+
|
2428
2590
|
* chore(deps): update pre-commit hook pycqa/pylint to v2.14.3 ([`d1fe838`](https://github.com/python-gitlab/python-gitlab/commit/d1fe838b65ccd1a68fb6301bbfd06cd19425a75c))
|
2429
2591
|
|
2430
2592
|
* chore(ci): increase timeout for docker container to come online
|
@@ -2447,10 +2609,6 @@ this will help people when their job fails. ([`d08d07d`](https://github.com/pyth
|
|
2447
2609
|
|
2448
2610
|
* chore(deps): update dependency pylint to v2.14.3 ([`9a16bb1`](https://github.com/python-gitlab/python-gitlab/commit/9a16bb158f3cb34a4c4cb7451127fbc7c96642e2))
|
2449
2611
|
|
2450
|
-
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.27.1 ([`22c5db4`](https://github.com/python-gitlab/python-gitlab/commit/22c5db4bcccf592f5cf7ea34c336208c21769896))
|
2451
|
-
|
2452
|
-
* chore(deps): update dependency requests to v2.28.0 ([`d361f4b`](https://github.com/python-gitlab/python-gitlab/commit/d361f4bd4ec066452a75cf04f64334234478bb02))
|
2453
|
-
|
2454
2612
|
* chore: fix issue found with pylint==2.14.3
|
2455
2613
|
|
2456
2614
|
A new error was reported when running pylint==2.14.3:
|
@@ -2458,6 +2616,10 @@ A new error was reported when running pylint==2.14.3:
|
|
2458
2616
|
|
2459
2617
|
Fixed this issue. ([`eeab035`](https://github.com/python-gitlab/python-gitlab/commit/eeab035ab715e088af73ada00e0a3b0c03527187))
|
2460
2618
|
|
2619
|
+
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.27.1 ([`22c5db4`](https://github.com/python-gitlab/python-gitlab/commit/22c5db4bcccf592f5cf7ea34c336208c21769896))
|
2620
|
+
|
2621
|
+
* chore(deps): update dependency requests to v2.28.0 ([`d361f4b`](https://github.com/python-gitlab/python-gitlab/commit/d361f4bd4ec066452a75cf04f64334234478bb02))
|
2622
|
+
|
2461
2623
|
* chore(deps): update dependency mypy to v0.961 ([`f117b2f`](https://github.com/python-gitlab/python-gitlab/commit/f117b2f92226a507a8adbb42023143dac0cc07fc))
|
2462
2624
|
|
2463
2625
|
* chore(deps): update typing dependencies ([`aebf9c8`](https://github.com/python-gitlab/python-gitlab/commit/aebf9c83a4cbf7cf4243cb9b44375ca31f9cc878))
|
@@ -2475,11 +2637,6 @@ Use multiple processors when running PyLint. On my system it took
|
|
2475
2637
|
about 10.3 seconds to run PyLint before this change. After this change
|
2476
2638
|
it takes about 5.8 seconds to run PyLint. ([`7f2240f`](https://github.com/python-gitlab/python-gitlab/commit/7f2240f1b9231e8b856706952ec84234177a495b))
|
2477
2639
|
|
2478
|
-
* chore: rename `whaction` and `action` to `resource_action` in CLI
|
2479
|
-
|
2480
|
-
Rename the variables `whaction` and `action` to `resource_action` to
|
2481
|
-
improve code-readability. ([`fb3f28a`](https://github.com/python-gitlab/python-gitlab/commit/fb3f28a053f0dcf0a110bb8b6fd11696b4ba3dd9))
|
2482
|
-
|
2483
2640
|
* chore: enable pylint check: "redefined-outer-name",
|
2484
2641
|
|
2485
2642
|
Enable the pylint check "redefined-outer-name" and fix the errors
|
@@ -2515,6 +2672,11 @@ Enable the pylint checks:
|
|
2515
2672
|
|
2516
2673
|
Update code to resolve errors found ([`1e89164`](https://github.com/python-gitlab/python-gitlab/commit/1e8916438f7c4f67bd7745103b870d84f6ba2d01))
|
2517
2674
|
|
2675
|
+
* chore: rename `whaction` and `action` to `resource_action` in CLI
|
2676
|
+
|
2677
|
+
Rename the variables `whaction` and `action` to `resource_action` to
|
2678
|
+
improve code-readability. ([`fb3f28a`](https://github.com/python-gitlab/python-gitlab/commit/fb3f28a053f0dcf0a110bb8b6fd11696b4ba3dd9))
|
2679
|
+
|
2518
2680
|
* chore: rename `what` to `gitlab_resource`
|
2519
2681
|
|
2520
2682
|
Naming a variable `what` makes it difficult to understand what it is
|
@@ -2576,10 +2738,6 @@ where `get()` in a `GetWithoutIdMixin` based class could return `None`
|
|
2576
2738
|
|
2577
2739
|
Update the type-hints to no longer return `Optional` AKA `None` ([`aa972d4`](https://github.com/python-gitlab/python-gitlab/commit/aa972d49c57f2ebc983d2de1cfb8d18924af6734))
|
2578
2740
|
|
2579
|
-
* chore(deps): update dependency commitizen to v2.27.1 ([`456f9f1`](https://github.com/python-gitlab/python-gitlab/commit/456f9f14453f2090fdaf88734fe51112bf4e7fde))
|
2580
|
-
|
2581
|
-
* chore(deps): update typing dependencies ([`f3f79c1`](https://github.com/python-gitlab/python-gitlab/commit/f3f79c1d3afa923405b83dcea905fec213201452))
|
2582
|
-
|
2583
2741
|
* chore: correct ModuleNotFoundError() arguments
|
2584
2742
|
|
2585
2743
|
Previously in commit 233b79ed442aac66faf9eb4b0087ea126d6dffc5 I had
|
@@ -2591,6 +2749,10 @@ very helpful.
|
|
2591
2749
|
Correct that and add a unit-test that shows we get the message we
|
2592
2750
|
expect. ([`0b7933c`](https://github.com/python-gitlab/python-gitlab/commit/0b7933c5632c2f81c89f9a97e814badf65d1eb38))
|
2593
2751
|
|
2752
|
+
* chore(deps): update typing dependencies ([`f3f79c1`](https://github.com/python-gitlab/python-gitlab/commit/f3f79c1d3afa923405b83dcea905fec213201452))
|
2753
|
+
|
2754
|
+
* chore(deps): update dependency commitizen to v2.27.1 ([`456f9f1`](https://github.com/python-gitlab/python-gitlab/commit/456f9f14453f2090fdaf88734fe51112bf4e7fde))
|
2755
|
+
|
2594
2756
|
* chore(mixins): remove None check as http_get always returns value ([`f0152dc`](https://github.com/python-gitlab/python-gitlab/commit/f0152dc3cc9a42aa4dc3c0014b4c29381e9b39d6))
|
2595
2757
|
|
2596
2758
|
### Documentation
|
@@ -2659,16 +2821,16 @@ artifacts
|
|
2659
2821
|
|
2660
2822
|
* test(packages): add tests for streaming downloads ([`b644721`](https://github.com/python-gitlab/python-gitlab/commit/b6447211754e126f64e12fc735ad74fe557b7fb4))
|
2661
2823
|
|
2662
|
-
* feat(api): support head() method for get and list endpoints ([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
|
2663
|
-
|
2664
|
-
* feat(api): implement HEAD method ([`90635a7`](https://github.com/python-gitlab/python-gitlab/commit/90635a7db3c9748745471d2282260418e31c7797))
|
2665
|
-
|
2666
2824
|
* feat(users): add approve and reject methods to User
|
2667
2825
|
|
2668
2826
|
As requested in #1604.
|
2669
2827
|
|
2670
2828
|
Co-authored-by: John Villalovos <john@sodarock.com> ([`f57139d`](https://github.com/python-gitlab/python-gitlab/commit/f57139d8f1dafa6eb19d0d954b3634c19de6413c))
|
2671
2829
|
|
2830
|
+
* feat(api): support head() method for get and list endpoints ([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
|
2831
|
+
|
2832
|
+
* feat(api): implement HEAD method ([`90635a7`](https://github.com/python-gitlab/python-gitlab/commit/90635a7db3c9748745471d2282260418e31c7797))
|
2833
|
+
|
2672
2834
|
* feat(api): convert gitlab.const to Enums
|
2673
2835
|
|
2674
2836
|
This allows accessing the elements by value, i.e.:
|
@@ -2750,8 +2912,6 @@ requires it to be a keyword-only argument. ([`212ddfc`](https://github.com/pytho
|
|
2750
2912
|
|
2751
2913
|
* refactor: remove no-op id argument in GetWithoutIdMixin ([`0f2a602`](https://github.com/python-gitlab/python-gitlab/commit/0f2a602d3a9d6579f5fdfdf945a236ae44e93a12))
|
2752
2914
|
|
2753
|
-
* refactor(test-projects): remove test_restore_project ([`9be0875`](https://github.com/python-gitlab/python-gitlab/commit/9be0875c3793324b4c4dde29519ee62b39a8cc18))
|
2754
|
-
|
2755
2915
|
* refactor(mixins): extract custom type transforms into utils ([`09b3b22`](https://github.com/python-gitlab/python-gitlab/commit/09b3b2225361722f2439952d2dbee6a48a9f9fd9))
|
2756
2916
|
|
2757
2917
|
### Test
|
@@ -2770,14 +2930,12 @@ Enable the pylint "unused-argument" check and resolve issues it found.
|
|
2770
2930
|
|
2771
2931
|
* test(api): add tests for HEAD method ([`b0f02fa`](https://github.com/python-gitlab/python-gitlab/commit/b0f02facef2ea30f24dbfb3c52974f34823e9bba))
|
2772
2932
|
|
2773
|
-
* test
|
2933
|
+
* test: add more tests for RequiredOptional ([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
|
2774
2934
|
|
2775
2935
|
* test: move back to using latest Python 3.11 version ([`8c34781`](https://github.com/python-gitlab/python-gitlab/commit/8c347813e7aaf26a33fe5ae4ae73448beebfbc6c))
|
2776
2936
|
|
2777
2937
|
* test: increase client coverage ([`00aec96`](https://github.com/python-gitlab/python-gitlab/commit/00aec96ed0b60720362c6642b416567ff39aef09))
|
2778
2938
|
|
2779
|
-
* test: add more tests for RequiredOptional ([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
|
2780
|
-
|
2781
2939
|
* test(cli): improve coverage for custom actions ([`7327f78`](https://github.com/python-gitlab/python-gitlab/commit/7327f78073caa2fb8aaa6bf0e57b38dd7782fa57))
|
2782
2940
|
|
2783
2941
|
* test(gitlab): increase unit test coverage ([`df072e1`](https://github.com/python-gitlab/python-gitlab/commit/df072e130aa145a368bbdd10be98208a25100f89))
|
@@ -2934,6 +3092,12 @@ call it `flake8` to be more precise. ([`78b4f99`](https://github.com/python-gitl
|
|
2934
3092
|
|
2935
3093
|
* chore(deps): update dependency pylint to v2.13.8 ([`b235bb0`](https://github.com/python-gitlab/python-gitlab/commit/b235bb00f3c09be5bb092a5bb7298e7ca55f2366))
|
2936
3094
|
|
3095
|
+
* chore: exclude `build/` directory from mypy check
|
3096
|
+
|
3097
|
+
The `build/` directory is created by the tox environment
|
3098
|
+
`twine-check`. When the `build/` directory exists `mypy` will have an
|
3099
|
+
error. ([`989a12b`](https://github.com/python-gitlab/python-gitlab/commit/989a12b79ac7dff8bf0d689f36ccac9e3494af01))
|
3100
|
+
|
2937
3101
|
* chore: add `cz` to default tox environment list and skip_missing_interpreters
|
2938
3102
|
|
2939
3103
|
Add the `cz` (`comittizen`) check by default.
|
@@ -2942,12 +3106,6 @@ Set skip_missing_interpreters = True so that when a user runs tox and
|
|
2942
3106
|
doesn't have a specific version of Python it doesn't mark it as an
|
2943
3107
|
error. ([`ba8c052`](https://github.com/python-gitlab/python-gitlab/commit/ba8c0522dc8a116e7a22c42e21190aa205d48253))
|
2944
3108
|
|
2945
|
-
* chore: exclude `build/` directory from mypy check
|
2946
|
-
|
2947
|
-
The `build/` directory is created by the tox environment
|
2948
|
-
`twine-check`. When the `build/` directory exists `mypy` will have an
|
2949
|
-
error. ([`989a12b`](https://github.com/python-gitlab/python-gitlab/commit/989a12b79ac7dff8bf0d689f36ccac9e3494af01))
|
2950
|
-
|
2951
3109
|
* chore(deps): update dependency types-requests to v2.27.25 ([`d6ea47a`](https://github.com/python-gitlab/python-gitlab/commit/d6ea47a175c17108e5388213abd59c3e7e847b02))
|
2952
3110
|
|
2953
3111
|
* chore(ci): replace commitlint with commitizen ([`b8d15fe`](https://github.com/python-gitlab/python-gitlab/commit/b8d15fed0740301617445e5628ab76b6f5b8baeb))
|
@@ -3084,10 +3242,10 @@ chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://g
|
|
3084
3242
|
|
3085
3243
|
* chore(deps): update typing dependencies ([`d27cc6a`](https://github.com/python-gitlab/python-gitlab/commit/d27cc6a1219143f78aad7e063672c7442e15672e))
|
3086
3244
|
|
3087
|
-
* chore(deps): update dependency pylint to v2.13.5 ([`5709675`](https://github.com/python-gitlab/python-gitlab/commit/570967541ecd46bfb83461b9d2c95bb0830a84fa))
|
3088
|
-
|
3089
3245
|
* chore(deps): update pre-commit hook pycqa/pylint to v2.13.5 ([`17d5c6c`](https://github.com/python-gitlab/python-gitlab/commit/17d5c6c3ba26f8b791ec4571726c533f5bbbde7d))
|
3090
3246
|
|
3247
|
+
* chore(deps): update dependency pylint to v2.13.5 ([`5709675`](https://github.com/python-gitlab/python-gitlab/commit/570967541ecd46bfb83461b9d2c95bb0830a84fa))
|
3248
|
+
|
3091
3249
|
* chore(deps): update codecov/codecov-action action to v3 ([`292e91b`](https://github.com/python-gitlab/python-gitlab/commit/292e91b3cbc468c4a40ed7865c3c98180c1fe864))
|
3092
3250
|
|
3093
3251
|
* chore(deps): update dependency types-setuptools to v57.4.12 ([`6551353`](https://github.com/python-gitlab/python-gitlab/commit/65513538ce60efdde80e5e0667b15739e6d90ac1))
|
@@ -3114,6 +3272,10 @@ chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://g
|
|
3114
3272
|
|
3115
3273
|
### Feature
|
3116
3274
|
|
3275
|
+
* feat(objects): support getting project/group deploy tokens by id ([`fcd37fe`](https://github.com/python-gitlab/python-gitlab/commit/fcd37feff132bd5b225cde9d5f9c88e62b3f1fd6))
|
3276
|
+
|
3277
|
+
* feat(user): support getting user SSH key by id ([`6f93c05`](https://github.com/python-gitlab/python-gitlab/commit/6f93c0520f738950a7c67dbeca8d1ac8257e2661))
|
3278
|
+
|
3117
3279
|
* feat: emit a warning when using a `list()` method returns max
|
3118
3280
|
|
3119
3281
|
A common cause of issues filed and questions raised is that a user
|
@@ -3125,20 +3287,16 @@ To help with this we now emit a warning when the result from a
|
|
3125
3287
|
`per_page` value) and the user is not using either `all=True`,
|
3126
3288
|
`all=False`, `as_list=False`, or `page=X`. ([`1339d64`](https://github.com/python-gitlab/python-gitlab/commit/1339d645ce58a2e1198b898b9549ba5917b1ff12))
|
3127
3289
|
|
3128
|
-
* feat(objects): support getting project/group deploy tokens by id ([`fcd37fe`](https://github.com/python-gitlab/python-gitlab/commit/fcd37feff132bd5b225cde9d5f9c88e62b3f1fd6))
|
3129
|
-
|
3130
|
-
* feat(user): support getting user SSH key by id ([`6f93c05`](https://github.com/python-gitlab/python-gitlab/commit/6f93c0520f738950a7c67dbeca8d1ac8257e2661))
|
3131
|
-
|
3132
3290
|
* feat(api): re-add topic delete endpoint
|
3133
3291
|
|
3134
3292
|
This reverts commit e3035a799a484f8d6c460f57e57d4b59217cd6de. ([`d1d96bd`](https://github.com/python-gitlab/python-gitlab/commit/d1d96bda5f1c6991c8ea61dca8f261e5b74b5ab6))
|
3135
3293
|
|
3136
3294
|
### Fix
|
3137
3295
|
|
3138
|
-
* fix: add ChunkedEncodingError to list of retryable exceptions ([`7beb20f`](https://github.com/python-gitlab/python-gitlab/commit/7beb20ff7b7b85fb92fc6b647d9c1bdb7568f27c))
|
3139
|
-
|
3140
3296
|
* fix: avoid passing redundant arguments to API ([`3431887`](https://github.com/python-gitlab/python-gitlab/commit/34318871347b9c563d01a13796431c83b3b1d58c))
|
3141
3297
|
|
3298
|
+
* fix: add ChunkedEncodingError to list of retryable exceptions ([`7beb20f`](https://github.com/python-gitlab/python-gitlab/commit/7beb20ff7b7b85fb92fc6b647d9c1bdb7568f27c))
|
3299
|
+
|
3142
3300
|
* fix(cli): add missing filters for project commit list ([`149d244`](https://github.com/python-gitlab/python-gitlab/commit/149d2446fcc79b31d3acde6e6d51adaf37cbb5d3))
|
3143
3301
|
|
3144
3302
|
* fix: add 52x range to retry transient failures and tests ([`c3ef1b5`](https://github.com/python-gitlab/python-gitlab/commit/c3ef1b5c1eaf1348a18d753dbf7bda3c129e3262))
|
@@ -3277,6 +3435,10 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
|
|
3277
3435
|
|
3278
3436
|
* chore(deps): update dependency mypy to v0.940 ([`dd11084`](https://github.com/python-gitlab/python-gitlab/commit/dd11084dd281e270a480b338aba88b27b991e58e))
|
3279
3437
|
|
3438
|
+
* chore(deps): update black to v22 ([`3f84f1b`](https://github.com/python-gitlab/python-gitlab/commit/3f84f1bb805691b645fac2d1a41901abefccb17e))
|
3439
|
+
|
3440
|
+
* chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v8 ([`5440780`](https://github.com/python-gitlab/python-gitlab/commit/544078068bc9d7a837e75435e468e4749f7375ac))
|
3441
|
+
|
3280
3442
|
* chore(deps): update dependency types-setuptools to v57.4.10 ([`b37fc41`](https://github.com/python-gitlab/python-gitlab/commit/b37fc4153a00265725ca655bc4482714d6b02809))
|
3281
3443
|
|
3282
3444
|
* chore(deps): update dependency pytest to v7 ([`ae8d70d`](https://github.com/python-gitlab/python-gitlab/commit/ae8d70de2ad3ceb450a33b33e189bb0a3f0ff563))
|
@@ -3287,10 +3449,6 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
|
|
3287
3449
|
|
3288
3450
|
* chore(deps): update actions/setup-python action to v3 ([`7f845f7`](https://github.com/python-gitlab/python-gitlab/commit/7f845f7eade3c0cdceec6bfe7b3d087a8586edc5))
|
3289
3451
|
|
3290
|
-
* chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v8 ([`5440780`](https://github.com/python-gitlab/python-gitlab/commit/544078068bc9d7a837e75435e468e4749f7375ac))
|
3291
|
-
|
3292
|
-
* chore(deps): update black to v22 ([`3f84f1b`](https://github.com/python-gitlab/python-gitlab/commit/3f84f1bb805691b645fac2d1a41901abefccb17e))
|
3293
|
-
|
3294
3452
|
* chore(deps): update dependency sphinx to v4.4.0 ([`425d161`](https://github.com/python-gitlab/python-gitlab/commit/425d1610ca19be775d9fdd857e61d8b4a4ae4db3))
|
3295
3453
|
|
3296
3454
|
* chore(deps): update actions/checkout action to v3 ([`7333cbb`](https://github.com/python-gitlab/python-gitlab/commit/7333cbb65385145a14144119772a1854b41ea9d8))
|
@@ -3305,16 +3463,28 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
|
|
3305
3463
|
|
3306
3464
|
### Documentation
|
3307
3465
|
|
3466
|
+
* docs(chore): include docs .js files in sdist ([`3010b40`](https://github.com/python-gitlab/python-gitlab/commit/3010b407bc9baabc6cef071507e8fa47c0f1624d))
|
3467
|
+
|
3308
3468
|
* docs: fix typo and incorrect style ([`2828b10`](https://github.com/python-gitlab/python-gitlab/commit/2828b10505611194bebda59a0e9eb41faf24b77b))
|
3309
3469
|
|
3310
3470
|
* docs: add pipeline test report summary support ([`d78afb3`](https://github.com/python-gitlab/python-gitlab/commit/d78afb36e26f41d727dee7b0952d53166e0df850))
|
3311
3471
|
|
3312
|
-
* docs(chore): include docs .js files in sdist ([`3010b40`](https://github.com/python-gitlab/python-gitlab/commit/3010b407bc9baabc6cef071507e8fa47c0f1624d))
|
3313
|
-
|
3314
3472
|
### Feature
|
3315
3473
|
|
3316
3474
|
* feat(object): add pipeline test report summary support ([`a97e0cf`](https://github.com/python-gitlab/python-gitlab/commit/a97e0cf81b5394b3a2b73d927b4efe675bc85208))
|
3317
3475
|
|
3476
|
+
### Fix
|
3477
|
+
|
3478
|
+
* fix: support RateLimit-Reset header
|
3479
|
+
|
3480
|
+
Some endpoints are not returning the `Retry-After` header when
|
3481
|
+
rate-limiting occurrs. In those cases use the `RateLimit-Reset` [1]
|
3482
|
+
header, if available.
|
3483
|
+
|
3484
|
+
Closes: #1889
|
3485
|
+
|
3486
|
+
[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))
|
3487
|
+
|
3318
3488
|
### Style
|
3319
3489
|
|
3320
3490
|
* style: reformat for black v22 ([`93d4403`](https://github.com/python-gitlab/python-gitlab/commit/93d4403f0e46ed354cbcb133821d00642429532f))
|
@@ -3426,22 +3596,12 @@ Co-authored-by: Wadim Klincov <wadim.klincov@siemens.com> ([`7a13b9b`](htt
|
|
3426
3596
|
|
3427
3597
|
### Fix
|
3428
3598
|
|
3429
|
-
* fix:
|
3599
|
+
* fix(services): use slug for id_attr instead of custom methods ([`e30f39d`](https://github.com/python-gitlab/python-gitlab/commit/e30f39dff5726266222b0f56c94f4ccfe38ba527))
|
3430
3600
|
|
3431
|
-
|
3432
|
-
rate-limiting occurrs. In those cases use the `RateLimit-Reset` [1]
|
3433
|
-
header, if available.
|
3601
|
+
* fix: remove custom `delete` method for labels
|
3434
3602
|
|
3435
|
-
|
3436
|
-
|
3437
|
-
[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))
|
3438
|
-
|
3439
|
-
* fix(services): use slug for id_attr instead of custom methods ([`e30f39d`](https://github.com/python-gitlab/python-gitlab/commit/e30f39dff5726266222b0f56c94f4ccfe38ba527))
|
3440
|
-
|
3441
|
-
* fix: remove custom `delete` method for labels
|
3442
|
-
|
3443
|
-
The usage of deleting was incorrect according to the current API.
|
3444
|
-
Remove custom `delete()` method as not needed.
|
3603
|
+
The usage of deleting was incorrect according to the current API.
|
3604
|
+
Remove custom `delete()` method as not needed.
|
3445
3605
|
|
3446
3606
|
Add tests to show it works with labels needing to be encoded.
|
3447
3607
|
|
@@ -3703,22 +3863,22 @@ Add logging to `tests/functional/conftest.py` to have a better
|
|
3703
3863
|
understanding of what is happening during a test run which is useful
|
3704
3864
|
when trying to troubleshoot issues in the CI. ([`a1ac9ae`](https://github.com/python-gitlab/python-gitlab/commit/a1ac9ae63828ca2012289817410d420da066d8df))
|
3705
3865
|
|
3706
|
-
* chore(docs): use admonitions consistently ([`55c67d1`](https://github.com/python-gitlab/python-gitlab/commit/55c67d1fdb81dcfdf8f398b3184fc59256af513d))
|
3707
|
-
|
3708
3866
|
* chore: fix functional test failure if config present
|
3709
3867
|
|
3710
3868
|
Previously c8256a5933d745f70c7eea0a7d6230b51bac0fbc was done to fix
|
3711
3869
|
this but it missed two other failures. ([`c9ed3dd`](https://github.com/python-gitlab/python-gitlab/commit/c9ed3ddc1253c828dc877dcd55000d818c297ee7))
|
3712
3870
|
|
3713
|
-
* chore:
|
3714
|
-
|
3715
|
-
There was a missing comma which meant the strings were concatenated
|
3716
|
-
instead of being two separate strings. ([`7c59fac`](https://github.com/python-gitlab/python-gitlab/commit/7c59fac12fe69a1080cc227512e620ac5ae40b13))
|
3871
|
+
* chore(docs): use admonitions consistently ([`55c67d1`](https://github.com/python-gitlab/python-gitlab/commit/55c67d1fdb81dcfdf8f398b3184fc59256af513d))
|
3717
3872
|
|
3718
3873
|
* chore(dist): add docs *.md files to sdist
|
3719
3874
|
|
3720
3875
|
build_sphinx to fail due to setup.cfg warning-is-error ([`d9457d8`](https://github.com/python-gitlab/python-gitlab/commit/d9457d860ae7293ca218ab25e9501b0f796caa57))
|
3721
3876
|
|
3877
|
+
* chore: fix missing comma
|
3878
|
+
|
3879
|
+
There was a missing comma which meant the strings were concatenated
|
3880
|
+
instead of being two separate strings. ([`7c59fac`](https://github.com/python-gitlab/python-gitlab/commit/7c59fac12fe69a1080cc227512e620ac5ae40b13))
|
3881
|
+
|
3722
3882
|
* chore: add a stale workflow
|
3723
3883
|
|
3724
3884
|
Use the stale action to close issues and pull-requests with no
|
@@ -3734,6 +3894,13 @@ https://github.com/actions/stale
|
|
3734
3894
|
|
3735
3895
|
Closes: #1649 ([`2c036a9`](https://github.com/python-gitlab/python-gitlab/commit/2c036a992c9d7fdf6ccf0d3132d9b215c6d197f5))
|
3736
3896
|
|
3897
|
+
* chore: add functional test of mergerequest.get()
|
3898
|
+
|
3899
|
+
Add a functional test of test mergerequest.get() and
|
3900
|
+
mergerequest.get(..., lazy=True)
|
3901
|
+
|
3902
|
+
Closes: #1425 ([`a92b55b`](https://github.com/python-gitlab/python-gitlab/commit/a92b55b81eb3586e4144f9332796c94747bf9cfe))
|
3903
|
+
|
3737
3904
|
* chore: add temporary banner for v3 ([`a349793`](https://github.com/python-gitlab/python-gitlab/commit/a349793307e3a975bb51f864b48e5e9825f70182))
|
3738
3905
|
|
3739
3906
|
### Ci
|
@@ -3770,8 +3937,6 @@ See https://docs.gitlab.com/ee/api/group_access_tokens.html ([`c01b7c4`](https:/
|
|
3770
3937
|
|
3771
3938
|
### Fix
|
3772
3939
|
|
3773
|
-
* fix(cli): add missing list filters for environments ([`6f64d40`](https://github.com/python-gitlab/python-gitlab/commit/6f64d4098ed4a890838c6cf43d7a679e6be4ac6c))
|
3774
|
-
|
3775
3940
|
* fix: use url-encoded ID in all paths
|
3776
3941
|
|
3777
3942
|
Make sure all usage of the ID in the URL path is encoded. Normally it
|
@@ -3811,6 +3976,8 @@ Closes: #848
|
|
3811
3976
|
[1] https://docs.gitlab.com/ee/api/members.html#list-all-members-of-a-group-or-project-including-inherited-and-invited-members
|
3812
3977
|
[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))
|
3813
3978
|
|
3979
|
+
* fix(cli): add missing list filters for environments ([`6f64d40`](https://github.com/python-gitlab/python-gitlab/commit/6f64d4098ed4a890838c6cf43d7a679e6be4ac6c))
|
3980
|
+
|
3814
3981
|
* fix(api): services: add missing `lazy` parameter
|
3815
3982
|
|
3816
3983
|
Commit 8da0b758c589f608a6ae4eeb74b3f306609ba36d added the `lazy`
|
@@ -4104,13 +4271,6 @@ Closes: #1477 ([`d56a434`](https://github.com/python-gitlab/python-gitlab/commit
|
|
4104
4271
|
|
4105
4272
|
* chore: fix typo in MR documentation ([`2254222`](https://github.com/python-gitlab/python-gitlab/commit/2254222094d218b31a6151049c7a43e19c593a97))
|
4106
4273
|
|
4107
|
-
* chore: add functional test of mergerequest.get()
|
4108
|
-
|
4109
|
-
Add a functional test of test mergerequest.get() and
|
4110
|
-
mergerequest.get(..., lazy=True)
|
4111
|
-
|
4112
|
-
Closes: #1425 ([`a92b55b`](https://github.com/python-gitlab/python-gitlab/commit/a92b55b81eb3586e4144f9332796c94747bf9cfe))
|
4113
|
-
|
4114
4274
|
* chore(deps): update dependency argcomplete to v2 ([`c6d7e9a`](https://github.com/python-gitlab/python-gitlab/commit/c6d7e9aaddda2f39262b695bb98ea4d90575fcce))
|
4115
4275
|
|
4116
4276
|
* chore(deps): update dependency requests to v2.27.0 ([`f8c3d00`](https://github.com/python-gitlab/python-gitlab/commit/f8c3d009db3aca004bbd64894a795ee01378cd26))
|
@@ -4160,13 +4320,6 @@ When running with docker-compose on Ubuntu 20.04 I got the error:
|
|
4160
4320
|
Changing the version in the docker-compose.yml file fro '3' to '3.5'
|
4161
4321
|
resolved the issue. ([`79321aa`](https://github.com/python-gitlab/python-gitlab/commit/79321aa0e33f0f4bd2ebcdad47769a1a6e81cba8))
|
4162
4322
|
|
4163
|
-
* chore: add and document optional parameters for get MR
|
4164
|
-
|
4165
|
-
Add and document (some of the) optional parameters that can be done
|
4166
|
-
for a `project.merge_requests.get()`
|
4167
|
-
|
4168
|
-
Closes #1775 ([`bfa3dbe`](https://github.com/python-gitlab/python-gitlab/commit/bfa3dbe516cfa8824b720ba4c52dd05054a855d7))
|
4169
|
-
|
4170
4323
|
* chore: generate artifacts for the docs build in the CI
|
4171
4324
|
|
4172
4325
|
When building the docs store the created documentation as an artifact
|
@@ -4180,11 +4333,14 @@ reviewing changes to the documentation.
|
|
4180
4333
|
See https://github.com/actions/upload-artifact for more information on
|
4181
4334
|
how this works. ([`85b43ae`](https://github.com/python-gitlab/python-gitlab/commit/85b43ae4a96b72e2f29e36a0aca5321ed78f28d2))
|
4182
4335
|
|
4183
|
-
* chore
|
4336
|
+
* chore: add and document optional parameters for get MR
|
4184
4337
|
|
4185
|
-
|
4338
|
+
Add and document (some of the) optional parameters that can be done
|
4339
|
+
for a `project.merge_requests.get()`
|
4186
4340
|
|
4187
|
-
|
4341
|
+
Closes #1775 ([`bfa3dbe`](https://github.com/python-gitlab/python-gitlab/commit/bfa3dbe516cfa8824b720ba4c52dd05054a855d7))
|
4342
|
+
|
4343
|
+
* chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v6 ([`fb9110b`](https://github.com/python-gitlab/python-gitlab/commit/fb9110b1849cea8fa5eddf56f1dbfc1c75f10ad9))
|
4188
4344
|
|
4189
4345
|
* chore: remove '# type: ignore' for new mypy version
|
4190
4346
|
|
@@ -4194,7 +4350,11 @@ mypy 0.920 now understands the type of
|
|
4194
4350
|
|
4195
4351
|
* chore(deps): update dependency mypy to v0.920 ([`a519b2f`](https://github.com/python-gitlab/python-gitlab/commit/a519b2ffe9c8a4bb42d6add5117caecc4bf6ec66))
|
4196
4352
|
|
4197
|
-
* chore(deps): update pre-commit hook
|
4353
|
+
* chore(deps): update pre-commit hook pycqa/flake8 to v4 ([`98a5592`](https://github.com/python-gitlab/python-gitlab/commit/98a5592ae7246bf927beb3300211007c0fadba2f))
|
4354
|
+
|
4355
|
+
* chore(deps): update pre-commit hook psf/black to v21 ([`b86e819`](https://github.com/python-gitlab/python-gitlab/commit/b86e819e6395a84755aaf42334b17567a1bed5fd))
|
4356
|
+
|
4357
|
+
* chore(deps): update pre-commit hook pycqa/isort to v5.10.1 ([`8ac4f4a`](https://github.com/python-gitlab/python-gitlab/commit/8ac4f4a2ba901de1ad809e4fc2fe787e37703a50))
|
4198
4358
|
|
4199
4359
|
* chore(ci): enable renovate for pre-commit ([`1ac4329`](https://github.com/python-gitlab/python-gitlab/commit/1ac432900d0f87bb83c77aa62757f8f819296e3e))
|
4200
4360
|
|
@@ -4202,14 +4362,14 @@ mypy 0.920 now understands the type of
|
|
4202
4362
|
|
4203
4363
|
Closes #1764 ([`c80b3b7`](https://github.com/python-gitlab/python-gitlab/commit/c80b3b75aff53ae228ec05ddf1c1e61d91762846))
|
4204
4364
|
|
4205
|
-
* chore(deps): update dependency sphinx to v4.3.2 ([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
|
4206
|
-
|
4207
4365
|
* chore: add .env as a file that search tools should not ignore
|
4208
4366
|
|
4209
4367
|
The `.env` file was not set as a file that should not be ignored by
|
4210
4368
|
search tools. We want to have the search tools search any `.env`
|
4211
4369
|
files. ([`c9318a9`](https://github.com/python-gitlab/python-gitlab/commit/c9318a9f73c532bee7ba81a41de1fb521ab25ced))
|
4212
4370
|
|
4371
|
+
* chore(deps): update dependency sphinx to v4.3.2 ([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
|
4372
|
+
|
4213
4373
|
* chore(deps): update dependency types-requests to v2.26.2 ([`ac7e329`](https://github.com/python-gitlab/python-gitlab/commit/ac7e32989a1e7b217b448f57bf2943ff56531983))
|
4214
4374
|
|
4215
4375
|
* chore: add Python 3.11 testing
|
@@ -4240,6 +4400,11 @@ ensure that the get methods are defined with the correct return type. ([`d27c50a
|
|
4240
4400
|
If new new push is done to a pull-request, then cancel any already
|
4241
4401
|
running github workflow jobs in order to conserve resources. ([`fd81569`](https://github.com/python-gitlab/python-gitlab/commit/fd8156991556706f776c508c373224b54ef4e14f))
|
4242
4402
|
|
4403
|
+
* chore: add running unit tests on windows/macos
|
4404
|
+
|
4405
|
+
Add running the unit tests on windows-latest and macos-latest with
|
4406
|
+
Python 3.10. ([`ad5d60c`](https://github.com/python-gitlab/python-gitlab/commit/ad5d60c305857a8e8c06ba4f6db788bf918bb63f))
|
4407
|
+
|
4243
4408
|
* chore: fix pylint error "expression-not-assigned"
|
4244
4409
|
|
4245
4410
|
Fix pylint error "expression-not-assigned" and remove check from the
|
@@ -4248,11 +4413,6 @@ disabled list.
|
|
4248
4413
|
And I personally think it is much more readable now and is less lines
|
4249
4414
|
of code. ([`a90eb23`](https://github.com/python-gitlab/python-gitlab/commit/a90eb23cb4903ba25d382c37ce1c0839642ba8fd))
|
4250
4415
|
|
4251
|
-
* chore: add running unit tests on windows/macos
|
4252
|
-
|
4253
|
-
Add running the unit tests on windows-latest and macos-latest with
|
4254
|
-
Python 3.10. ([`ad5d60c`](https://github.com/python-gitlab/python-gitlab/commit/ad5d60c305857a8e8c06ba4f6db788bf918bb63f))
|
4255
|
-
|
4256
4416
|
* chore: set pre-commit mypy args to empty list
|
4257
4417
|
|
4258
4418
|
https://github.com/pre-commit/mirrors-mypy/blob/master/.pre-commit-hooks.yaml
|
@@ -4282,10 +4442,11 @@ changes to the code. ([`a86d049`](https://github.com/python-gitlab/python-gitlab
|
|
4282
4442
|
|
4283
4443
|
* chore(deps): update dependency black to v21.12b0 ([`ab841b8`](https://github.com/python-gitlab/python-gitlab/commit/ab841b8c63183ca20b866818ab2f930a5643ba5f))
|
4284
4444
|
|
4285
|
-
* chore:
|
4445
|
+
* chore(docs): link to main, not master ([`af0cb4d`](https://github.com/python-gitlab/python-gitlab/commit/af0cb4d18b8bfbc0624ea2771d73544dc1b24b54))
|
4286
4446
|
|
4287
|
-
|
4288
|
-
|
4447
|
+
* chore(docs): use builtin autodoc hints ([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
|
4448
|
+
|
4449
|
+
* chore(docs): load autodoc-typehints module ([`bd366ab`](https://github.com/python-gitlab/python-gitlab/commit/bd366ab9e4b552fb29f7a41564cc180a659bba2f))
|
4289
4450
|
|
4290
4451
|
* chore: attempt to be more informative for missing attributes
|
4291
4452
|
|
@@ -4303,11 +4464,10 @@ Update the FAQ in the docs to add a section discussing the issue.
|
|
4303
4464
|
|
4304
4465
|
Closes #1138 ([`1839c9e`](https://github.com/python-gitlab/python-gitlab/commit/1839c9e7989163a5cc9a201241942b7faca6e214))
|
4305
4466
|
|
4306
|
-
* chore
|
4307
|
-
|
4308
|
-
* chore(docs): use builtin autodoc hints ([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
|
4467
|
+
* chore: use constants from gitlab.const module
|
4309
4468
|
|
4310
|
-
|
4469
|
+
Have code use constants from the gitlab.const module instead of from
|
4470
|
+
the top-level gitlab module. ([`6b8067e`](https://github.com/python-gitlab/python-gitlab/commit/6b8067e668b6a37a19e07d84e9a0d2d2a99b4d31))
|
4311
4471
|
|
4312
4472
|
* chore(tests): apply review suggestions ([`381c748`](https://github.com/python-gitlab/python-gitlab/commit/381c748415396e0fe54bb1f41a3303bab89aa065))
|
4313
4473
|
|
@@ -4347,25 +4507,6 @@ so remove installation of `types-toml`.
|
|
4347
4507
|
To determine the test count the following command was run:
|
4348
4508
|
$ tox -e py39 -- -k test_ensure_type_hints ([`a2f59f4`](https://github.com/python-gitlab/python-gitlab/commit/a2f59f4e3146b8871a9a1d66ee84295b44321ecb))
|
4349
4509
|
|
4350
|
-
* chore(deps): update dependency types-setuptools to v57.4.3 ([`ec2c68b`](https://github.com/python-gitlab/python-gitlab/commit/ec2c68b0b41ac42a2bca61262a917a969cbcbd09))
|
4351
|
-
|
4352
|
-
* chore(deps): update dependency black to v21 ([`5bca87c`](https://github.com/python-gitlab/python-gitlab/commit/5bca87c1e3499eab9b9a694c1f5d0d474ffaca39))
|
4353
|
-
|
4354
|
-
* chore: have renovate upgrade black version (#1700)
|
4355
|
-
|
4356
|
-
renovate is not upgrading the `black` package. There is an open
|
4357
|
-
issue[1] about this.
|
4358
|
-
|
4359
|
-
Also change .commitlintrc.json to allow 200 character footer lines in
|
4360
|
-
the commit message. Otherwise would be forced to split the URL across
|
4361
|
-
multiple lines making it un-clickable :(
|
4362
|
-
|
4363
|
-
Use suggested work-arounds from:
|
4364
|
-
https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
|
4365
|
-
https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
|
4366
|
-
|
4367
|
-
[1] https://github.com/renovatebot/renovate/issues/7167 ([`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
|
4368
|
-
|
4369
4510
|
* chore: add type-hints to gitlab/v4/objects/files.py ([`0c22bd9`](https://github.com/python-gitlab/python-gitlab/commit/0c22bd921bc74f48fddd0ff7d5e7525086264d54))
|
4370
4511
|
|
4371
4512
|
* chore: add type-hints to gitlab/v4/objects/labels.py ([`d04e557`](https://github.com/python-gitlab/python-gitlab/commit/d04e557fb09655a0433363843737e19d8e11c936))
|
@@ -4400,6 +4541,27 @@ breaks things.
|
|
4400
4541
|
Now check in our auto-manager creation if our attribute is called
|
4401
4542
|
'manager'. If so we ignore it. ([`9a451a8`](https://github.com/python-gitlab/python-gitlab/commit/9a451a892d37e0857af5c82c31a96d68ac161738))
|
4402
4543
|
|
4544
|
+
* chore(deps): update dependency types-setuptools to v57.4.3 ([`ec2c68b`](https://github.com/python-gitlab/python-gitlab/commit/ec2c68b0b41ac42a2bca61262a917a969cbcbd09))
|
4545
|
+
|
4546
|
+
* chore(deps): update dependency black to v21 ([`5bca87c`](https://github.com/python-gitlab/python-gitlab/commit/5bca87c1e3499eab9b9a694c1f5d0d474ffaca39))
|
4547
|
+
|
4548
|
+
* chore: enable mypy for tests/meta/* ([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
|
4549
|
+
|
4550
|
+
* chore: have renovate upgrade black version (#1700)
|
4551
|
+
|
4552
|
+
renovate is not upgrading the `black` package. There is an open
|
4553
|
+
issue[1] about this.
|
4554
|
+
|
4555
|
+
Also change .commitlintrc.json to allow 200 character footer lines in
|
4556
|
+
the commit message. Otherwise would be forced to split the URL across
|
4557
|
+
multiple lines making it un-clickable :(
|
4558
|
+
|
4559
|
+
Use suggested work-arounds from:
|
4560
|
+
https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
|
4561
|
+
https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
|
4562
|
+
|
4563
|
+
[1] https://github.com/renovatebot/renovate/issues/7167 ([`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
|
4564
|
+
|
4403
4565
|
* chore: correct test_groups.py test
|
4404
4566
|
|
4405
4567
|
The test was checking twice if the same group3 was not in the returned
|
@@ -4411,8 +4573,6 @@ list. ([`9c878a4`](https://github.com/python-gitlab/python-gitlab/commit/9c878a4
|
|
4411
4573
|
|
4412
4574
|
* chore: add type-hints to gitlab/v4/objects/merge_request_approvals.py ([`cf3a99a`](https://github.com/python-gitlab/python-gitlab/commit/cf3a99a0c4cf3dc51e946bf29dc44c21b3be9dac))
|
4413
4575
|
|
4414
|
-
* chore: enable mypy for tests/meta/* ([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
|
4415
|
-
|
4416
4576
|
* chore: check setup.py with mypy
|
4417
4577
|
|
4418
4578
|
Prior commit 06184daafd5010ba40bb39a0768540b7e98bd171 fixed the
|
@@ -4512,6 +4672,10 @@ GetMixin. ([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b7
|
|
4512
4672
|
|
4513
4673
|
* chore(objects): remove non-existing trigger ownership method ([`8dc7f40`](https://github.com/python-gitlab/python-gitlab/commit/8dc7f40044ce8c478769f25a87c5ceb1aa76b595))
|
4514
4674
|
|
4675
|
+
* chore: add type-hints to gitlab/v4/objects/users.py
|
4676
|
+
|
4677
|
+
Adding type-hints to gitlab/v4/objects/users.py ([`88988e3`](https://github.com/python-gitlab/python-gitlab/commit/88988e3059ebadd3d1752db60c2d15b7e60e7c46))
|
4678
|
+
|
4515
4679
|
* chore(deps): update dependency types-requests to v2.25.9 ([`e3912ca`](https://github.com/python-gitlab/python-gitlab/commit/e3912ca69c2213c01cd72728fd669724926fd57a))
|
4516
4680
|
|
4517
4681
|
* chore: fix type-check issue shown by new requests-types
|
@@ -4519,10 +4683,10 @@ GetMixin. ([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b7
|
|
4519
4683
|
types-requests==2.25.9 changed a type-hint. Update code to handle this
|
4520
4684
|
change. ([`0ee9aa4`](https://github.com/python-gitlab/python-gitlab/commit/0ee9aa4117b1e0620ba3cade10ccb94944754071))
|
4521
4685
|
|
4522
|
-
* chore(deps): update dependency sphinx to v4 ([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
|
4523
|
-
|
4524
4686
|
* chore(deps): update python docker tag to v3.10 ([`b3d6d91`](https://github.com/python-gitlab/python-gitlab/commit/b3d6d91fed4e5b8424e1af9cadb2af5b6cd8162f))
|
4525
4687
|
|
4688
|
+
* chore(deps): update dependency sphinx to v4 ([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
|
4689
|
+
|
4526
4690
|
* chore: clean up install docs ([`a5d8b7f`](https://github.com/python-gitlab/python-gitlab/commit/a5d8b7f2a9cf019c82bef1a166d2dc24f93e1992))
|
4527
4691
|
|
4528
4692
|
* chore: attempt to fix flaky functional test
|
@@ -4543,10 +4707,6 @@ Any type-annotation that annotates it to be of type *Manager (with the
|
|
4543
4707
|
exception of RESTManager) will cause the manager to be created on the
|
4544
4708
|
object. ([`d8de4dc`](https://github.com/python-gitlab/python-gitlab/commit/d8de4dc373dc608be6cf6ba14a2acc7efd3fa7a7))
|
4545
4709
|
|
4546
|
-
* chore: add type-hints to gitlab/v4/objects/users.py
|
4547
|
-
|
4548
|
-
Adding type-hints to gitlab/v4/objects/users.py ([`88988e3`](https://github.com/python-gitlab/python-gitlab/commit/88988e3059ebadd3d1752db60c2d15b7e60e7c46))
|
4549
|
-
|
4550
4710
|
* chore: improve type-hinting for managers
|
4551
4711
|
|
4552
4712
|
The 'managers' are dynamically created. This unfortunately means that
|
@@ -4585,12 +4745,12 @@ Rename:
|
|
4585
4745
|
|
4586
4746
|
* docs: use annotations for return types ([`79e785e`](https://github.com/python-gitlab/python-gitlab/commit/79e785e765f4219fe6001ef7044235b82c5e7754))
|
4587
4747
|
|
4748
|
+
* docs: only use type annotations for documentation ([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
|
4749
|
+
|
4588
4750
|
* docs: update docs to use gitlab.const for constants
|
4589
4751
|
|
4590
4752
|
Update the docs to use gitlab.const to access constants. ([`b3b0b5f`](https://github.com/python-gitlab/python-gitlab/commit/b3b0b5f1da5b9da9bf44eac33856ed6eadf37dd6))
|
4591
4753
|
|
4592
|
-
* docs: only use type annotations for documentation ([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
|
4593
|
-
|
4594
4754
|
* docs: add links to the GitLab API docs
|
4595
4755
|
|
4596
4756
|
Add links to the GitLab API docs for merge_requests.py as it contains
|
@@ -4659,17 +4819,21 @@ Closes #1744 ([`a246ce8`](https://github.com/python-gitlab/python-gitlab/commit/
|
|
4659
4819
|
|
4660
4820
|
* feat: add delete on package_file object ([`124667b`](https://github.com/python-gitlab/python-gitlab/commit/124667bf16b1843ae52e65a3cc9b8d9235ff467e))
|
4661
4821
|
|
4822
|
+
* feat(api): add support for epic notes
|
4823
|
+
|
4824
|
+
Added support for notes on group epics
|
4825
|
+
|
4826
|
+
Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`7f4edb5`](https://github.com/python-gitlab/python-gitlab/commit/7f4edb53e9413f401c859701d8c3bac4a40706af))
|
4827
|
+
|
4662
4828
|
* feat: add support for `projects.groups.list()`
|
4663
4829
|
|
4664
4830
|
Add support for `projects.groups.list()` endpoint.
|
4665
4831
|
|
4666
4832
|
Closes #1717 ([`68ff595`](https://github.com/python-gitlab/python-gitlab/commit/68ff595967a5745b369a93d9d18fef48b65ebedb))
|
4667
4833
|
|
4668
|
-
* feat(api): add
|
4669
|
-
|
4670
|
-
Added support for notes on group epics
|
4834
|
+
* feat(api): add merge trains
|
4671
4835
|
|
4672
|
-
|
4836
|
+
Add support for merge trains ([`fd73a73`](https://github.com/python-gitlab/python-gitlab/commit/fd73a738b429be0a2642d5b777d5e56a4c928787))
|
4673
4837
|
|
4674
4838
|
* feat(api): add project milestone promotion
|
4675
4839
|
|
@@ -4677,10 +4841,6 @@ Adds promotion to Project Milestones
|
|
4677
4841
|
|
4678
4842
|
Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`f068520`](https://github.com/python-gitlab/python-gitlab/commit/f0685209f88d1199873c1f27d27f478706908fd3))
|
4679
4843
|
|
4680
|
-
* feat(api): add merge trains
|
4681
|
-
|
4682
|
-
Add support for merge trains ([`fd73a73`](https://github.com/python-gitlab/python-gitlab/commit/fd73a738b429be0a2642d5b777d5e56a4c928787))
|
4683
|
-
|
4684
4844
|
* feat(api): add merge request approval state
|
4685
4845
|
|
4686
4846
|
Add support for merge request approval state ([`f41b093`](https://github.com/python-gitlab/python-gitlab/commit/f41b0937aec5f4a5efba44155cc2db77c7124e5e))
|
@@ -5152,10 +5312,10 @@ feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](ht
|
|
5152
5312
|
|
5153
5313
|
* chore: skip EE test case in functional tests ([`953f207`](https://github.com/python-gitlab/python-gitlab/commit/953f207466c53c28a877f2a88da9160acef40643))
|
5154
5314
|
|
5155
|
-
* chore(deps): update dependency mypy to v0.910 ([`02a56f3`](https://github.com/python-gitlab/python-gitlab/commit/02a56f397880b3939b8e737483ac6f95f809ac9c))
|
5156
|
-
|
5157
5315
|
* chore(deps): update dependency types-requests to v2 ([`a81a926`](https://github.com/python-gitlab/python-gitlab/commit/a81a926a0979e3272abfb2dc40d2f130d3a0ba5a))
|
5158
5316
|
|
5317
|
+
* chore(deps): update dependency mypy to v0.910 ([`02a56f3`](https://github.com/python-gitlab/python-gitlab/commit/02a56f397880b3939b8e737483ac6f95f809ac9c))
|
5318
|
+
|
5159
5319
|
* chore(deps): update precommit hook pycqa/isort to v5.9.1 ([`c57ffe3`](https://github.com/python-gitlab/python-gitlab/commit/c57ffe3958c1475c8c79bb86fc4b101d82350d75))
|
5160
5320
|
|
5161
5321
|
* chore(deps): update dependency isort to v5.9.1 ([`0479dba`](https://github.com/python-gitlab/python-gitlab/commit/0479dba8a26d2588d9616dbeed351b0256f4bf87))
|
@@ -5170,9 +5330,14 @@ feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](ht
|
|
5170
5330
|
|
5171
5331
|
* chore(deps): update dependency types-pyyaml to v0.1.8 ([`e566767`](https://github.com/python-gitlab/python-gitlab/commit/e56676730d3407efdf4255b3ca7ee13b7c36eb53))
|
5172
5332
|
|
5333
|
+
* chore(deps): update dependency types-requests to v0.1.11 ([`6ba629c`](https://github.com/python-gitlab/python-gitlab/commit/6ba629c71a4cf8ced7060580a6e6643738bc4186))
|
5334
|
+
|
5173
5335
|
* chore(deps): update dependency mypy to v0.902 ([`19c9736`](https://github.com/python-gitlab/python-gitlab/commit/19c9736de06d032569020697f15ea9d3e2b66120))
|
5174
5336
|
|
5175
|
-
* chore
|
5337
|
+
* chore: add new required type packages for mypy
|
5338
|
+
|
5339
|
+
New version of mypy flagged errors for missing types. Install the
|
5340
|
+
recommended type-* packages that resolve the issues. ([`a7371e1`](https://github.com/python-gitlab/python-gitlab/commit/a7371e19520325a725813e328004daecf9259dd2))
|
5176
5341
|
|
5177
5342
|
* chore: add type-hints to gitlab/v4/objects/projects.py
|
5178
5343
|
|
@@ -5188,14 +5353,16 @@ Adding type-hints to gitlab/v4/objects/projects.py ([`872dd6d`](https://github.c
|
|
5188
5353
|
|
5189
5354
|
### Feature
|
5190
5355
|
|
5356
|
+
* feat(api): add group hooks ([`4a7e9b8`](https://github.com/python-gitlab/python-gitlab/commit/4a7e9b86aa348b72925bce3af1e5d988b8ce3439))
|
5357
|
+
|
5191
5358
|
* feat(release): allow to update release
|
5192
5359
|
|
5193
5360
|
Release API now supports PUT. ([`b4c4787`](https://github.com/python-gitlab/python-gitlab/commit/b4c4787af54d9db6c1f9e61154be5db9d46de3dd))
|
5194
5361
|
|
5195
|
-
* feat(api): add group hooks ([`4a7e9b8`](https://github.com/python-gitlab/python-gitlab/commit/4a7e9b86aa348b72925bce3af1e5d988b8ce3439))
|
5196
|
-
|
5197
5362
|
* feat(api): remove responsibility for API inconsistencies for MR reviewers ([`3d985ee`](https://github.com/python-gitlab/python-gitlab/commit/3d985ee8cdd5d27585678f8fbb3eb549818a78eb))
|
5198
5363
|
|
5364
|
+
* feat(api): add support for creating/editing reviewers in project merge requests ([`676d1f6`](https://github.com/python-gitlab/python-gitlab/commit/676d1f6565617a28ee84eae20e945f23aaf3d86f))
|
5365
|
+
|
5199
5366
|
* feat(api): add MR pipeline manager in favor of pipelines() method ([`954357c`](https://github.com/python-gitlab/python-gitlab/commit/954357c49963ef51945c81c41fd4345002f9fb98))
|
5200
5367
|
|
5201
5368
|
### Test
|
@@ -5250,10 +5417,7 @@ chore: add new required type packages for mypy ([`5446423`](https://github.com/p
|
|
5250
5417
|
|
5251
5418
|
### Chore
|
5252
5419
|
|
5253
|
-
* chore:
|
5254
|
-
|
5255
|
-
New version of mypy flagged errors for missing types. Install the
|
5256
|
-
recommended type-* packages that resolve the issues. ([`a7371e1`](https://github.com/python-gitlab/python-gitlab/commit/a7371e19520325a725813e328004daecf9259dd2))
|
5420
|
+
* chore(ci): use admin PAT for release workflow ([`d175d41`](https://github.com/python-gitlab/python-gitlab/commit/d175d416d5d94f4806f4262e1f11cfee99fb0135))
|
5257
5421
|
|
5258
5422
|
* chore: sync create and update attributes for Projects
|
5259
5423
|
|
@@ -5270,7 +5434,11 @@ Closes: #1497 ([`0044bd2`](https://github.com/python-gitlab/python-gitlab/commit
|
|
5270
5434
|
|
5271
5435
|
* chore: add missing linters to pre-commit and pin versions ([`85bbd1a`](https://github.com/python-gitlab/python-gitlab/commit/85bbd1a5db5eff8a8cea63b2b192aae66030423d))
|
5272
5436
|
|
5273
|
-
* chore
|
5437
|
+
* chore: add type-hints to gitlab/v4/cli.py
|
5438
|
+
|
5439
|
+
* Add type-hints to gitlab/v4/cli.py
|
5440
|
+
* Add required type-hints to other files based on adding type-hints
|
5441
|
+
to gitlab/v4/cli.py ([`2673af0`](https://github.com/python-gitlab/python-gitlab/commit/2673af0c09a7c5669d8f62c3cc42f684a9693a0f))
|
5274
5442
|
|
5275
5443
|
* chore: add missing optional create parameter for approval_rules
|
5276
5444
|
|
@@ -5283,12 +5451,6 @@ https://docs.gitlab.com/ee/api/merge_request_approvals.html#create-project-level
|
|
5283
5451
|
|
5284
5452
|
Co-authored-by: John Villalovos <john@sodarock.com> ([`a11623b`](https://github.com/python-gitlab/python-gitlab/commit/a11623b1aa6998e6520f3975f0f3f2613ceee5fb))
|
5285
5453
|
|
5286
|
-
* chore: add type-hints to gitlab/v4/cli.py
|
5287
|
-
|
5288
|
-
* Add type-hints to gitlab/v4/cli.py
|
5289
|
-
* Add required type-hints to other files based on adding type-hints
|
5290
|
-
to gitlab/v4/cli.py ([`2673af0`](https://github.com/python-gitlab/python-gitlab/commit/2673af0c09a7c5669d8f62c3cc42f684a9693a0f))
|
5291
|
-
|
5292
5454
|
* chore(ci): ignore .python-version from pyenv ([`149953d`](https://github.com/python-gitlab/python-gitlab/commit/149953dc32c28fe413c9f3a0066575caeab12bc8))
|
5293
5455
|
|
5294
5456
|
* chore: apply suggestions ([`fe7d19d`](https://github.com/python-gitlab/python-gitlab/commit/fe7d19de5aeba675dcb06621cf36ab4169391158))
|
@@ -5310,13 +5472,13 @@ built-in function issubclass()
|
|
5310
5472
|
|
5311
5473
|
Switch to using issubclass() ([`81f6386`](https://github.com/python-gitlab/python-gitlab/commit/81f63866593a0486b03a4383d87ef7bc01f4e45f))
|
5312
5474
|
|
5313
|
-
* chore: correct a type-hint ([`046607c`](https://github.com/python-gitlab/python-gitlab/commit/046607cf7fd95c3d25f5af9383fdf10a5bba42c1))
|
5314
|
-
|
5315
5475
|
* chore: move 'gitlab/tests/' dir to 'tests/unit/'
|
5316
5476
|
|
5317
5477
|
Move the 'gitlab/tests/' directory to 'tests/unit/' so we have all the
|
5318
5478
|
tests located under the 'tests/' directory. ([`1ac0722`](https://github.com/python-gitlab/python-gitlab/commit/1ac0722bc086b18c070132a0eb53747bbdf2ce0a))
|
5319
5479
|
|
5480
|
+
* chore: correct a type-hint ([`046607c`](https://github.com/python-gitlab/python-gitlab/commit/046607cf7fd95c3d25f5af9383fdf10a5bba42c1))
|
5481
|
+
|
5320
5482
|
* chore: rename 'tools/functional/' to 'tests/functional/'
|
5321
5483
|
|
5322
5484
|
Rename the 'tools/functional/' directory to 'tests/functional/'
|
@@ -5373,9 +5535,18 @@ https://pycqa.github.io/isort/ ([`dda646e`](https://github.com/python-gitlab/pyt
|
|
5373
5535
|
|
5374
5536
|
* chore(deps): update dependency docker-compose to v1.29.2 ([`fc241e1`](https://github.com/python-gitlab/python-gitlab/commit/fc241e1ffa995417a969354e37d8fefc21bb4621))
|
5375
5537
|
|
5538
|
+
* chore(ci): automate releases ([`0ef497e`](https://github.com/python-gitlab/python-gitlab/commit/0ef497e458f98acee36529e8bda2b28b3310de69))
|
5539
|
+
|
5376
5540
|
* chore(ci): ignore debug and type_checking in coverage ([`885b608`](https://github.com/python-gitlab/python-gitlab/commit/885b608194a55bd60ef2a2ad180c5caa8f15f8d2))
|
5377
5541
|
|
5378
|
-
* chore
|
5542
|
+
* chore: mypy: Disallow untyped definitions
|
5543
|
+
|
5544
|
+
Be more strict and don't allow untyped definitions on the files we
|
5545
|
+
check.
|
5546
|
+
|
5547
|
+
Also this adds type-hints for two of the decorators so that now
|
5548
|
+
functions/methods decorated by them will have their types be revealed
|
5549
|
+
correctly. ([`6aef2da`](https://github.com/python-gitlab/python-gitlab/commit/6aef2dadf715e601ae9c302be0ad9958345a97f2))
|
5379
5550
|
|
5380
5551
|
* chore(docs): fix import order for readthedocs build ([`c3de1fb`](https://github.com/python-gitlab/python-gitlab/commit/c3de1fb8ec17f5f704a19df4a56a668570e6fe0a))
|
5381
5552
|
|
@@ -5393,16 +5564,15 @@ gitlab directory. ([`ab343ef`](https://github.com/python-gitlab/python-gitlab/co
|
|
5393
5564
|
|
5394
5565
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.2-ce.0 ([`434d15d`](https://github.com/python-gitlab/python-gitlab/commit/434d15d1295187d1970ebef01f4c8a44a33afa31))
|
5395
5566
|
|
5396
|
-
* chore:
|
5567
|
+
* chore: remove commented-out print ([`0357c37`](https://github.com/python-gitlab/python-gitlab/commit/0357c37fb40fb6aef175177fab98d0eadc26b667))
|
5397
5568
|
|
5398
|
-
|
5399
|
-
check.
|
5569
|
+
* chore: make Get.*Mixin._optional_get_attrs always present
|
5400
5570
|
|
5401
|
-
|
5402
|
-
|
5403
|
-
correctly. ([`6aef2da`](https://github.com/python-gitlab/python-gitlab/commit/6aef2dadf715e601ae9c302be0ad9958345a97f2))
|
5571
|
+
Always create GetMixin/GetWithoutIdMixin._optional_get_attrs attribute
|
5572
|
+
with a default value of tuple()
|
5404
5573
|
|
5405
|
-
|
5574
|
+
This way we don't need to use hasattr() and we will know the type of
|
5575
|
+
the attribute. ([`3c1a0b3`](https://github.com/python-gitlab/python-gitlab/commit/3c1a0b3ba1f529fab38829c9d355561fd36f4f5d))
|
5406
5576
|
|
5407
5577
|
### Documentation
|
5408
5578
|
|
@@ -5424,8 +5594,6 @@ feat(objects): add support for Group wikis ([`74f5e62`](https://github.com/pytho
|
|
5424
5594
|
|
5425
5595
|
* feat(objects): add support for generic packages API ([`79d88bd`](https://github.com/python-gitlab/python-gitlab/commit/79d88bde9e5e6c33029e4a9f26c97404e6a7a874))
|
5426
5596
|
|
5427
|
-
* feat(api): add support for creating/editing reviewers in project merge requests ([`676d1f6`](https://github.com/python-gitlab/python-gitlab/commit/676d1f6565617a28ee84eae20e945f23aaf3d86f))
|
5428
|
-
|
5429
5597
|
* feat(api): add deployment mergerequests interface ([`fbbc0d4`](https://github.com/python-gitlab/python-gitlab/commit/fbbc0d400015d7366952a66e4401215adff709f0))
|
5430
5598
|
|
5431
5599
|
* feat(objects): support all issues statistics endpoints ([`f731707`](https://github.com/python-gitlab/python-gitlab/commit/f731707f076264ebea65afc814e4aca798970953))
|
@@ -5451,6 +5619,15 @@ type-hints.
|
|
5451
5619
|
|
5452
5620
|
https://www.python.org/dev/peps/pep-0561/ ([`e4421ca`](https://github.com/python-gitlab/python-gitlab/commit/e4421caafeeb0236df19fe7b9233300727e1933b))
|
5453
5621
|
|
5622
|
+
* feat: add support for lists of integers to ListAttribute
|
5623
|
+
|
5624
|
+
Previously ListAttribute only support lists of integers. Now be more
|
5625
|
+
flexible and support lists of items which can be coerced into strings,
|
5626
|
+
for example integers.
|
5627
|
+
|
5628
|
+
This will help us fix issue #1407 by using ListAttribute for the
|
5629
|
+
'iids' field. ([`115938b`](https://github.com/python-gitlab/python-gitlab/commit/115938b3e5adf9a2fb5ecbfb34d9c92bf788035e))
|
5630
|
+
|
5454
5631
|
### Fix
|
5455
5632
|
|
5456
5633
|
* fix: catch invalid type used to initialize RESTObject
|
@@ -5489,12 +5666,12 @@ Related to: #1120 ([`cb6a3c6`](https://github.com/python-gitlab/python-gitlab/co
|
|
5489
5666
|
|
5490
5667
|
* fix(cli): fix parsing CLI objects to classnames ([`4252070`](https://github.com/python-gitlab/python-gitlab/commit/42520705a97289ac895a6b110d34d6c115e45500))
|
5491
5668
|
|
5669
|
+
* fix(objects): allow lists for filters for in all objects ([`603a351`](https://github.com/python-gitlab/python-gitlab/commit/603a351c71196a7f516367fbf90519f9452f3c55))
|
5670
|
+
|
5492
5671
|
* fix(objects): return server data in cancel/retry methods ([`9fed061`](https://github.com/python-gitlab/python-gitlab/commit/9fed06116bfe5df79e6ac5be86ae61017f9a2f57))
|
5493
5672
|
|
5494
5673
|
* fix(objects): add missing group attributes ([`d20ff4f`](https://github.com/python-gitlab/python-gitlab/commit/d20ff4ff7427519c8abccf53e3213e8929905441))
|
5495
5674
|
|
5496
|
-
* fix(objects): allow lists for filters for in all objects ([`603a351`](https://github.com/python-gitlab/python-gitlab/commit/603a351c71196a7f516367fbf90519f9452f3c55))
|
5497
|
-
|
5498
5675
|
* fix: iids not working as a list in projects.issues.list()
|
5499
5676
|
|
5500
5677
|
Set the 'iids' values as type ListAttribute so it will pass the list
|
@@ -5504,6 +5681,21 @@ Add a functional test.
|
|
5504
5681
|
|
5505
5682
|
Closes: #1407 ([`45f806c`](https://github.com/python-gitlab/python-gitlab/commit/45f806c7a7354592befe58a76b7e33a6d5d0fe6e))
|
5506
5683
|
|
5684
|
+
* fix: add a check to ensure the MRO is correct
|
5685
|
+
|
5686
|
+
Add a check to ensure the MRO (Method Resolution Order) is correct for classes in
|
5687
|
+
gitlab.v4.objects when doing type-checking.
|
5688
|
+
|
5689
|
+
An example of an incorrect definition:
|
5690
|
+
class ProjectPipeline(RESTObject, RefreshMixin, ObjectDeleteMixin):
|
5691
|
+
^^^^^^^^^^ This should be at the end.
|
5692
|
+
|
5693
|
+
Correct way would be:
|
5694
|
+
class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject):
|
5695
|
+
Correctly at the end ^^^^^^^^^^
|
5696
|
+
|
5697
|
+
Also fix classes which have the issue. ([`565d548`](https://github.com/python-gitlab/python-gitlab/commit/565d5488b779de19a720d7a904c6fc14c394a4b9))
|
5698
|
+
|
5507
5699
|
### Style
|
5508
5700
|
|
5509
5701
|
* style: clean up test run config ([`dfa40c1`](https://github.com/python-gitlab/python-gitlab/commit/dfa40c1ef85992e85c1160587037e56778ab49c0))
|
@@ -5539,10 +5731,10 @@ duplicate tokens with the same value. ([`4c475ab`](https://github.com/python-git
|
|
5539
5731
|
|
5540
5732
|
* test(cli): add more real class scenarios ([`8cf5031`](https://github.com/python-gitlab/python-gitlab/commit/8cf5031a2caf2f39ce920c5f80316cc774ba7a36))
|
5541
5733
|
|
5542
|
-
* test(functional): add test for skip_groups list filter ([`a014774`](https://github.com/python-gitlab/python-gitlab/commit/a014774a6a2523b73601a1930c44ac259d03a50e))
|
5543
|
-
|
5544
5734
|
* test(functional): start tracking functional test coverage ([`f875786`](https://github.com/python-gitlab/python-gitlab/commit/f875786ce338b329421f772b181e7183f0fcb333))
|
5545
5735
|
|
5736
|
+
* test(functional): add test for skip_groups list filter ([`a014774`](https://github.com/python-gitlab/python-gitlab/commit/a014774a6a2523b73601a1930c44ac259d03a50e))
|
5737
|
+
|
5546
5738
|
### Unknown
|
5547
5739
|
|
5548
5740
|
* Merge pull request #1487 from JohnVillalovos/jlvillal/check_attrs
|
@@ -5707,17 +5899,6 @@ chore: make Get.*Mixin._optional_get_attrs always present ([`5b81d7d`](https://g
|
|
5707
5899
|
|
5708
5900
|
## v2.7.1 (2021-04-26)
|
5709
5901
|
|
5710
|
-
### Feature
|
5711
|
-
|
5712
|
-
* feat: add support for lists of integers to ListAttribute
|
5713
|
-
|
5714
|
-
Previously ListAttribute only support lists of integers. Now be more
|
5715
|
-
flexible and support lists of items which can be coerced into strings,
|
5716
|
-
for example integers.
|
5717
|
-
|
5718
|
-
This will help us fix issue #1407 by using ListAttribute for the
|
5719
|
-
'iids' field. ([`115938b`](https://github.com/python-gitlab/python-gitlab/commit/115938b3e5adf9a2fb5ecbfb34d9c92bf788035e))
|
5720
|
-
|
5721
5902
|
### Fix
|
5722
5903
|
|
5723
5904
|
* fix(files): do not url-encode file paths twice ([`8e25cec`](https://github.com/python-gitlab/python-gitlab/commit/8e25cecce3c0a19884a8d231ee1a672b80e94398))
|
@@ -5732,17 +5913,7 @@ fix(files): do not url-encode filepaths twice ([`37af229`](https://github.com/py
|
|
5732
5913
|
|
5733
5914
|
### Chore
|
5734
5915
|
|
5735
|
-
* chore
|
5736
|
-
|
5737
|
-
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))
|
5738
|
-
|
5739
|
-
* chore: make Get.*Mixin._optional_get_attrs always present
|
5740
|
-
|
5741
|
-
Always create GetMixin/GetWithoutIdMixin._optional_get_attrs attribute
|
5742
|
-
with a default value of tuple()
|
5743
|
-
|
5744
|
-
This way we don't need to use hasattr() and we will know the type of
|
5745
|
-
the attribute. ([`3c1a0b3`](https://github.com/python-gitlab/python-gitlab/commit/3c1a0b3ba1f529fab38829c9d355561fd36f4f5d))
|
5916
|
+
* chore: bump version to 2.7.0 ([`34c4052`](https://github.com/python-gitlab/python-gitlab/commit/34c4052327018279c9a75d6b849da74eccc8819b))
|
5746
5917
|
|
5747
5918
|
* chore: make ListMixin._list_filters always present
|
5748
5919
|
|
@@ -5760,17 +5931,11 @@ None.
|
|
5760
5931
|
This way we don't need to use hasattr() and we will know the type of
|
5761
5932
|
the attribute. ([`6d55120`](https://github.com/python-gitlab/python-gitlab/commit/6d551208f4bc68d091a16323ae0d267fbb6003b6))
|
5762
5933
|
|
5763
|
-
* chore:
|
5764
|
-
|
5765
|
-
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.1-ce.0 ([`3088714`](https://github.com/python-gitlab/python-gitlab/commit/308871496041232f555cf4cb055bf7f4aaa22b23))
|
5766
|
-
|
5767
|
-
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.0-ce.0 ([`711896f`](https://github.com/python-gitlab/python-gitlab/commit/711896f20ff81826c58f1f86dfb29ad860e1d52a))
|
5934
|
+
* chore(objects): remove noisy deprecation warning for audit events
|
5768
5935
|
|
5769
|
-
|
5936
|
+
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))
|
5770
5937
|
|
5771
|
-
|
5772
|
-
use. Since v3 API support has been removed there are no more users of
|
5773
|
-
this function. ([`443b934`](https://github.com/python-gitlab/python-gitlab/commit/443b93482e29fecc12fdbd2329427b37b05ba425))
|
5938
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.1-ce.0 ([`3088714`](https://github.com/python-gitlab/python-gitlab/commit/308871496041232f555cf4cb055bf7f4aaa22b23))
|
5774
5939
|
|
5775
5940
|
* chore: fix F841 errors reported by flake8
|
5776
5941
|
|
@@ -5805,10 +5970,35 @@ Fixes to resolve errors for:
|
|
5805
5970
|
https://www.flake8rules.com/rules/E742.html
|
5806
5971
|
Do not define classes named 'I', 'O', or 'l' (E742) ([`380f227`](https://github.com/python-gitlab/python-gitlab/commit/380f227a1ecffd5e22ae7aefed95af3b5d830994))
|
5807
5972
|
|
5973
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.0-ce.0 ([`711896f`](https://github.com/python-gitlab/python-gitlab/commit/711896f20ff81826c58f1f86dfb29ad860e1d52a))
|
5974
|
+
|
5975
|
+
* chore: remove unused function sanitize_parameters()
|
5976
|
+
|
5977
|
+
The function sanitize_parameters() was used when the v3 API was in
|
5978
|
+
use. Since v3 API support has been removed there are no more users of
|
5979
|
+
this function. ([`443b934`](https://github.com/python-gitlab/python-gitlab/commit/443b93482e29fecc12fdbd2329427b37b05ba425))
|
5980
|
+
|
5808
5981
|
* chore: fix typo in mr events ([`c5e6fb3`](https://github.com/python-gitlab/python-gitlab/commit/c5e6fb3bc74c509f35f973e291a7551b2b64dba5))
|
5809
5982
|
|
5810
5983
|
* chore(config): allow simple commands without external script ([`91ffb8e`](https://github.com/python-gitlab/python-gitlab/commit/91ffb8e97e213d2f14340b952630875995ecedb2))
|
5811
5984
|
|
5985
|
+
* chore: make lint happy ([`7a7c9fd`](https://github.com/python-gitlab/python-gitlab/commit/7a7c9fd932def75a2f2c517482784e445d83881a))
|
5986
|
+
|
5987
|
+
* chore: make lint happy ([`b5f43c8`](https://github.com/python-gitlab/python-gitlab/commit/b5f43c83b25271f7aff917a9ce8826d39ff94034))
|
5988
|
+
|
5989
|
+
* chore: make lint happy ([`732e49c`](https://github.com/python-gitlab/python-gitlab/commit/732e49c6547c181de8cc56e93b30dc399e87091d))
|
5990
|
+
|
5991
|
+
* chore: add test ([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
|
5992
|
+
|
5993
|
+
* chore: remove usage of getattr()
|
5994
|
+
|
5995
|
+
Remove usage of getattr(self, "_update_uses_post", False)
|
5996
|
+
|
5997
|
+
Instead add it to class and set default value to False.
|
5998
|
+
|
5999
|
+
Add a tests that shows it is set to True for the
|
6000
|
+
ProjectMergeRequestApprovalManager and ProjectApprovalManager classes. ([`2afd18a`](https://github.com/python-gitlab/python-gitlab/commit/2afd18aa28742a3267742859a88be6912a803874))
|
6001
|
+
|
5812
6002
|
* chore: have _create_attrs & _update_attrs be a namedtuple
|
5813
6003
|
|
5814
6004
|
Convert _create_attrs and _update_attrs to use a NamedTuple
|
@@ -5817,27 +6007,20 @@ use the NamedTuple. ([`aee1f49`](https://github.com/python-gitlab/python-gitlab/
|
|
5817
6007
|
|
5818
6008
|
* chore(deps): update dependency docker-compose to v1.29.1 ([`a89ec43`](https://github.com/python-gitlab/python-gitlab/commit/a89ec43ee7a60aacd1ac16f0f1f51c4abeaaefef))
|
5819
6009
|
|
5820
|
-
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.3-ce.0 ([`eabe091`](https://github.com/python-gitlab/python-gitlab/commit/eabe091945d3fe50472059431e599117165a815a))
|
5821
|
-
|
5822
6010
|
* chore(deps): update dependency sphinx to v3.5.4 ([`a886d28`](https://github.com/python-gitlab/python-gitlab/commit/a886d28a893ac592b930ce54111d9ae4e90f458e))
|
5823
6011
|
|
6012
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.3-ce.0 ([`eabe091`](https://github.com/python-gitlab/python-gitlab/commit/eabe091945d3fe50472059431e599117165a815a))
|
6013
|
+
|
5824
6014
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.1-ce.0 ([`1995361`](https://github.com/python-gitlab/python-gitlab/commit/1995361d9a767ad5af5338f4555fa5a3914c7374))
|
5825
6015
|
|
6016
|
+
* chore: import audit events in objects ([`35a190c`](https://github.com/python-gitlab/python-gitlab/commit/35a190cfa0902d6a298aba0a3135c5a99edfe0fa))
|
6017
|
+
|
5826
6018
|
* chore(deps): update dependency docker-compose to v1.28.6 ([`46b05d5`](https://github.com/python-gitlab/python-gitlab/commit/46b05d525d0ade6f2aadb6db23fadc85ad48cd3d))
|
5827
6019
|
|
5828
6020
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.0-ce.0 ([`5221e33`](https://github.com/python-gitlab/python-gitlab/commit/5221e33768fe1e49456d5df09e3f50b46933c8a4))
|
5829
6021
|
|
5830
6022
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.4-ce.0 ([`939f769`](https://github.com/python-gitlab/python-gitlab/commit/939f769e7410738da2e1c5d502caa765f362efdd))
|
5831
6023
|
|
5832
|
-
* chore: remove usage of getattr()
|
5833
|
-
|
5834
|
-
Remove usage of getattr(self, "_update_uses_post", False)
|
5835
|
-
|
5836
|
-
Instead add it to class and set default value to False.
|
5837
|
-
|
5838
|
-
Add a tests that shows it is set to True for the
|
5839
|
-
ProjectMergeRequestApprovalManager and ProjectApprovalManager classes. ([`2afd18a`](https://github.com/python-gitlab/python-gitlab/commit/2afd18aa28742a3267742859a88be6912a803874))
|
5840
|
-
|
5841
6024
|
* chore: fix package file test naming ([`8c80268`](https://github.com/python-gitlab/python-gitlab/commit/8c802680ae7d3bff13220a55efeed9ca79104b10))
|
5842
6025
|
|
5843
6026
|
* chore: add _create_attrs & _update_attrs to RESTManager
|
@@ -5859,14 +6042,6 @@ simpler. We no longer have to do:
|
|
5859
6042
|
|
5860
6043
|
And the type checker now understands the type. ([`924f83e`](https://github.com/python-gitlab/python-gitlab/commit/924f83eb4b5e160bd231efc38e2eea0231fa311f))
|
5861
6044
|
|
5862
|
-
* chore: make lint happy ([`7a7c9fd`](https://github.com/python-gitlab/python-gitlab/commit/7a7c9fd932def75a2f2c517482784e445d83881a))
|
5863
|
-
|
5864
|
-
* chore: make lint happy ([`b5f43c8`](https://github.com/python-gitlab/python-gitlab/commit/b5f43c83b25271f7aff917a9ce8826d39ff94034))
|
5865
|
-
|
5866
|
-
* chore: make lint happy ([`732e49c`](https://github.com/python-gitlab/python-gitlab/commit/732e49c6547c181de8cc56e93b30dc399e87091d))
|
5867
|
-
|
5868
|
-
* chore: import audit events in objects ([`35a190c`](https://github.com/python-gitlab/python-gitlab/commit/35a190cfa0902d6a298aba0a3135c5a99edfe0fa))
|
5869
|
-
|
5870
6045
|
* chore: add type-hints for gitlab/mixins.py
|
5871
6046
|
|
5872
6047
|
* Added type-hints for gitlab/mixins.py
|
@@ -5874,11 +6049,9 @@ And the type checker now understands the type. ([`924f83e`](https://github.com/p
|
|
5874
6049
|
list-comprehension. mypy was not able to understand the previous
|
5875
6050
|
code. Also list-comprehension is better :) ([`baea721`](https://github.com/python-gitlab/python-gitlab/commit/baea7215bbbe07c06b2ca0f97a1d3d482668d887))
|
5876
6051
|
|
5877
|
-
* chore
|
5878
|
-
|
5879
|
-
* chore: add test ([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
|
6052
|
+
* chore: add type hints to gitlab/base.py:RESTManager
|
5880
6053
|
|
5881
|
-
|
6054
|
+
Add some additional type hints to gitlab/base.py ([`9c55593`](https://github.com/python-gitlab/python-gitlab/commit/9c55593ae6a7308176710665f8bec094d4cadc2e))
|
5882
6055
|
|
5883
6056
|
* chore: put assert statements inside 'if TYPE_CHECKING:'
|
5884
6057
|
|
@@ -5891,9 +6064,9 @@ that it is not a requests.Response object. Theoretically the JSON
|
|
5891
6064
|
could return as a list or dict, though at this time we are assuming a
|
5892
6065
|
dict. ([`b562458`](https://github.com/python-gitlab/python-gitlab/commit/b562458f063c6be970f58c733fe01ec786798549))
|
5893
6066
|
|
5894
|
-
* chore:
|
6067
|
+
* chore(deps): update dependency sphinx to v3.5.2 ([`9dee5c4`](https://github.com/python-gitlab/python-gitlab/commit/9dee5c420633bc27e1027344279c47862f7b16da))
|
5895
6068
|
|
5896
|
-
|
6069
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.2-ce.0 ([`933ba52`](https://github.com/python-gitlab/python-gitlab/commit/933ba52475e5dae4cf7c569d8283e60eebd5b7b6))
|
5897
6070
|
|
5898
6071
|
* chore: del 'import *' in gitlab/v4/objects/project_access_tokens.py
|
5899
6072
|
|
@@ -5912,6 +6085,10 @@ to Tuple[str, ...] ([`907634f`](https://github.com/python-gitlab/python-gitlab/c
|
|
5912
6085
|
|
5913
6086
|
* chore(api): move repository endpoints into separate module ([`1ed154c`](https://github.com/python-gitlab/python-gitlab/commit/1ed154c276fb2429d3b45058b9314d6391dbff02))
|
5914
6087
|
|
6088
|
+
* chore: add and fix some type-hints in gitlab/client.py
|
6089
|
+
|
6090
|
+
Was able to figure out better type-hints for gitlab/client.py ([`8837207`](https://github.com/python-gitlab/python-gitlab/commit/88372074a703910ba533237e6901e5af4c26c2bd))
|
6091
|
+
|
5915
6092
|
* chore: add additional type-hints for gitlab/base.py
|
5916
6093
|
|
5917
6094
|
Add type-hints for the variables which are set via self.__dict__
|
@@ -5919,9 +6096,9 @@ Add type-hints for the variables which are set via self.__dict__
|
|
5919
6096
|
mypy doesn't see them when they are assigned via self.__dict__. So
|
5920
6097
|
declare them in the class definition. ([`ad72ef3`](https://github.com/python-gitlab/python-gitlab/commit/ad72ef35707529058c7c680f334c285746b2f690))
|
5921
6098
|
|
5922
|
-
* chore: add
|
6099
|
+
* chore: add type-hints to gitlab/client.py
|
5923
6100
|
|
5924
|
-
|
6101
|
+
Adding some initial type-hints to gitlab/client.py ([`c9e5b4f`](https://github.com/python-gitlab/python-gitlab/commit/c9e5b4f6285ec94d467c7c10c45f4e2d5f656430))
|
5925
6102
|
|
5926
6103
|
* chore: remove import of gitlab.utils from __init__.py
|
5927
6104
|
|
@@ -5931,27 +6108,21 @@ remove this but functional tests failed.
|
|
5931
6108
|
Later we fixed the functional test that was failing, so now remove the
|
5932
6109
|
unneeded import. ([`39b9183`](https://github.com/python-gitlab/python-gitlab/commit/39b918374b771f1d417196ca74fa04fe3968c412))
|
5933
6110
|
|
5934
|
-
* chore: add type-hints to gitlab/client.py
|
5935
|
-
|
5936
|
-
Adding some initial type-hints to gitlab/client.py ([`c9e5b4f`](https://github.com/python-gitlab/python-gitlab/commit/c9e5b4f6285ec94d467c7c10c45f4e2d5f656430))
|
5937
|
-
|
5938
6111
|
* chore: improve type-hints for gitlab/base.py
|
5939
6112
|
|
5940
6113
|
Determined the base class for obj_cls and adding type-hints for it. ([`cbd43d0`](https://github.com/python-gitlab/python-gitlab/commit/cbd43d0b4c95e46fc3f1cffddc6281eced45db4a))
|
5941
6114
|
|
5942
|
-
* chore(deps): update dependency docker-compose to v1.28.5 ([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
|
5943
|
-
|
5944
6115
|
* chore: add type-hints to gitlab/cli.py ([`10b7b83`](https://github.com/python-gitlab/python-gitlab/commit/10b7b836d31fbe36a7096454287004b46a7799dd))
|
5945
6116
|
|
5946
|
-
* chore:
|
6117
|
+
* chore(deps): update dependency docker-compose to v1.28.5 ([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
|
5947
6118
|
|
5948
|
-
* chore:
|
6119
|
+
* chore(deps): update wagoid/commitlint-github-action action to v3 ([`b3274cf`](https://github.com/python-gitlab/python-gitlab/commit/b3274cf93dfb8ae85e4a636a1ffbfa7c48f1c8f6))
|
5949
6120
|
|
5950
6121
|
* chore: add type-hints to gitlab/const.py ([`a10a777`](https://github.com/python-gitlab/python-gitlab/commit/a10a7777caabd6502d04f3947a317b5b0ac869f2))
|
5951
6122
|
|
5952
|
-
* chore
|
6123
|
+
* chore: add type hints to gitlab/utils.py ([`acd9294`](https://github.com/python-gitlab/python-gitlab/commit/acd9294fac52a636a016a7a3c14416b10573da28))
|
5953
6124
|
|
5954
|
-
* chore
|
6125
|
+
* chore: add type-hints to gitlab/config.py ([`213e563`](https://github.com/python-gitlab/python-gitlab/commit/213e5631b1efce11f8a1419cd77df5d9da7ec0ac))
|
5955
6126
|
|
5956
6127
|
* chore: remove usage of 'from ... import *'
|
5957
6128
|
|
@@ -5971,6 +6142,8 @@ After the change the output of:
|
|
5971
6142
|
Is empty. Before many messages about unable to determine if it was a
|
5972
6143
|
valid name. ([`c83eaf4`](https://github.com/python-gitlab/python-gitlab/commit/c83eaf4f395300471311a67be34d8d306c2b3861))
|
5973
6144
|
|
6145
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.1-ce.0 ([`f6fd995`](https://github.com/python-gitlab/python-gitlab/commit/f6fd99530d70f2a7626602fd9132b628bb968eab))
|
6146
|
+
|
5974
6147
|
* chore: remove unused function _construct_url()
|
5975
6148
|
|
5976
6149
|
The function _construct_url() was used by the v3 API. All usage of the
|
@@ -5995,8 +6168,6 @@ gitlab.exceptions
|
|
5995
6168
|
A flake8 run no longer lists any undefined variables. Before it listed
|
5996
6169
|
possible undefined variables. ([`bf0c8c5`](https://github.com/python-gitlab/python-gitlab/commit/bf0c8c5d123a7ad0587cb97c3aafd97ab2a9dabf))
|
5997
6170
|
|
5998
|
-
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.0-ce.0 ([`3aef19c`](https://github.com/python-gitlab/python-gitlab/commit/3aef19c51713bdc7ca0a84752da3ca22329fd4c4))
|
5999
|
-
|
6000
6171
|
* chore: explicitly import gitlab.v4.objects/cli
|
6001
6172
|
|
6002
6173
|
As we only support the v4 Gitlab API, explicitly import
|
@@ -6014,17 +6185,17 @@ according to https://docs.gitlab.com/ee/api/,
|
|
6014
6185
|
"GraphQL co-exists with the current v4 REST API. If we have a v5 API, this
|
6015
6186
|
should be a compatibility layer on top of GraphQL." ([`233b79e`](https://github.com/python-gitlab/python-gitlab/commit/233b79ed442aac66faf9eb4b0087ea126d6dffc5))
|
6016
6187
|
|
6188
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.0-ce.0 ([`3aef19c`](https://github.com/python-gitlab/python-gitlab/commit/3aef19c51713bdc7ca0a84752da3ca22329fd4c4))
|
6189
|
+
|
6017
6190
|
* chore(objects): make Project refreshable
|
6018
6191
|
|
6019
6192
|
Helps getting the real state of the project from the server. ([`958a6aa`](https://github.com/python-gitlab/python-gitlab/commit/958a6aa83ead3fb6be6ec61bdd894ad78346e7bd))
|
6020
6193
|
|
6021
|
-
* chore(tests): remove unused URL segment ([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
|
6022
|
-
|
6023
6194
|
* chore(deps): update dependency docker-compose to v1.28.4 ([`8938484`](https://github.com/python-gitlab/python-gitlab/commit/89384846445be668ca6c861f295297d048cae914))
|
6024
6195
|
|
6025
|
-
* chore(
|
6196
|
+
* chore(tests): remove unused URL segment ([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
|
6026
6197
|
|
6027
|
-
* chore(deps): update dependency
|
6198
|
+
* chore(deps): update dependency docker-compose to v1.28.3 ([`2358d48`](https://github.com/python-gitlab/python-gitlab/commit/2358d48acbe1c378377fb852b41ec497217d2555))
|
6028
6199
|
|
6029
6200
|
* chore: remove unused ALLOWED_KEYSET_ENDPOINTS variable
|
6030
6201
|
|
@@ -6035,6 +6206,8 @@ Then most of that commit was removed in commit
|
|
6035
6206
|
e71fe16b47835aa4db2834e98c7ffc6bdec36723, but ALLOWED_KEYSET_ENDPOINTS
|
6036
6207
|
was missed. ([`3d5d5d8`](https://github.com/python-gitlab/python-gitlab/commit/3d5d5d8b13fc8405e9ef3e14be1fd8bd32235221))
|
6037
6208
|
|
6209
|
+
* chore(deps): update dependency sphinx to v3.5.1 ([`f916f09`](https://github.com/python-gitlab/python-gitlab/commit/f916f09d3a9cac07246035066d4c184103037026))
|
6210
|
+
|
6038
6211
|
* chore: remove Python 2 code
|
6039
6212
|
|
6040
6213
|
httplib is a Python 2 library. It was renamed to http.client in Python
|
@@ -6075,6 +6248,10 @@ already exists and is useful but very easy to miss. ([`6ff67e7`](https://github.
|
|
6075
6248
|
|
6076
6249
|
* feat(objects): add support for resource state events API ([`d4799c4`](https://github.com/python-gitlab/python-gitlab/commit/d4799c40bd12ed85d4bb834464fdb36c4dadcab6))
|
6077
6250
|
|
6251
|
+
* feat: option to add a helper to lookup token ([`8ecf559`](https://github.com/python-gitlab/python-gitlab/commit/8ecf55926f8e345960560e5c5dd6716199cfb0ec))
|
6252
|
+
|
6253
|
+
* feat(objects): add support for group audit events API ([`2a0fbdf`](https://github.com/python-gitlab/python-gitlab/commit/2a0fbdf9fe98da6c436230be47b0ddb198c7eca9))
|
6254
|
+
|
6078
6255
|
* feat: add ProjectPackageFile
|
6079
6256
|
|
6080
6257
|
Add ProjectPackageFile and the ability to list project package
|
@@ -6082,10 +6259,6 @@ package_files.
|
|
6082
6259
|
|
6083
6260
|
Fixes #1372 ([`b9d469b`](https://github.com/python-gitlab/python-gitlab/commit/b9d469bc4e847ae0301be28a0c70019a7f6ab8b6))
|
6084
6261
|
|
6085
|
-
* feat(objects): add support for group audit events API ([`2a0fbdf`](https://github.com/python-gitlab/python-gitlab/commit/2a0fbdf9fe98da6c436230be47b0ddb198c7eca9))
|
6086
|
-
|
6087
|
-
* feat: option to add a helper to lookup token ([`8ecf559`](https://github.com/python-gitlab/python-gitlab/commit/8ecf55926f8e345960560e5c5dd6716199cfb0ec))
|
6088
|
-
|
6089
6262
|
* feat(users): add follow/unfollow API ([`e456869`](https://github.com/python-gitlab/python-gitlab/commit/e456869d98a1b7d07e6f878a0d6a9719c1b10fd4))
|
6090
6263
|
|
6091
6264
|
* feat(projects): add project access token api ([`1becef0`](https://github.com/python-gitlab/python-gitlab/commit/1becef0253804f119c8a4d0b8b1c53deb2f4d889))
|
@@ -6121,20 +6294,24 @@ to do this, but it is not exposed through this library.
|
|
6121
6294
|
|
6122
6295
|
### Fix
|
6123
6296
|
|
6124
|
-
* fix:
|
6297
|
+
* fix: only append kwargs as query parameters
|
6125
6298
|
|
6126
|
-
|
6127
|
-
|
6299
|
+
Some arguments to `http_request` were being read
|
6300
|
+
from kwargs, but kwargs is where this function
|
6301
|
+
creates query parameters from, by default. In
|
6302
|
+
the absence of a `query_parameters` param, the
|
6303
|
+
function would construct URLs with query
|
6304
|
+
parameters such as `retry_transient_errors=True`
|
6305
|
+
despite those parameters having no meaning to
|
6306
|
+
the API to which the request was sent.
|
6128
6307
|
|
6129
|
-
|
6130
|
-
|
6131
|
-
|
6308
|
+
This change names those arguments that are
|
6309
|
+
specific to `http_request` so that they do not
|
6310
|
+
end up as query parameters read from kwargs. ([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
|
6132
6311
|
|
6133
|
-
|
6134
|
-
class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject):
|
6135
|
-
Correctly at the end ^^^^^^^^^^
|
6312
|
+
* fix: only add query_parameters to GitlabList once
|
6136
6313
|
|
6137
|
-
|
6314
|
+
Fixes #1386 ([`ca2c3c9`](https://github.com/python-gitlab/python-gitlab/commit/ca2c3c9dee5dc61ea12af5b39d51b1606da32f9c))
|
6138
6315
|
|
6139
6316
|
* fix: correct ProjectFile.decode() documentation
|
6140
6317
|
|
@@ -6157,11 +6334,7 @@ confirmation change (`skip_reconfirmation` = True), `MultipartEncoder`
|
|
6157
6334
|
will try to encode everything except None and bytes. So it tries to encode bools.
|
6158
6335
|
Casting bool's values to their stringified int representation fix it. ([`3ba27ff`](https://github.com/python-gitlab/python-gitlab/commit/3ba27ffb6ae995c27608f84eef0abe636e2e63da))
|
6159
6336
|
|
6160
|
-
* fix:
|
6161
|
-
|
6162
|
-
While adding type-hints mypy flagged this as an issue. The third
|
6163
|
-
argument to register_custom_action is supposed to be a tuple. It was
|
6164
|
-
being passed as a string rather than a tuple of strings. ([`062f8f6`](https://github.com/python-gitlab/python-gitlab/commit/062f8f6a917abc037714129691a845c16b070ff6))
|
6337
|
+
* fix(types): prevent __dir__ from producing duplicates ([`5bf7525`](https://github.com/python-gitlab/python-gitlab/commit/5bf7525d2d37968235514d1b93a403d037800652))
|
6165
6338
|
|
6166
6339
|
* fix: correct some type-hints in gitlab/mixins.py
|
6167
6340
|
|
@@ -6176,26 +6349,25 @@ Main error was using '=' instead of ':'. For example:
|
|
6176
6349
|
|
6177
6350
|
Resolved those issues. ([`8bd3124`](https://github.com/python-gitlab/python-gitlab/commit/8bd312404cf647674baea792547705ef1948043d))
|
6178
6351
|
|
6179
|
-
* fix:
|
6352
|
+
* fix: argument type was not a tuple as expected
|
6180
6353
|
|
6181
|
-
|
6182
|
-
|
6183
|
-
|
6184
|
-
the absence of a `query_parameters` param, the
|
6185
|
-
function would construct URLs with query
|
6186
|
-
parameters such as `retry_transient_errors=True`
|
6187
|
-
despite those parameters having no meaning to
|
6188
|
-
the API to which the request was sent.
|
6354
|
+
While adding type-hints mypy flagged this as an issue. The third
|
6355
|
+
argument to register_custom_action is supposed to be a tuple. It was
|
6356
|
+
being passed as a string rather than a tuple of strings. ([`062f8f6`](https://github.com/python-gitlab/python-gitlab/commit/062f8f6a917abc037714129691a845c16b070ff6))
|
6189
6357
|
|
6190
|
-
|
6191
|
-
specific to `http_request` so that they do not
|
6192
|
-
end up as query parameters read from kwargs. ([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
|
6358
|
+
* fix: handling config value in _get_values_from_helper ([`9dfb4cd`](https://github.com/python-gitlab/python-gitlab/commit/9dfb4cd97e6eb5bbfc29935cbb190b70b739cf9f))
|
6193
6359
|
|
6194
|
-
* fix:
|
6360
|
+
* fix: update doc for token helper ([`3ac6fa1`](https://github.com/python-gitlab/python-gitlab/commit/3ac6fa12b37dd33610ef2206ef4ddc3b20d9fd3f))
|
6195
6361
|
|
6196
|
-
|
6362
|
+
* fix: let the homedir be expanded in path of helper ([`fc7387a`](https://github.com/python-gitlab/python-gitlab/commit/fc7387a0a6039bc58b2a741ac9b73d7068375be7))
|
6197
6363
|
|
6198
|
-
* fix
|
6364
|
+
* fix: make secret helper more user friendly ([`fc2798f`](https://github.com/python-gitlab/python-gitlab/commit/fc2798fc31a08997c049f609c19dd4ab8d75964e))
|
6365
|
+
|
6366
|
+
* fix: linting issues and test ([`b04dd2c`](https://github.com/python-gitlab/python-gitlab/commit/b04dd2c08b69619bb58832f40a4c4391e350a735))
|
6367
|
+
|
6368
|
+
* fix: better real life token lookup example ([`9ef8311`](https://github.com/python-gitlab/python-gitlab/commit/9ef83118efde3d0f35d73812ce8398be2c18ebff))
|
6369
|
+
|
6370
|
+
* fix(objects): add single get endpoint for instance audit events ([`c3f0a6f`](https://github.com/python-gitlab/python-gitlab/commit/c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060))
|
6199
6371
|
|
6200
6372
|
* fix: checking if RESTManager._from_parent_attrs is set
|
6201
6373
|
|
@@ -6209,20 +6381,6 @@ So the checks using hasattr() were no longer valid.
|
|
6209
6381
|
Update the checks to check if RESTManager._from_parent_attrs has a
|
6210
6382
|
value. ([`8224b40`](https://github.com/python-gitlab/python-gitlab/commit/8224b4066e84720d7efed3b7891c47af73cc57ca))
|
6211
6383
|
|
6212
|
-
* fix: handling config value in _get_values_from_helper ([`9dfb4cd`](https://github.com/python-gitlab/python-gitlab/commit/9dfb4cd97e6eb5bbfc29935cbb190b70b739cf9f))
|
6213
|
-
|
6214
|
-
* fix: update doc for token helper ([`3ac6fa1`](https://github.com/python-gitlab/python-gitlab/commit/3ac6fa12b37dd33610ef2206ef4ddc3b20d9fd3f))
|
6215
|
-
|
6216
|
-
* fix: let the homedir be expanded in path of helper ([`fc7387a`](https://github.com/python-gitlab/python-gitlab/commit/fc7387a0a6039bc58b2a741ac9b73d7068375be7))
|
6217
|
-
|
6218
|
-
* fix: make secret helper more user friendly ([`fc2798f`](https://github.com/python-gitlab/python-gitlab/commit/fc2798fc31a08997c049f609c19dd4ab8d75964e))
|
6219
|
-
|
6220
|
-
* fix(objects): add single get endpoint for instance audit events ([`c3f0a6f`](https://github.com/python-gitlab/python-gitlab/commit/c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060))
|
6221
|
-
|
6222
|
-
* fix: linting issues and test ([`b04dd2c`](https://github.com/python-gitlab/python-gitlab/commit/b04dd2c08b69619bb58832f40a4c4391e350a735))
|
6223
|
-
|
6224
|
-
* fix: better real life token lookup example ([`9ef8311`](https://github.com/python-gitlab/python-gitlab/commit/9ef83118efde3d0f35d73812ce8398be2c18ebff))
|
6225
|
-
|
6226
6384
|
* fix: handle tags like debian/2%2.6-21 as identifiers
|
6227
6385
|
|
6228
6386
|
Git refnames are relatively free-form and can contain all sort for
|
@@ -6720,18 +6878,20 @@ This ensures python-dotenv with expected behavior for .env processing ([`1f7a2ab
|
|
6720
6878
|
|
6721
6879
|
There is no way to edit the raw commit ([`35e43c5`](https://github.com/python-gitlab/python-gitlab/commit/35e43c54cd282f06dde0d24326641646fc3fa29e))
|
6722
6880
|
|
6723
|
-
* chore(deps): update gitlab/gitlab-ce docker tag to v13.4.3-ce.0 ([`bc17889`](https://github.com/python-gitlab/python-gitlab/commit/bc178898776d2d61477ff773248217adfac81f56))
|
6724
|
-
|
6725
6881
|
* chore(cli): remove python2 code ([`1030e0a`](https://github.com/python-gitlab/python-gitlab/commit/1030e0a7e13c4ec3fdc48b9010e9892833850db9))
|
6726
6882
|
|
6727
|
-
* chore:
|
6728
|
-
|
6729
|
-
* chore(deps): update python docker tag to v3.9 ([`1fc65e0`](https://github.com/python-gitlab/python-gitlab/commit/1fc65e072003a2d1ebc29d741e9cef1860b5ff78))
|
6883
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.4.3-ce.0 ([`bc17889`](https://github.com/python-gitlab/python-gitlab/commit/bc178898776d2d61477ff773248217adfac81f56))
|
6730
6884
|
|
6731
6885
|
* chore: simplified search scope constants ([`16fc048`](https://github.com/python-gitlab/python-gitlab/commit/16fc0489b2fe24e0356e9092c9878210b7330a72))
|
6732
6886
|
|
6733
6887
|
* chore: added docs for search scopes constants ([`7565bf0`](https://github.com/python-gitlab/python-gitlab/commit/7565bf059b240c9fffaf6959ee168a12d0fedd77))
|
6734
6888
|
|
6889
|
+
* chore: added constants for search API ([`8ef53d6`](https://github.com/python-gitlab/python-gitlab/commit/8ef53d6f6180440582d1cca305fd084c9eb70443))
|
6890
|
+
|
6891
|
+
* chore: apply suggestions ([`65ce026`](https://github.com/python-gitlab/python-gitlab/commit/65ce02675d9c9580860df91b41c3cf5e6bb8d318))
|
6892
|
+
|
6893
|
+
* chore(deps): update python docker tag to v3.9 ([`1fc65e0`](https://github.com/python-gitlab/python-gitlab/commit/1fc65e072003a2d1ebc29d741e9cef1860b5ff78))
|
6894
|
+
|
6735
6895
|
* chore: use helper fixtures for test directories ([`40ec2f5`](https://github.com/python-gitlab/python-gitlab/commit/40ec2f528b885290fbb3e2d7ef0f5f8615219326))
|
6736
6896
|
|
6737
6897
|
* chore: allow overriding docker-compose env vars for tag ([`27109ca`](https://github.com/python-gitlab/python-gitlab/commit/27109cad0d97114b187ce98ce77e4d7b0c7c3270))
|
@@ -6772,14 +6932,14 @@ work around this shortcoming. Until we know better. ([`f2cf467`](https://github.
|
|
6772
6932
|
|
6773
6933
|
* docs: add Project Merge Request approval rule documentation ([`449fc26`](https://github.com/python-gitlab/python-gitlab/commit/449fc26ffa98ef5703d019154f37a4959816f607))
|
6774
6934
|
|
6775
|
-
* docs(readme): also add hint to delete gitlab-runner-test
|
6776
|
-
|
6777
|
-
Otherwise the whole testsuite will refuse to run ([`8894f2d`](https://github.com/python-gitlab/python-gitlab/commit/8894f2da81d885c1e788a3b21686212ad91d5bf2))
|
6778
|
-
|
6779
6935
|
* docs(issues): add admin, project owner hint
|
6780
6936
|
|
6781
6937
|
Closes #1101 ([`609c03b`](https://github.com/python-gitlab/python-gitlab/commit/609c03b7139db8af5524ebeb741fd5b003e17038))
|
6782
6938
|
|
6939
|
+
* docs(readme): also add hint to delete gitlab-runner-test
|
6940
|
+
|
6941
|
+
Otherwise the whole testsuite will refuse to run ([`8894f2d`](https://github.com/python-gitlab/python-gitlab/commit/8894f2da81d885c1e788a3b21686212ad91d5bf2))
|
6942
|
+
|
6783
6943
|
* docs(projects): correct fork docs
|
6784
6944
|
|
6785
6945
|
Closes #1126 ([`54921db`](https://github.com/python-gitlab/python-gitlab/commit/54921dbcf117f6b939e0c467738399be0d661a00))
|
@@ -6792,20 +6952,20 @@ Closes #1126 ([`54921db`](https://github.com/python-gitlab/python-gitlab/commit/
|
|
6792
6952
|
|
6793
6953
|
* feat: support multipart uploads ([`2fa3004`](https://github.com/python-gitlab/python-gitlab/commit/2fa3004d9e34cc4b77fbd6bd89a15957898e1363))
|
6794
6954
|
|
6795
|
-
* feat(tests): test label getter ([`a41af90`](https://github.com/python-gitlab/python-gitlab/commit/a41af902675a07cd4772bb122c152547d6d570f7))
|
6796
|
-
|
6797
6955
|
* feat: add MINIMAL_ACCESS constant
|
6798
6956
|
|
6799
6957
|
A "minimal access" access level was
|
6800
6958
|
[introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/220203) in
|
6801
6959
|
GitLab 13.5. ([`49eb3ca`](https://github.com/python-gitlab/python-gitlab/commit/49eb3ca79172905bf49bab1486ecb91c593ea1d7))
|
6802
6960
|
|
6961
|
+
* feat(tests): test label getter ([`a41af90`](https://github.com/python-gitlab/python-gitlab/commit/a41af902675a07cd4772bb122c152547d6d570f7))
|
6962
|
+
|
6963
|
+
* feat: adds support for project merge request approval rules (#1199) ([`c6fbf39`](https://github.com/python-gitlab/python-gitlab/commit/c6fbf399ec5cbc92f995a5d61342f295be68bd79))
|
6964
|
+
|
6803
6965
|
* feat: unit tests added ([`f37ebf5`](https://github.com/python-gitlab/python-gitlab/commit/f37ebf5fd792c8e8a973443a1df386fa77d1248f))
|
6804
6966
|
|
6805
6967
|
* feat: added support for pipeline bridges ([`05cbdc2`](https://github.com/python-gitlab/python-gitlab/commit/05cbdc224007e9dda10fc2f6f7d63c82cf36dec0))
|
6806
6968
|
|
6807
|
-
* feat: adds support for project merge request approval rules (#1199) ([`c6fbf39`](https://github.com/python-gitlab/python-gitlab/commit/c6fbf399ec5cbc92f995a5d61342f295be68bd79))
|
6808
|
-
|
6809
6969
|
* feat(api): added wip filter param for merge requests ([`d6078f8`](https://github.com/python-gitlab/python-gitlab/commit/d6078f808bf19ef16cfebfaeabb09fbf70bfb4c7))
|
6810
6970
|
|
6811
6971
|
* feat(api): added wip filter param for merge requests ([`aa6e80d`](https://github.com/python-gitlab/python-gitlab/commit/aa6e80d58d765102892fadb89951ce29d08e1dab))
|
@@ -6827,12 +6987,12 @@ Fixes #1155 ([`e1e0d8c`](https://github.com/python-gitlab/python-gitlab/commit/e
|
|
6827
6987
|
|
6828
6988
|
* fix(cli): write binary data to stdout buffer ([`0733ec6`](https://github.com/python-gitlab/python-gitlab/commit/0733ec6cad5c11b470ce6bad5dc559018ff73b3c))
|
6829
6989
|
|
6830
|
-
* fix(cli): add missing args for project lists ([`c73e237`](https://github.com/python-gitlab/python-gitlab/commit/c73e23747d24ffef3c1a2a4e5f4ae24252762a71))
|
6831
|
-
|
6832
6990
|
* fix: docs changed using the consts ([`650b65c`](https://github.com/python-gitlab/python-gitlab/commit/650b65c389c686bcc9a9cef81b6ca2a509d8cad2))
|
6833
6991
|
|
6834
6992
|
* fix: typo ([`9baa905`](https://github.com/python-gitlab/python-gitlab/commit/9baa90535b5a8096600f9aec96e528f4d2ac7d74))
|
6835
6993
|
|
6994
|
+
* fix(cli): add missing args for project lists ([`c73e237`](https://github.com/python-gitlab/python-gitlab/commit/c73e23747d24ffef3c1a2a4e5f4ae24252762a71))
|
6995
|
+
|
6836
6996
|
* fix(api): add missing runner access_level param ([`92669f2`](https://github.com/python-gitlab/python-gitlab/commit/92669f2ef2af3cac1c5f06f9299975060cc5e64a))
|
6837
6997
|
|
6838
6998
|
### Refactor
|
@@ -7015,10 +7175,10 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
|
|
7015
7175
|
|
7016
7176
|
* chore(deps): update python docker tag to v3.8 ([`a8070f2`](https://github.com/python-gitlab/python-gitlab/commit/a8070f2d9a996e57104f29539069273774cf5493))
|
7017
7177
|
|
7018
|
-
* chore(deps): update gitlab/gitlab-ce docker tag to v13.3.2-ce.0 ([`9fd778b`](https://github.com/python-gitlab/python-gitlab/commit/9fd778b4a7e92a7405ac2f05c855bafbc51dc6a8))
|
7019
|
-
|
7020
7178
|
* chore(test): use pathlib for paths ([`5a56b6b`](https://github.com/python-gitlab/python-gitlab/commit/5a56b6b55f761940f80491eddcdcf17d37215cfd))
|
7021
7179
|
|
7180
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.3.2-ce.0 ([`9fd778b`](https://github.com/python-gitlab/python-gitlab/commit/9fd778b4a7e92a7405ac2f05c855bafbc51dc6a8))
|
7181
|
+
|
7022
7182
|
* chore(ci): pin gitlab-ce version for renovate ([`cb79fb7`](https://github.com/python-gitlab/python-gitlab/commit/cb79fb72e899e65a1ad77ccd508f1a1baca30309))
|
7023
7183
|
|
7024
7184
|
* chore(env): add pre-commit and commit-msg hooks ([`82070b2`](https://github.com/python-gitlab/python-gitlab/commit/82070b2d2ed99189aebb1d595430ad5567306c4c))
|
@@ -7027,28 +7187,28 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
|
|
7027
7187
|
|
7028
7188
|
* chore: make latest black happy with existing code ([`6961479`](https://github.com/python-gitlab/python-gitlab/commit/696147922552a8e6ddda3a5b852ee2de6b983e37))
|
7029
7189
|
|
7030
|
-
* chore: update tools dir for latest black version ([`f245ffb`](https://github.com/python-gitlab/python-gitlab/commit/f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa))
|
7031
|
-
|
7032
|
-
* chore: make latest black happy with existing code ([`d299753`](https://github.com/python-gitlab/python-gitlab/commit/d2997530bc3355048143bc29580ef32fc21dac3d))
|
7033
|
-
|
7034
7190
|
* chore: update tools dir for latest black version ([`c2806d8`](https://github.com/python-gitlab/python-gitlab/commit/c2806d8c0454a83dfdafd1bdbf7e10bb28d205e0))
|
7035
7191
|
|
7036
7192
|
* chore: remove unnecessary import ([`f337b7a`](https://github.com/python-gitlab/python-gitlab/commit/f337b7ac43e49f9d3610235749b1e2a21731352d))
|
7037
7193
|
|
7038
7194
|
* chore: make latest black happy with existing code ([`4039c8c`](https://github.com/python-gitlab/python-gitlab/commit/4039c8cfc6c7783270f0da1e235ef5d70b420ba9))
|
7039
7195
|
|
7040
|
-
* chore:
|
7196
|
+
* chore: update tools dir for latest black version ([`f245ffb`](https://github.com/python-gitlab/python-gitlab/commit/f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa))
|
7041
7197
|
|
7042
|
-
* chore:
|
7198
|
+
* chore: make latest black happy with existing code ([`d299753`](https://github.com/python-gitlab/python-gitlab/commit/d2997530bc3355048143bc29580ef32fc21dac3d))
|
7199
|
+
|
7200
|
+
* chore: run unittest2pytest on all unit tests ([`11383e7`](https://github.com/python-gitlab/python-gitlab/commit/11383e70f74c70e6fe8a56f18b5b170db982f402))
|
7201
|
+
|
7202
|
+
* chore: remove remnants of python2 imports ([`402566a`](https://github.com/python-gitlab/python-gitlab/commit/402566a665dfdf0862f15a7e59e4d804d1301c77))
|
7043
7203
|
|
7044
7204
|
### Documentation
|
7045
7205
|
|
7046
7206
|
* docs(variables): add docs for instance-level variables ([`ad4b87c`](https://github.com/python-gitlab/python-gitlab/commit/ad4b87cb3d6802deea971e6574ae9afe4f352e31))
|
7047
7207
|
|
7048
|
-
* docs(packages): add examples for Packages API and cli usage ([`a47dfcd`](https://github.com/python-gitlab/python-gitlab/commit/a47dfcd9ded3a0467e83396f21e6dcfa232dfdd7))
|
7049
|
-
|
7050
7208
|
* docs(api): add example for latest pipeline job artifacts ([`d20f022`](https://github.com/python-gitlab/python-gitlab/commit/d20f022a8fe29a6086d30aa7616aa1dac3e1bb17))
|
7051
7209
|
|
7210
|
+
* docs(packages): add examples for Packages API and cli usage ([`a47dfcd`](https://github.com/python-gitlab/python-gitlab/commit/a47dfcd9ded3a0467e83396f21e6dcfa232dfdd7))
|
7211
|
+
|
7052
7212
|
* docs(cli): add examples for group-project list ([`af86dcd`](https://github.com/python-gitlab/python-gitlab/commit/af86dcdd28ee1b16d590af31672c838597e3f3ec))
|
7053
7213
|
|
7054
7214
|
* docs: additional project file delete example
|
@@ -7059,14 +7219,14 @@ Showing how to delete without having to pull the file ([`9e94b75`](https://githu
|
|
7059
7219
|
|
7060
7220
|
* feat(api): add support for instance variables ([`4492fc4`](https://github.com/python-gitlab/python-gitlab/commit/4492fc42c9f6e0031dd3f3c6c99e4c58d4f472ff))
|
7061
7221
|
|
7062
|
-
* feat(api): add support for Packages API ([`71495d1`](https://github.com/python-gitlab/python-gitlab/commit/71495d127d30d2f4c00285485adae5454a590584))
|
7063
|
-
|
7064
|
-
* feat(api): add endpoint for latest ref artifacts ([`b7a07fc`](https://github.com/python-gitlab/python-gitlab/commit/b7a07fca775b278b1de7d5cb36c8421b7d9bebb7))
|
7065
|
-
|
7066
7222
|
* feat: add support to resource milestone events
|
7067
7223
|
|
7068
7224
|
Fixes #1154 ([`88f8cc7`](https://github.com/python-gitlab/python-gitlab/commit/88f8cc78f97156d5888a9600bdb8721720563120))
|
7069
7225
|
|
7226
|
+
* feat(api): add endpoint for latest ref artifacts ([`b7a07fc`](https://github.com/python-gitlab/python-gitlab/commit/b7a07fca775b278b1de7d5cb36c8421b7d9bebb7))
|
7227
|
+
|
7228
|
+
* feat(api): add support for Packages API ([`71495d1`](https://github.com/python-gitlab/python-gitlab/commit/71495d127d30d2f4c00285485adae5454a590584))
|
7229
|
+
|
7070
7230
|
* feat: add share/unshare group with group ([`7c6e541`](https://github.com/python-gitlab/python-gitlab/commit/7c6e541dc2642740a6ec2d7ed7921aca41446b37))
|
7071
7231
|
|
7072
7232
|
### Fix
|
@@ -7100,12 +7260,12 @@ Fixes #1146 ([`0078f89`](https://github.com/python-gitlab/python-gitlab/commit/0
|
|
7100
7260
|
|
7101
7261
|
* test(api): add tests for variables API ([`66d108d`](https://github.com/python-gitlab/python-gitlab/commit/66d108de9665055921123476426fb6716c602496))
|
7102
7262
|
|
7103
|
-
* test(packages): add tests for Packages API ([`7ea178b`](https://github.com/python-gitlab/python-gitlab/commit/7ea178bad398c8c2851a4584f4dca5b8adc89d29))
|
7104
|
-
|
7105
7263
|
* test: add unit tests for resource milestone events API
|
7106
7264
|
|
7107
7265
|
Fixes #1154 ([`1317f4b`](https://github.com/python-gitlab/python-gitlab/commit/1317f4b62afefcb2504472d5b5d8e24f39b0d86f))
|
7108
7266
|
|
7267
|
+
* test(packages): add tests for Packages API ([`7ea178b`](https://github.com/python-gitlab/python-gitlab/commit/7ea178bad398c8c2851a4584f4dca5b8adc89d29))
|
7268
|
+
|
7109
7269
|
### Unknown
|
7110
7270
|
|
7111
7271
|
* Merge pull request #1170 from python-gitlab/chore/bump-to-2-5-0
|
@@ -7144,6 +7304,8 @@ chore(ci): use fixed black version ([`28aa17e`](https://github.com/python-gitlab
|
|
7144
7304
|
|
7145
7305
|
Add support to resource milestone events ([`750f4ee`](https://github.com/python-gitlab/python-gitlab/commit/750f4ee6554381830e6add55583903919db2ba29))
|
7146
7306
|
|
7307
|
+
* Merge branch 'master' into issue-1154 ([`fa899d7`](https://github.com/python-gitlab/python-gitlab/commit/fa899d7a6e76acbe392f3debb5fd61d71bd88ed2))
|
7308
|
+
|
7147
7309
|
* Merge pull request #1159 from python-gitlab/feat/project-artifacts
|
7148
7310
|
|
7149
7311
|
Feat: Project job artifacts for latest successful pipeline ([`26f95f3`](https://github.com/python-gitlab/python-gitlab/commit/26f95f30a5219243f33d505747c65f798ac6a486))
|
@@ -7152,8 +7314,6 @@ Feat: Project job artifacts for latest successful pipeline ([`26f95f3`](https://
|
|
7152
7314
|
|
7153
7315
|
Feat: Add support for packages API ([`0f42e32`](https://github.com/python-gitlab/python-gitlab/commit/0f42e32cb756766735c7e277f099030f6b3d8fc7))
|
7154
7316
|
|
7155
|
-
* Merge branch 'master' into issue-1154 ([`fa899d7`](https://github.com/python-gitlab/python-gitlab/commit/fa899d7a6e76acbe392f3debb5fd61d71bd88ed2))
|
7156
|
-
|
7157
7317
|
* Merge pull request #1156 from python-gitlab/docs/group-projects-list-cli
|
7158
7318
|
|
7159
7319
|
docs(cli): add examples for group-project list ([`a038e95`](https://github.com/python-gitlab/python-gitlab/commit/a038e9567fd16259e3ed360ab0defd779e9c3901))
|
@@ -7180,7 +7340,14 @@ docs: additional project file delete example ([`5b92de8`](https://github.com/pyt
|
|
7180
7340
|
|
7181
7341
|
* chore: bump version to 2.4.0 ([`1606310`](https://github.com/python-gitlab/python-gitlab/commit/1606310a880f8a8a2a370db27511b57732caf178))
|
7182
7342
|
|
7183
|
-
|
7343
|
+
### Documentation
|
7344
|
+
|
7345
|
+
* docs(pipelines): simplify download
|
7346
|
+
|
7347
|
+
This uses a context instead of inventing your own stream handler which
|
7348
|
+
makes the code simpler and should be fine for most use cases.
|
7349
|
+
|
7350
|
+
Signed-off-by: Paul Spooren <mail@aparcar.org> ([`9a068e0`](https://github.com/python-gitlab/python-gitlab/commit/9a068e00eba364eb121a2d7d4c839e2f4c7371c8))
|
7184
7351
|
|
7185
7352
|
### Feature
|
7186
7353
|
|
@@ -7194,8 +7361,6 @@ https://docs.gitlab.com/ee/api/protected_branches.html ([`dab4d0a`](https://gith
|
|
7194
7361
|
|
7195
7362
|
### Fix
|
7196
7363
|
|
7197
|
-
* fix: add masked parameter for variables command ([`b6339bf`](https://github.com/python-gitlab/python-gitlab/commit/b6339bf85f3ae11d31bf03c4132f6e7b7c343900))
|
7198
|
-
|
7199
7364
|
* fix: do not check if kwargs is none
|
7200
7365
|
|
7201
7366
|
Co-authored-by: Traian Nedelea <tron1point0@pm.me> ([`a349b90`](https://github.com/python-gitlab/python-gitlab/commit/a349b90ea6016ec8fbe91583f2bbd9832b41a368))
|
@@ -7204,6 +7369,8 @@ Co-authored-by: Traian Nedelea <tron1point0@pm.me> ([`a349b90`](https://gi
|
|
7204
7369
|
|
7205
7370
|
* fix: pass kwargs to subsequent queries in gitlab list ([`1d011ac`](https://github.com/python-gitlab/python-gitlab/commit/1d011ac72aeb18b5f31d10e42ffb49cf703c3e3a))
|
7206
7371
|
|
7372
|
+
* fix: add masked parameter for variables command ([`b6339bf`](https://github.com/python-gitlab/python-gitlab/commit/b6339bf85f3ae11d31bf03c4132f6e7b7c343900))
|
7373
|
+
|
7207
7374
|
* fix(merge): parse arguments as query_data ([`878098b`](https://github.com/python-gitlab/python-gitlab/commit/878098b74e216b4359e0ce012ff5cd6973043a0a))
|
7208
7375
|
|
7209
7376
|
### Unknown
|
@@ -7276,16 +7443,9 @@ Fix/keyset pagination revert ([`3f585ad`](https://github.com/python-gitlab/pytho
|
|
7276
7443
|
|
7277
7444
|
### Documentation
|
7278
7445
|
|
7279
|
-
* docs(remote_mirrors): fix create command ([`1bb4e42`](https://github.com/python-gitlab/python-gitlab/commit/1bb4e42858696c9ac8cbfc0f89fa703921b969f3))
|
7280
|
-
|
7281
7446
|
* docs(remote_mirrors): fix create command ([`bab91fe`](https://github.com/python-gitlab/python-gitlab/commit/bab91fe86fc8d23464027b1c3ab30619e520235e))
|
7282
7447
|
|
7283
|
-
* docs(
|
7284
|
-
|
7285
|
-
This uses a context instead of inventing your own stream handler which
|
7286
|
-
makes the code simpler and should be fine for most use cases.
|
7287
|
-
|
7288
|
-
Signed-off-by: Paul Spooren <mail@aparcar.org> ([`9a068e0`](https://github.com/python-gitlab/python-gitlab/commit/9a068e00eba364eb121a2d7d4c839e2f4c7371c8))
|
7448
|
+
* docs(remote_mirrors): fix create command ([`1bb4e42`](https://github.com/python-gitlab/python-gitlab/commit/1bb4e42858696c9ac8cbfc0f89fa703921b969f3))
|
7289
7449
|
|
7290
7450
|
* docs: update authors ([`ac0c84d`](https://github.com/python-gitlab/python-gitlab/commit/ac0c84de02a237db350d3b21fe74d0c24d85a94e))
|
7291
7451
|
|
@@ -7307,6 +7467,11 @@ docs: add documentation for pipeline schedule play ([`07b9988`](https://github.c
|
|
7307
7467
|
|
7308
7468
|
* feat(api): added support in the GroupManager to upload Group avatars ([`28eb7ea`](https://github.com/python-gitlab/python-gitlab/commit/28eb7eab8fbe3750fb56e85967e8179b7025f441))
|
7309
7469
|
|
7470
|
+
* feat(services): add project service list API
|
7471
|
+
|
7472
|
+
Can be used to list available services
|
7473
|
+
It was introduced in GitLab 12.7 ([`fc52221`](https://github.com/python-gitlab/python-gitlab/commit/fc5222188ad096932fa89bb53f03f7118926898a))
|
7474
|
+
|
7310
7475
|
* feat: allow an environment variable to specify config location
|
7311
7476
|
|
7312
7477
|
It can be useful (especially in scripts) to specify a configuration
|
@@ -7315,11 +7480,6 @@ environment variable is defined, treat its value as the path to a
|
|
7315
7480
|
configuration file and include it in the set of default configuration
|
7316
7481
|
locations. ([`401e702`](https://github.com/python-gitlab/python-gitlab/commit/401e702a9ff14bf4cc33b3ed3acf16f3c60c6945))
|
7317
7482
|
|
7318
|
-
* feat(services): add project service list API
|
7319
|
-
|
7320
|
-
Can be used to list available services
|
7321
|
-
It was introduced in GitLab 12.7 ([`fc52221`](https://github.com/python-gitlab/python-gitlab/commit/fc5222188ad096932fa89bb53f03f7118926898a))
|
7322
|
-
|
7323
7483
|
* feat(types): add __dir__ to RESTObject to expose attributes ([`cad134c`](https://github.com/python-gitlab/python-gitlab/commit/cad134c078573c009af18160652182e39ab5b114))
|
7324
7484
|
|
7325
7485
|
### Fix
|
@@ -7425,17 +7585,17 @@ fix(project): add missing project parameters ([`29fd95e`](https://github.com/pyt
|
|
7425
7585
|
|
7426
7586
|
* chore: bump to 2.2.0 ([`22d4b46`](https://github.com/python-gitlab/python-gitlab/commit/22d4b465c3217536cb444dafe5c25e9aaa3aa7be))
|
7427
7587
|
|
7428
|
-
* chore
|
7429
|
-
|
7430
|
-
* chore(group): update group_manager attributes
|
7431
|
-
|
7432
|
-
Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`fa34f5e`](https://github.com/python-gitlab/python-gitlab/commit/fa34f5e20ecbd3f5d868df2fa9e399ac6559c5d5))
|
7588
|
+
* chore: use raise..from for chained exceptions (#939) ([`79fef26`](https://github.com/python-gitlab/python-gitlab/commit/79fef262c3e05ff626981c891d9377abb1e18533))
|
7433
7589
|
|
7434
7590
|
* chore: rename ExportMixin to DownloadMixin ([`847da60`](https://github.com/python-gitlab/python-gitlab/commit/847da6063b4c63c8133e5e5b5b45e5b4f004bdc4))
|
7435
7591
|
|
7436
7592
|
* chore(mixins): factor out export download into ExportMixin ([`6ce5d1f`](https://github.com/python-gitlab/python-gitlab/commit/6ce5d1f14060a403f05993d77bf37720c25534ba))
|
7437
7593
|
|
7438
|
-
* chore:
|
7594
|
+
* chore(group): update group_manager attributes (#1062)
|
7595
|
+
|
7596
|
+
* chore(group): update group_manager attributes
|
7597
|
+
|
7598
|
+
Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`fa34f5e`](https://github.com/python-gitlab/python-gitlab/commit/fa34f5e20ecbd3f5d868df2fa9e399ac6559c5d5))
|
7439
7599
|
|
7440
7600
|
* chore: fix typo in allow_failures ([`265bbdd`](https://github.com/python-gitlab/python-gitlab/commit/265bbddacc25d709a8f13807ed04cae393d9802d))
|
7441
7601
|
|
@@ -7467,13 +7627,11 @@ Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`ac6b2da`](https://gith
|
|
7467
7627
|
|
7468
7628
|
### Feature
|
7469
7629
|
|
7470
|
-
* feat(api): add support for remote mirrors API (#1056) ([`4cfaa2f`](https://github.com/python-gitlab/python-gitlab/commit/4cfaa2fd44b64459f6fc268a91d4469284c0e768))
|
7471
|
-
|
7472
7630
|
* feat(api): add support for Gitlab Deploy Token API ([`01de524`](https://github.com/python-gitlab/python-gitlab/commit/01de524ce39a67b549b3157bf4de827dd0568d6b))
|
7473
7631
|
|
7474
|
-
* feat(api): add support for
|
7632
|
+
* feat(api): add support for remote mirrors API (#1056) ([`4cfaa2f`](https://github.com/python-gitlab/python-gitlab/commit/4cfaa2fd44b64459f6fc268a91d4469284c0e768))
|
7475
7633
|
|
7476
|
-
* feat: add support for
|
7634
|
+
* feat(api): add support for Group Import/Export API (#1037) ([`6cb9d92`](https://github.com/python-gitlab/python-gitlab/commit/6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6))
|
7477
7635
|
|
7478
7636
|
* feat: add create from template args to ProjectManager
|
7479
7637
|
|
@@ -7481,6 +7639,8 @@ This commit adds the v4 Create project attributes necessary to create a
|
|
7481
7639
|
project from a project, instance, or group level template as documented
|
7482
7640
|
in https://docs.gitlab.com/ee/api/projects.html#create-project ([`f493b73`](https://github.com/python-gitlab/python-gitlab/commit/f493b73e1fbd3c3f1a187fed2de26030f00a89c9))
|
7483
7641
|
|
7642
|
+
* feat: add support for commit GPG signature API ([`da7a809`](https://github.com/python-gitlab/python-gitlab/commit/da7a809772233be27fa8e563925dd2e44e1ce058))
|
7643
|
+
|
7484
7644
|
### Fix
|
7485
7645
|
|
7486
7646
|
* fix(types): do not split single value string in ListAttribute ([`a26e585`](https://github.com/python-gitlab/python-gitlab/commit/a26e58585b3d82cf1a3e60a3b7b3bfd7f51d77e5))
|
@@ -7605,6 +7765,8 @@ Co-Authored-By: Mitar <mitar.git@tnode.com> ([`1609824`](https://github.co
|
|
7605
7765
|
|
7606
7766
|
* feat(api): add support for GitLab OAuth Applications API ([`4e12356`](https://github.com/python-gitlab/python-gitlab/commit/4e12356d6da58c9ef3d8bf9ae67e8aef8fafac0a))
|
7607
7767
|
|
7768
|
+
* feat: use keyset pagination by default for `all=True` ([`99b4484`](https://github.com/python-gitlab/python-gitlab/commit/99b4484da924f9378518a1a1194e1a3e75b48073))
|
7769
|
+
|
7608
7770
|
* feat: add support for user memberships API (#1009) ([`c313c2b`](https://github.com/python-gitlab/python-gitlab/commit/c313c2b01d796418539e42d578fed635f750cdc1))
|
7609
7771
|
|
7610
7772
|
* feat: add support for commit revert API (#991) ([`5298964`](https://github.com/python-gitlab/python-gitlab/commit/5298964ee7db8a610f23de2d69aad8467727ca97))
|
@@ -7615,17 +7777,33 @@ Co-Authored-By: Mitar <mitar.git@tnode.com> ([`1609824`](https://github.co
|
|
7615
7777
|
|
7616
7778
|
* fix(projects): correct copy-paste error ([`adc9101`](https://github.com/python-gitlab/python-gitlab/commit/adc91011e46dfce909b7798b1257819ec09d01bd))
|
7617
7779
|
|
7618
|
-
* fix:
|
7780
|
+
* fix(objects): add default name data and use http post
|
7619
7781
|
|
7620
|
-
|
7782
|
+
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))
|
7783
|
+
|
7784
|
+
* fix: do not require empty data dict for create() ([`99d959f`](https://github.com/python-gitlab/python-gitlab/commit/99d959f74d06cca8df3f2d2b3a4709faba7799cb))
|
7621
7785
|
|
7622
7786
|
* fix(docs): fix typo in user memberships example ([`33889bc`](https://github.com/python-gitlab/python-gitlab/commit/33889bcbedb4aa421ea5bf83c13abe3168256c62))
|
7623
7787
|
|
7788
|
+
* fix: remove trailing slashes from base URL (#913) ([`2e396e4`](https://github.com/python-gitlab/python-gitlab/commit/2e396e4a84690c2ea2ea7035148b1a6038c03301))
|
7789
|
+
|
7624
7790
|
* fix: return response with commit data ([`b77b945`](https://github.com/python-gitlab/python-gitlab/commit/b77b945c7e0000fad4c422a5331c7e905e619a33))
|
7625
7791
|
|
7626
|
-
* fix(
|
7792
|
+
* fix(docs): update to new set approvers call for # of approvers
|
7627
7793
|
|
7628
|
-
|
7794
|
+
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))
|
7795
|
+
|
7796
|
+
* fix(objects): update set_approvers function call
|
7797
|
+
|
7798
|
+
Added a miss paramter update to the set_approvers function ([`65ecadc`](https://github.com/python-gitlab/python-gitlab/commit/65ecadcfc724a7086e5f84dbf1ecc9f7a02e5ed8))
|
7799
|
+
|
7800
|
+
* fix(docs and tests): update docs and tests for set_approvers
|
7801
|
+
|
7802
|
+
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))
|
7803
|
+
|
7804
|
+
* fix(objects): update to new gitlab api for path, and args
|
7805
|
+
|
7806
|
+
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))
|
7629
7807
|
|
7630
7808
|
* fix: remove null values from features POST data, because it fails
|
7631
7809
|
with HTTP 500 ([`1ec1816`](https://github.com/python-gitlab/python-gitlab/commit/1ec1816d7c76ae079ad3b3e3b7a1bae70e0dd95b))
|
@@ -7720,28 +7898,6 @@ This also workarounds an GitLab issue, where private_profile, would reset to fal
|
|
7720
7898
|
|
7721
7899
|
* docs(auth): remove email/password auth ([`c9329bb`](https://github.com/python-gitlab/python-gitlab/commit/c9329bbf028c5e5ce175e99859c9e842ab8234bc))
|
7722
7900
|
|
7723
|
-
### Feature
|
7724
|
-
|
7725
|
-
* feat: use keyset pagination by default for `all=True` ([`99b4484`](https://github.com/python-gitlab/python-gitlab/commit/99b4484da924f9378518a1a1194e1a3e75b48073))
|
7726
|
-
|
7727
|
-
### Fix
|
7728
|
-
|
7729
|
-
* fix(docs): update to new set approvers call for # of approvers
|
7730
|
-
|
7731
|
-
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))
|
7732
|
-
|
7733
|
-
* fix(objects): update set_approvers function call
|
7734
|
-
|
7735
|
-
Added a miss paramter update to the set_approvers function ([`65ecadc`](https://github.com/python-gitlab/python-gitlab/commit/65ecadcfc724a7086e5f84dbf1ecc9f7a02e5ed8))
|
7736
|
-
|
7737
|
-
* fix(docs and tests): update docs and tests for set_approvers
|
7738
|
-
|
7739
|
-
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))
|
7740
|
-
|
7741
|
-
* fix(objects): update to new gitlab api for path, and args
|
7742
|
-
|
7743
|
-
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))
|
7744
|
-
|
7745
7901
|
### Unknown
|
7746
7902
|
|
7747
7903
|
* Merge pull request #1007 from python-gitlab/chore/user-update
|
@@ -7898,18 +8054,6 @@ repositories into gitlab. ([`aa4d41b`](https://github.com/python-gitlab/python-g
|
|
7898
8054
|
|
7899
8055
|
* feat: nicer stacktrace ([`697cda2`](https://github.com/python-gitlab/python-gitlab/commit/697cda241509dd76adc1249b8029366cfc1d9d6e))
|
7900
8056
|
|
7901
|
-
* feat: retry transient HTTP errors
|
7902
|
-
|
7903
|
-
Fixes #970 ([`59fe271`](https://github.com/python-gitlab/python-gitlab/commit/59fe2714741133989a7beed613f1eeb67c18c54e))
|
7904
|
-
|
7905
|
-
* feat: access project's issues statistics
|
7906
|
-
|
7907
|
-
Fixes #966 ([`482e57b`](https://github.com/python-gitlab/python-gitlab/commit/482e57ba716c21cd7b315e5803ecb3953c479b33))
|
7908
|
-
|
7909
|
-
* feat: adding project stats
|
7910
|
-
|
7911
|
-
Fixes #967 ([`db0b00a`](https://github.com/python-gitlab/python-gitlab/commit/db0b00a905c14d52eaca831fcc9243f33d2f092d))
|
7912
|
-
|
7913
8057
|
* feat: add variable_type/protected to projects ci variables
|
7914
8058
|
|
7915
8059
|
This adds the ci variables types and protected flag for create/update
|
@@ -7925,6 +8069,18 @@ This adds the ci variables types for create/update requests.
|
|
7925
8069
|
See
|
7926
8070
|
https://docs.gitlab.com/ee/api/group_level_variables.html#create-variable ([`0986c93`](https://github.com/python-gitlab/python-gitlab/commit/0986c93177cde1f3be77d4f73314c37b14bba011))
|
7927
8071
|
|
8072
|
+
* feat: access project's issues statistics
|
8073
|
+
|
8074
|
+
Fixes #966 ([`482e57b`](https://github.com/python-gitlab/python-gitlab/commit/482e57ba716c21cd7b315e5803ecb3953c479b33))
|
8075
|
+
|
8076
|
+
* feat: adding project stats
|
8077
|
+
|
8078
|
+
Fixes #967 ([`db0b00a`](https://github.com/python-gitlab/python-gitlab/commit/db0b00a905c14d52eaca831fcc9243f33d2f092d))
|
8079
|
+
|
8080
|
+
* feat: retry transient HTTP errors
|
8081
|
+
|
8082
|
+
Fixes #970 ([`59fe271`](https://github.com/python-gitlab/python-gitlab/commit/59fe2714741133989a7beed613f1eeb67c18c54e))
|
8083
|
+
|
7928
8084
|
### Fix
|
7929
8085
|
|
7930
8086
|
* fix: ignore all parameter, when as_list=True
|
@@ -7999,6 +8155,8 @@ Fixes #954 ([`bbaa754`](https://github.com/python-gitlab/python-gitlab/commit/bb
|
|
7999
8155
|
|
8000
8156
|
* docs(changelog): add notice for release-notes on Github (#938) ([`de98e57`](https://github.com/python-gitlab/python-gitlab/commit/de98e572b003ee4cf2c1ef770a692f442c216247))
|
8001
8157
|
|
8158
|
+
* docs(pipelines_and_jobs): add pipeline custom variables usage example ([`b275eb0`](https://github.com/python-gitlab/python-gitlab/commit/b275eb03c5954ca24f249efad8125d1eacadd3ac))
|
8159
|
+
|
8002
8160
|
### Feature
|
8003
8161
|
|
8004
8162
|
* feat: add audit endpoint ([`2534020`](https://github.com/python-gitlab/python-gitlab/commit/2534020b1832f28339ef466d6dd3edc21a521260))
|
@@ -8102,8 +8260,6 @@ Closes #907 ([`3133ed7`](https://github.com/python-gitlab/python-gitlab/commit/3
|
|
8102
8260
|
|
8103
8261
|
### Documentation
|
8104
8262
|
|
8105
|
-
* docs(pipelines_and_jobs): add pipeline custom variables usage example ([`b275eb0`](https://github.com/python-gitlab/python-gitlab/commit/b275eb03c5954ca24f249efad8125d1eacadd3ac))
|
8106
|
-
|
8107
8263
|
* docs: projects get requires id
|
8108
8264
|
|
8109
8265
|
Also, add an example value for project_id to the other projects.get()
|
@@ -8129,10 +8285,10 @@ Fixes #917 ([`ca256a0`](https://github.com/python-gitlab/python-gitlab/commit/ca
|
|
8129
8285
|
|
8130
8286
|
* feat(test): unused unittest2, type -> isinstance ([`33b1801`](https://github.com/python-gitlab/python-gitlab/commit/33b180120f30515d0f76fcf635cb8c76045b1b42))
|
8131
8287
|
|
8132
|
-
* feat(doc): remove refs to api v3 in docs ([`6beeaa9`](https://github.com/python-gitlab/python-gitlab/commit/6beeaa993f8931d6b7fe682f1afed2bd4c8a4b73))
|
8133
|
-
|
8134
8288
|
* feat(auth): remove deprecated session auth ([`b751cdf`](https://github.com/python-gitlab/python-gitlab/commit/b751cdf424454d3859f3f038b58212e441faafaf))
|
8135
8289
|
|
8290
|
+
* feat(doc): remove refs to api v3 in docs ([`6beeaa9`](https://github.com/python-gitlab/python-gitlab/commit/6beeaa993f8931d6b7fe682f1afed2bd4c8a4b73))
|
8291
|
+
|
8136
8292
|
### Fix
|
8137
8293
|
|
8138
8294
|
* fix(projects): support `approval_rules` endpoint for projects
|
@@ -8417,10 +8573,10 @@ feat: Add grouplabel support with subscribable mixin ([`edb3359`](https://github
|
|
8417
8573
|
|
8418
8574
|
* chore(ci): update the GitLab version in the test image ([`c410699`](https://github.com/python-gitlab/python-gitlab/commit/c41069992de392747ccecf8c282ac0549932ccd1))
|
8419
8575
|
|
8420
|
-
* chore(ci): fix gitlab PyPI publish ([`3e37df1`](https://github.com/python-gitlab/python-gitlab/commit/3e37df16e2b6a8f1beffc3a595abcb06fd48a17c))
|
8421
|
-
|
8422
8576
|
* chore(ci): add automatic GitLab image pushes ([`95c9b6d`](https://github.com/python-gitlab/python-gitlab/commit/95c9b6dd489fc15c7dfceffca909917f4f3d4312))
|
8423
8577
|
|
8578
|
+
* chore(ci): fix gitlab PyPI publish ([`3e37df1`](https://github.com/python-gitlab/python-gitlab/commit/3e37df16e2b6a8f1beffc3a595abcb06fd48a17c))
|
8579
|
+
|
8424
8580
|
* chore: add a tox job to run black
|
8425
8581
|
|
8426
8582
|
Allow lines to be 88 chars long for flake8. ([`c27fa48`](https://github.com/python-gitlab/python-gitlab/commit/c27fa486698e441ebc16448ee93e5539cb885ced))
|
@@ -8478,14 +8634,14 @@ Fixes #660 ([`bed8e1b`](https://github.com/python-gitlab/python-gitlab/commit/be
|
|
8478
8634
|
|
8479
8635
|
* docs(setup): use proper readme on PyPI ([`6898097`](https://github.com/python-gitlab/python-gitlab/commit/6898097c45d53a3176882a3d9cb86c0015f8d491))
|
8480
8636
|
|
8481
|
-
* docs(groups): fix typo
|
8482
|
-
|
8483
|
-
Fixes #635 ([`ac2d65a`](https://github.com/python-gitlab/python-gitlab/commit/ac2d65aacba5c19eca857290c5b47ead6bb4356d))
|
8484
|
-
|
8485
8637
|
* docs(projects): fix typo in code sample
|
8486
8638
|
|
8487
8639
|
Fixes #630 ([`b93f2a9`](https://github.com/python-gitlab/python-gitlab/commit/b93f2a9ea9661521878ac45d70c7bd9a5a470548))
|
8488
8640
|
|
8641
|
+
* docs(groups): fix typo
|
8642
|
+
|
8643
|
+
Fixes #635 ([`ac2d65a`](https://github.com/python-gitlab/python-gitlab/commit/ac2d65aacba5c19eca857290c5b47ead6bb4356d))
|
8644
|
+
|
8489
8645
|
* docs(cli): add PyYAML requirement notice
|
8490
8646
|
|
8491
8647
|
Fixes #606 ([`d29a489`](https://github.com/python-gitlab/python-gitlab/commit/d29a48981b521bf31d6f0304b88f39a63185328a))
|
@@ -8575,14 +8731,14 @@ Fix #175 ([`ca014f8`](https://github.com/python-gitlab/python-gitlab/commit/ca01
|
|
8575
8731
|
|
8576
8732
|
* feat: get artifact by ref and job ([`cda1174`](https://github.com/python-gitlab/python-gitlab/commit/cda117456791977ad300a1dd26dec56009dac55e))
|
8577
8733
|
|
8578
|
-
* feat: add support for board update
|
8579
|
-
|
8580
|
-
Closes #801 ([`908d79f`](https://github.com/python-gitlab/python-gitlab/commit/908d79fa56965e7b3afcfa23236beef457cfa4b4))
|
8581
|
-
|
8582
8734
|
* feat: add support for issue.related_merge_requests
|
8583
8735
|
|
8584
8736
|
Closes #794 ([`90a3631`](https://github.com/python-gitlab/python-gitlab/commit/90a363154067bcf763043124d172eaf705c8fe90))
|
8585
8737
|
|
8738
|
+
* feat: add support for board update
|
8739
|
+
|
8740
|
+
Closes #801 ([`908d79f`](https://github.com/python-gitlab/python-gitlab/commit/908d79fa56965e7b3afcfa23236beef457cfa4b4))
|
8741
|
+
|
8586
8742
|
* feat: bump version to 1.9.0 ([`aaed448`](https://github.com/python-gitlab/python-gitlab/commit/aaed44837869bd2ce22b6f0d2e1196b1d0e626a6))
|
8587
8743
|
|
8588
8744
|
* feat: implement artifacts deletion
|
@@ -8896,13 +9052,13 @@ Revert "Custom cli actions fix" ([`ef32990`](https://github.com/python-g
|
|
8896
9052
|
|
8897
9053
|
Custom cli actions fix ([`e8823e9`](https://github.com/python-gitlab/python-gitlab/commit/e8823e91b04fd6cf3838ad256c02373db7029191))
|
8898
9054
|
|
8899
|
-
*
|
9055
|
+
* fix -/_ replacament for *Manager custom actions ([`6158fd2`](https://github.com/python-gitlab/python-gitlab/commit/6158fd23022b2e2643b6da7a39708b28ce59270a))
|
8900
9056
|
|
8901
|
-
|
9057
|
+
* dont ask for id attr if this is *Manager originating custom action ([`adb6305`](https://github.com/python-gitlab/python-gitlab/commit/adb63054add31e06cefec09982a02b1cd21c2cbd))
|
8902
9058
|
|
8903
|
-
* Merge pull request #
|
9059
|
+
* Merge pull request #759 from kkoralsky/registry_api
|
8904
9060
|
|
8905
|
-
|
9061
|
+
registry api implementation ([`84bcdc0`](https://github.com/python-gitlab/python-gitlab/commit/84bcdc0c452d2ada9a47aa9907d7551aeac23821))
|
8906
9062
|
|
8907
9063
|
* documentation fix ([`2d9078e`](https://github.com/python-gitlab/python-gitlab/commit/2d9078e8e785e3a17429623693f84bbf8526ee58))
|
8908
9064
|
|
@@ -8918,6 +9074,10 @@ chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/
|
|
8918
9074
|
|
8919
9075
|
* merged new release & registry apis ([`910c286`](https://github.com/python-gitlab/python-gitlab/commit/910c2861a3c895cca5aff0a0df1672bb7388c526))
|
8920
9076
|
|
9077
|
+
* Merge pull request #773 from python-gitlab/chore/ci-reliable-system
|
9078
|
+
|
9079
|
+
chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/python-gitlab/commit/3dc64131eaec7d08b059039f446cc8d8c4b58c81))
|
9080
|
+
|
8921
9081
|
* Merge pull request #769 from python-gitlab/pep-fixes
|
8922
9082
|
|
8923
9083
|
fix: pep8 errors ([`a730598`](https://github.com/python-gitlab/python-gitlab/commit/a7305980ef4065a6518951fb166b11eec9003b4d))
|
@@ -8926,10 +9086,6 @@ fix: pep8 errors ([`a730598`](https://github.com/python-gitlab/python-gitlab/com
|
|
8926
9086
|
|
8927
9087
|
add project releases api ([`16de1b0`](https://github.com/python-gitlab/python-gitlab/commit/16de1b03fde3dbbe8f851614dd1d8c09de102fe5))
|
8928
9088
|
|
8929
|
-
* fix -/_ replacament for *Manager custom actions ([`6158fd2`](https://github.com/python-gitlab/python-gitlab/commit/6158fd23022b2e2643b6da7a39708b28ce59270a))
|
8930
|
-
|
8931
|
-
* dont ask for id attr if this is *Manager originating custom action ([`adb6305`](https://github.com/python-gitlab/python-gitlab/commit/adb63054add31e06cefec09982a02b1cd21c2cbd))
|
8932
|
-
|
8933
9089
|
* Use NoUpdateMixin for now ([`8e55a3c`](https://github.com/python-gitlab/python-gitlab/commit/8e55a3c85f3537e2be1032bf7d28080a4319ec89))
|
8934
9090
|
|
8935
9091
|
* add project releases api ([`3680545`](https://github.com/python-gitlab/python-gitlab/commit/3680545a01513ed044eb888151d2e2c635cea255))
|
@@ -8954,14 +9110,14 @@ Re-enable command specific help messages ([`a6e10f9`](https://github.com/python-
|
|
8954
9110
|
|
8955
9111
|
* Use sys.exit as in rest of code ([`6fe2988`](https://github.com/python-gitlab/python-gitlab/commit/6fe2988dd050c05b17556cacac4e283fbf5242a8))
|
8956
9112
|
|
8957
|
-
* Merge pull request #729 from xarx00/PR-bugfix-716
|
8958
|
-
|
8959
|
-
Fix for #716: %d replaced by %s ([`bc973d4`](https://github.com/python-gitlab/python-gitlab/commit/bc973d450114fcdb2fb8222ab598b5d932585064))
|
8960
|
-
|
8961
9113
|
* Re-enable command specific help mesaages
|
8962
9114
|
|
8963
9115
|
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))
|
8964
9116
|
|
9117
|
+
* Merge pull request #729 from xarx00/PR-bugfix-716
|
9118
|
+
|
9119
|
+
Fix for #716: %d replaced by %s ([`bc973d4`](https://github.com/python-gitlab/python-gitlab/commit/bc973d450114fcdb2fb8222ab598b5d932585064))
|
9120
|
+
|
8965
9121
|
* Fix for #716: %d replaced by %s ([`675f879`](https://github.com/python-gitlab/python-gitlab/commit/675f879c1ec6cf1c77cbf96d8b7b2cd51e1cbaad))
|
8966
9122
|
|
8967
9123
|
* Merge pull request #725 from python-gitlab/fix/699
|
@@ -8986,6 +9142,10 @@ chore(ci): don't try to publish existing release ([`39cb97d`](https://github
|
|
8986
9142
|
|
8987
9143
|
Implement __eq__ and __hash__ methods ([`a4ea0fe`](https://github.com/python-gitlab/python-gitlab/commit/a4ea0fe6b91d856b30d25c9f0f71ef9cae8f3f08))
|
8988
9144
|
|
9145
|
+
* Implement __eq__ and __hash__ methods
|
9146
|
+
|
9147
|
+
To ease lists and sets manipulations. ([`3d60850`](https://github.com/python-gitlab/python-gitlab/commit/3d60850aa42351a0bb0066ef579ade95df5a81ee))
|
9148
|
+
|
8989
9149
|
* Merge pull request #705 from python-gitlab/release-1.8.0
|
8990
9150
|
|
8991
9151
|
Release version 1.8.0 ([`57fa4e3`](https://github.com/python-gitlab/python-gitlab/commit/57fa4e37aaf6ccee0d75085520f96fd15752a3df))
|
@@ -8996,10 +9156,6 @@ Release version 1.8.0 ([`57fa4e3`](https://github.com/python-gitlab/python-gitla
|
|
8996
9156
|
|
8997
9157
|
Fix all kwarg behaviour ([`8ce4e9e`](https://github.com/python-gitlab/python-gitlab/commit/8ce4e9e07913d9b9bb916d079ff0a7c528830a2d))
|
8998
9158
|
|
8999
|
-
* Implement __eq__ and __hash__ methods
|
9000
|
-
|
9001
|
-
To ease lists and sets manipulations. ([`3d60850`](https://github.com/python-gitlab/python-gitlab/commit/3d60850aa42351a0bb0066ef579ade95df5a81ee))
|
9002
|
-
|
9003
9159
|
* Fix all kwarg behaviour
|
9004
9160
|
|
9005
9161
|
`all` kwarg is used to manage GitlabList generator behaviour.
|
@@ -9076,10 +9232,23 @@ fix: docker entry point argument passing ([`f945910`](https://github.com/python-
|
|
9076
9232
|
|
9077
9233
|
Improve error message handling in exceptions ([`7bd41cb`](https://github.com/python-gitlab/python-gitlab/commit/7bd41cbf88af87a31ad1943f58c5f7f8295d956b))
|
9078
9234
|
|
9235
|
+
* Improve error message handling in exceptions
|
9236
|
+
|
9237
|
+
* Depending on the request Gitlab has a 'message' or 'error' attribute
|
9238
|
+
in the json data, handle both
|
9239
|
+
* Add some consistency by converting messages to unicode or str for
|
9240
|
+
exceptions (depending on the python version)
|
9241
|
+
|
9242
|
+
Closes #616 ([`1fb1296`](https://github.com/python-gitlab/python-gitlab/commit/1fb1296c9191e57e109c4e5eb9504bce191a6ff1))
|
9243
|
+
|
9079
9244
|
* Merge pull request #625 from python-gitlab/fix/611/resource_label_event
|
9080
9245
|
|
9081
9246
|
Add support to resource label events ([`20eb7d8`](https://github.com/python-gitlab/python-gitlab/commit/20eb7d8900cdc24c3ea1e7ef2262dca9965a2884))
|
9082
9247
|
|
9248
|
+
* Add support to resource label events
|
9249
|
+
|
9250
|
+
Closes #611 ([`95d0d74`](https://github.com/python-gitlab/python-gitlab/commit/95d0d745d4bafe702c89c972f644b049d6c810ab))
|
9251
|
+
|
9083
9252
|
* Merge pull request #642 from python-gitlab/feature/589/member_all
|
9084
9253
|
|
9085
9254
|
[feature] Add support for members all() method ([`22536f3`](https://github.com/python-gitlab/python-gitlab/commit/22536f34d87e5df1a3400d3f474a988c93b9bfb1))
|
@@ -9088,34 +9257,21 @@ Add support to resource label events ([`20eb7d8`](https://github.com/python-gitl
|
|
9088
9257
|
|
9089
9258
|
Closes #589 ([`ef1523a`](https://github.com/python-gitlab/python-gitlab/commit/ef1523a23737db45d0f439badcd8be564bcb67fb))
|
9090
9259
|
|
9091
|
-
* Improve error message handling in exceptions
|
9092
|
-
|
9093
|
-
* Depending on the request Gitlab has a 'message' or 'error' attribute
|
9094
|
-
in the json data, handle both
|
9095
|
-
* Add some consistency by converting messages to unicode or str for
|
9096
|
-
exceptions (depending on the python version)
|
9097
|
-
|
9098
|
-
Closes #616 ([`1fb1296`](https://github.com/python-gitlab/python-gitlab/commit/1fb1296c9191e57e109c4e5eb9504bce191a6ff1))
|
9099
|
-
|
9100
9260
|
* Merge pull request #639 from python-gitlab/fix/628/doc_typo
|
9101
9261
|
|
9102
9262
|
[docs] Fix typo in custom attributes example ([`011274e`](https://github.com/python-gitlab/python-gitlab/commit/011274e7f94519d30dee59f5448215838d058e37))
|
9103
9263
|
|
9104
|
-
* Merge pull request #638 from python-gitlab/fix/633/milestone_filter
|
9105
|
-
|
9106
|
-
[docs] Fix the milestone filetring doc (iid -> iids) ([`e6df9a8`](https://github.com/python-gitlab/python-gitlab/commit/e6df9a8b2f9c2397ea3ae67dfe19a2fa91f41c19))
|
9107
|
-
|
9108
9264
|
* [docs] Fix typo in custom attributes example
|
9109
9265
|
|
9110
9266
|
Closes #628 ([`bb251b8`](https://github.com/python-gitlab/python-gitlab/commit/bb251b8ef780216de03dde67912ad5fffbb30390))
|
9111
9267
|
|
9112
|
-
*
|
9268
|
+
* Merge pull request #638 from python-gitlab/fix/633/milestone_filter
|
9113
9269
|
|
9114
|
-
|
9270
|
+
[docs] Fix the milestone filetring doc (iid -> iids) ([`e6df9a8`](https://github.com/python-gitlab/python-gitlab/commit/e6df9a8b2f9c2397ea3ae67dfe19a2fa91f41c19))
|
9115
9271
|
|
9116
|
-
*
|
9272
|
+
* [docs] Fix the milestone filetring doc (iid -> iids)
|
9117
9273
|
|
9118
|
-
|
9274
|
+
Fixes #633 ([`0c9a00b`](https://github.com/python-gitlab/python-gitlab/commit/0c9a00bb154007a0a9f665ca38e6fec50d378eaf))
|
9119
9275
|
|
9120
9276
|
* Merge pull request #634 from python-gitlab/docs/project-typo
|
9121
9277
|
|
@@ -9137,10 +9293,20 @@ Fix 3 typos in docs ([`7f09666`](https://github.com/python-gitlab/python-gitlab/
|
|
9137
9293
|
|
9138
9294
|
Use the pythongitlab/test-python-gitlab docker image for tests ([`742243f`](https://github.com/python-gitlab/python-gitlab/commit/742243f4f43042d4b561e3875dc38e560bb71624))
|
9139
9295
|
|
9296
|
+
* Use the pythongitlab/test-python-gitlab docker image for tests
|
9297
|
+
|
9298
|
+
This images is updated to the latest GitLab CE.
|
9299
|
+
|
9300
|
+
Fix the diff() test to match the change in the API output. ([`2c6c929`](https://github.com/python-gitlab/python-gitlab/commit/2c6c929f78dfda92d5ae93235bb9065d289a68cc))
|
9301
|
+
|
9140
9302
|
* Merge pull request #619 from python-gitlab/issue/595
|
9141
9303
|
|
9142
9304
|
[docs] Add an example of pipeline schedule vars listing ([`fcce7a3`](https://github.com/python-gitlab/python-gitlab/commit/fcce7a316968a9aea7aa504730cea1734c2f897a))
|
9143
9305
|
|
9306
|
+
* [docs] Add an example of pipeline schedule vars listing
|
9307
|
+
|
9308
|
+
Closes #595 ([`f7fbfca`](https://github.com/python-gitlab/python-gitlab/commit/f7fbfca7e6a32a31dbf7ca8e1d4f83b34b7ac9db))
|
9309
|
+
|
9144
9310
|
* Merge pull request #626 from python-gitlab/fix/596/maintainer_wanted
|
9145
9311
|
|
9146
9312
|
[README] Remove the "maintainer(s) wanted" notice ([`bc6ce04`](https://github.com/python-gitlab/python-gitlab/commit/bc6ce047959a57e58e8260b41556f29b3da27da4))
|
@@ -9149,17 +9315,7 @@ Use the pythongitlab/test-python-gitlab docker image for tests ([`742243f`](http
|
|
9149
9315
|
|
9150
9316
|
Closes #596 ([`f51fa19`](https://github.com/python-gitlab/python-gitlab/commit/f51fa19dc4f78d036f18217436add00b7d94c39d))
|
9151
9317
|
|
9152
|
-
*
|
9153
|
-
|
9154
|
-
Closes #595 ([`f7fbfca`](https://github.com/python-gitlab/python-gitlab/commit/f7fbfca7e6a32a31dbf7ca8e1d4f83b34b7ac9db))
|
9155
|
-
|
9156
|
-
* Use the pythongitlab/test-python-gitlab docker image for tests
|
9157
|
-
|
9158
|
-
This images is updated to the latest GitLab CE.
|
9159
|
-
|
9160
|
-
Fix the diff() test to match the change in the API output. ([`2c6c929`](https://github.com/python-gitlab/python-gitlab/commit/2c6c929f78dfda92d5ae93235bb9065d289a68cc))
|
9161
|
-
|
9162
|
-
* Merge pull request #620 from bittner/patch-1
|
9318
|
+
* Merge pull request #620 from bittner/patch-1
|
9163
9319
|
|
9164
9320
|
Add Gitter badge to README ([`74623cf`](https://github.com/python-gitlab/python-gitlab/commit/74623cf38d20fe93183cd3721b751796019ab98c))
|
9165
9321
|
|
@@ -9378,6 +9534,8 @@ Fixes #526 ([`617aa64`](https://github.com/python-gitlab/python-gitlab/commit/61
|
|
9378
9534
|
|
9379
9535
|
make as_list=False work for all=True queries ([`a6512f9`](https://github.com/python-gitlab/python-gitlab/commit/a6512f9efcf50db1354bbd903526b78d8e766ae1))
|
9380
9536
|
|
9537
|
+
* make as_list work for all queries ([`8e78761`](https://github.com/python-gitlab/python-gitlab/commit/8e787612fa77dc945a4c1327e9faa6eee10c48f2))
|
9538
|
+
|
9381
9539
|
* Add support for issue links (EE)
|
9382
9540
|
|
9383
9541
|
Fixes #422 ([`8873eda`](https://github.com/python-gitlab/python-gitlab/commit/8873edaeebd18d6b2ed08a8609c011ad29249b48))
|
@@ -9392,6 +9550,8 @@ Fixes #524 ([`39c8ad5`](https://github.com/python-gitlab/python-gitlab/commit/39
|
|
9392
9550
|
|
9393
9551
|
fix #521 change post_data default value to None ([`6dd8774`](https://github.com/python-gitlab/python-gitlab/commit/6dd8774e1fa62e6f29cd760509e0274f4205683f))
|
9394
9552
|
|
9553
|
+
* fix #521 change post_data default value to None ([`d4c1a8c`](https://github.com/python-gitlab/python-gitlab/commit/d4c1a8ce8f0b0a9d60922e22cdc044343fe24cd3))
|
9554
|
+
|
9395
9555
|
* Add basic testing forr EE endpoints
|
9396
9556
|
|
9397
9557
|
Today we don't have a solution for easily deploying an EE instance so
|
@@ -9402,10 +9562,6 @@ private EE instance. ([`c88333b`](https://github.com/python-gitlab/python-gitlab
|
|
9402
9562
|
|
9403
9563
|
* Add support for project-level MR approval configuration ([`473dc6f`](https://github.com/python-gitlab/python-gitlab/commit/473dc6f50d27b2e5349bb2e7c8bc07b48e9834d1))
|
9404
9564
|
|
9405
|
-
* fix #521 change post_data default value to None ([`d4c1a8c`](https://github.com/python-gitlab/python-gitlab/commit/d4c1a8ce8f0b0a9d60922e22cdc044343fe24cd3))
|
9406
|
-
|
9407
|
-
* make as_list work for all queries ([`8e78761`](https://github.com/python-gitlab/python-gitlab/commit/8e787612fa77dc945a4c1327e9faa6eee10c48f2))
|
9408
|
-
|
9409
9565
|
* Merge pull request #519 from jouve/silence
|
9410
9566
|
|
9411
9567
|
silence logs/warnings in unittests ([`bbefb99`](https://github.com/python-gitlab/python-gitlab/commit/bbefb9936a18909d28d0f81b6ce99d4981ab8148))
|
@@ -9450,6 +9606,8 @@ Fixes #469 ([`9412a5d`](https://github.com/python-gitlab/python-gitlab/commit/94
|
|
9450
9606
|
|
9451
9607
|
Add support for Project badges ([`01a41ef`](https://github.com/python-gitlab/python-gitlab/commit/01a41efd271dd08d4b5744473fb71a67d9f5dea5))
|
9452
9608
|
|
9609
|
+
* Add support for Project badges ([`e00cad4`](https://github.com/python-gitlab/python-gitlab/commit/e00cad4f73c43d28799ec6e79e32fd03e58e79b4))
|
9610
|
+
|
9453
9611
|
* Add support for the gitlab CI lint API ([`40b9f4d`](https://github.com/python-gitlab/python-gitlab/commit/40b9f4d62d5b9853bfd63317d8ad578b4525e665))
|
9454
9612
|
|
9455
9613
|
* Update the settings attributes ([`0cc9828`](https://github.com/python-gitlab/python-gitlab/commit/0cc9828fda25531a57010cb310f23d3c185e63a6))
|
@@ -9498,8 +9656,6 @@ Testing will be enable when GitLab 11.0 is available. ([`9be50be`](https://githu
|
|
9498
9656
|
|
9499
9657
|
Add a new UserAgentDetail mixin to avoid code duplication. ([`7025743`](https://github.com/python-gitlab/python-gitlab/commit/70257438044b793a42adce791037b9b86ae35d9b))
|
9500
9658
|
|
9501
|
-
* Add support for Project badges ([`e00cad4`](https://github.com/python-gitlab/python-gitlab/commit/e00cad4f73c43d28799ec6e79e32fd03e58e79b4))
|
9502
|
-
|
9503
9659
|
* Add support for merged branches deletion ([`590ea0d`](https://github.com/python-gitlab/python-gitlab/commit/590ea0da7e5617c42e705c62370d6e94ff46ea74))
|
9504
9660
|
|
9505
9661
|
* Add support for the discussions API
|
@@ -9595,12 +9751,14 @@ Fixes #491 ([`037585c`](https://github.com/python-gitlab/python-gitlab/commit/03
|
|
9595
9751
|
|
9596
9752
|
Change method for getting content of snippet ([`85f2388`](https://github.com/python-gitlab/python-gitlab/commit/85f238846071724c9323df06fdc757de2b453608))
|
9597
9753
|
|
9754
|
+
* Add API v3 example ([`5c16c8d`](https://github.com/python-gitlab/python-gitlab/commit/5c16c8d03c39d4b6d87490a36102cdd4d2ad2160))
|
9755
|
+
|
9756
|
+
* Change method for getting content of snippet ([`505c749`](https://github.com/python-gitlab/python-gitlab/commit/505c74907fca52d315b273033e3d62643623425b))
|
9757
|
+
|
9598
9758
|
* Fix URL encoding on branch methods
|
9599
9759
|
|
9600
9760
|
Fixes #493 ([`736fece`](https://github.com/python-gitlab/python-gitlab/commit/736fece2219658ff446ea31ee3c03dfe18ecaacb))
|
9601
9761
|
|
9602
|
-
* Add API v3 example ([`5c16c8d`](https://github.com/python-gitlab/python-gitlab/commit/5c16c8d03c39d4b6d87490a36102cdd4d2ad2160))
|
9603
|
-
|
9604
9762
|
* Merge pull request #488 from siemens/feat/rate-limit
|
9605
9763
|
|
9606
9764
|
feat: obey the rate limit ([`86a8251`](https://github.com/python-gitlab/python-gitlab/commit/86a825143fdae82d231c2c3589d81b26c8c3ab81))
|
@@ -9613,8 +9771,6 @@ This reverts commit 32b399af0e506b38a10a2c625338848a03f0b35d. ([`25ed8e7`](https
|
|
9613
9771
|
|
9614
9772
|
Update projects.py documentation ([`2b9ae5c`](https://github.com/python-gitlab/python-gitlab/commit/2b9ae5ce1664b97414152dfb1acb50fbcd05f95e))
|
9615
9773
|
|
9616
|
-
* Change method for getting content of snippet ([`505c749`](https://github.com/python-gitlab/python-gitlab/commit/505c74907fca52d315b273033e3d62643623425b))
|
9617
|
-
|
9618
9774
|
* Update projects.py
|
9619
9775
|
|
9620
9776
|
Add missing attributes to file.create in order to make it work. ([`629b1e1`](https://github.com/python-gitlab/python-gitlab/commit/629b1e1c9488cea4bf853a42622dd7f182ee47ed))
|
@@ -9754,22 +9910,32 @@ Add documentation about labels update ([`0cbd9c6`](https://github.com/python-git
|
|
9754
9910
|
|
9755
9911
|
* Merge branch 'mlq-feature/pipeline-schedules' ([`39a0429`](https://github.com/python-gitlab/python-gitlab/commit/39a04297d2661f82980f1b1921a3aba1ab1feb32))
|
9756
9912
|
|
9913
|
+
* Update pipeline schedules code ([`6a87d38`](https://github.com/python-gitlab/python-gitlab/commit/6a87d38b0c5ffdfa9c78dcf5232ec78986010ce6))
|
9914
|
+
|
9915
|
+
* Project pipeline jobs ([`b861837`](https://github.com/python-gitlab/python-gitlab/commit/b861837b25bb45dbe40b035dff5f41898450e22b))
|
9916
|
+
|
9917
|
+
* Project pipeline schedules ([`34e32a0`](https://github.com/python-gitlab/python-gitlab/commit/34e32a0944b65583a57b97bf0124b8935ab49fa7))
|
9918
|
+
|
9757
9919
|
* Project pipeline jobs ([`fd726cd`](https://github.com/python-gitlab/python-gitlab/commit/fd726cdb61a78aafb780cae56a7909e7b648e4dc))
|
9758
9920
|
|
9759
9921
|
* Project pipeline schedules ([`31eb913`](https://github.com/python-gitlab/python-gitlab/commit/31eb913be34f8dea0c4b1f8396b74bb74b32a6f0))
|
9760
9922
|
|
9761
|
-
* Update pipeline schedules code ([`6a87d38`](https://github.com/python-gitlab/python-gitlab/commit/6a87d38b0c5ffdfa9c78dcf5232ec78986010ce6))
|
9762
|
-
|
9763
9923
|
* Merge pull request #420 from tardyp/patch-2
|
9764
9924
|
|
9765
9925
|
make trigger_pipeline return the pipeline ([`70c779c`](https://github.com/python-gitlab/python-gitlab/commit/70c779c4243d1807323cc1afc8cbc97918c3b8fc))
|
9766
9926
|
|
9927
|
+
* fix pep8 ([`8134f84`](https://github.com/python-gitlab/python-gitlab/commit/8134f84f96059dbde72359c414352e2dbe3535e0))
|
9928
|
+
|
9929
|
+
* make trigger_pipeline return the pipeline
|
9930
|
+
|
9931
|
+
Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
|
9932
|
+
|
9933
|
+
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))
|
9934
|
+
|
9767
9935
|
* Merge pull request #419 from tardyp/patch-1
|
9768
9936
|
|
9769
9937
|
Simplify the example for streamed artifacts ([`6ea7ab7`](https://github.com/python-gitlab/python-gitlab/commit/6ea7ab73eb6be20c4e8c092044bf0efe421ce4f5))
|
9770
9938
|
|
9771
|
-
* fix pep8 ([`8134f84`](https://github.com/python-gitlab/python-gitlab/commit/8134f84f96059dbde72359c414352e2dbe3535e0))
|
9772
|
-
|
9773
9939
|
* add a Simplified example for streamed artifacts
|
9774
9940
|
|
9775
9941
|
Going through an object adds a lot of complication.
|
@@ -9785,12 +9951,6 @@ Fixes #371 ([`b4f0317`](https://github.com/python-gitlab/python-gitlab/commit/b4
|
|
9785
9951
|
|
9786
9952
|
Fixes #421 ([`29bd813`](https://github.com/python-gitlab/python-gitlab/commit/29bd81336828b72a47673c76862cb4b532401766))
|
9787
9953
|
|
9788
|
-
* make trigger_pipeline return the pipeline
|
9789
|
-
|
9790
|
-
Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
|
9791
|
-
|
9792
|
-
Next PR will be about updating a pipeline object to get latest status (not sure yet the best way to do it) ([`72ade19`](https://github.com/python-gitlab/python-gitlab/commit/72ade19046f47b35c1b5ad7333f11fee0dc1e56f))
|
9793
|
-
|
9794
9954
|
* Add Gitlab and User events support
|
9795
9955
|
|
9796
9956
|
Closes #412 ([`1ca3080`](https://github.com/python-gitlab/python-gitlab/commit/1ca30807566ca3ac1bd295516a122cd75ba9031f))
|
@@ -9817,14 +9977,14 @@ Fixes #416 ([`e957817`](https://github.com/python-gitlab/python-gitlab/commit/e9
|
|
9817
9977
|
|
9818
9978
|
Adding the supported version badge ([`5149651`](https://github.com/python-gitlab/python-gitlab/commit/5149651fb4d21dabfde012238abad470bb0aa9b5))
|
9819
9979
|
|
9980
|
+
* Adding the supported version badge ([`9253661`](https://github.com/python-gitlab/python-gitlab/commit/9253661c381e9298643e689074c00b7fae831955))
|
9981
|
+
|
9820
9982
|
* Merge pull request #409 from movermeyer/patch-2
|
9821
9983
|
|
9822
9984
|
Clarifying what compatible means ([`8a953c2`](https://github.com/python-gitlab/python-gitlab/commit/8a953c2d3ede2bdd672323621b4e72a5f660f6f5))
|
9823
9985
|
|
9824
9986
|
* Clarifying what supports means ([`b980c9f`](https://github.com/python-gitlab/python-gitlab/commit/b980c9f7db97f8d55ed50d116a1d9fcf817ebf0d))
|
9825
9987
|
|
9826
|
-
* Adding the supported version badge ([`9253661`](https://github.com/python-gitlab/python-gitlab/commit/9253661c381e9298643e689074c00b7fae831955))
|
9827
|
-
|
9828
9988
|
* Prepare v1.2.0 ([`3a119cd`](https://github.com/python-gitlab/python-gitlab/commit/3a119cd6a4841fae5b2f116512830ed12b4b29f0))
|
9829
9989
|
|
9830
9990
|
* Respect content of REQUESTS_CA_BUNDLE and *_proxy envvars
|
@@ -9924,33 +10084,29 @@ Fixes #361 ([`b33265c`](https://github.com/python-gitlab/python-gitlab/commit/b3
|
|
9924
10084
|
|
9925
10085
|
Expected HTTP response for subscribe is 201 ([`f624d2e`](https://github.com/python-gitlab/python-gitlab/commit/f624d2e642e4ebabb8d330595f3fe0fc9882add7))
|
9926
10086
|
|
10087
|
+
* Expected HTTP response for subscribe is 201
|
10088
|
+
|
10089
|
+
It seems that the GitLab API gives HTTP response code 201 ("created") when
|
10090
|
+
successfully subscribing to an object, not 200. ([`0d5f275`](https://github.com/python-gitlab/python-gitlab/commit/0d5f275d9b23d20da45ac675da10bfd428327a2f))
|
10091
|
+
|
9927
10092
|
* Merge pull request #374 from benjamb/typos
|
9928
10093
|
|
9929
10094
|
Fix typos in docs ([`8f3b656`](https://github.com/python-gitlab/python-gitlab/commit/8f3b656d007c95fa2fa99389aaf326a2eb998e16))
|
9930
10095
|
|
10096
|
+
* Fix typos in docs ([`7c886de`](https://github.com/python-gitlab/python-gitlab/commit/7c886dea5e9c42c88be01ef077532202cbad65ea))
|
10097
|
+
|
10098
|
+
* Fix link to settings API ([`be386b8`](https://github.com/python-gitlab/python-gitlab/commit/be386b81049e84a4b9a0daeb6cbba15ddb4b041e))
|
10099
|
+
|
9931
10100
|
* Update pagination docs for ProjectCommit
|
9932
10101
|
|
9933
10102
|
In v3 pagination starts at page 0 instead of page 1.
|
9934
10103
|
|
9935
10104
|
Fixes: #377 ([`c6c0686`](https://github.com/python-gitlab/python-gitlab/commit/c6c068629273393eaf4f7063e1e01c5f0528c4ec))
|
9936
10105
|
|
9937
|
-
* Expected HTTP response for subscribe is 201
|
9938
|
-
|
9939
|
-
It seems that the GitLab API gives HTTP response code 201 ("created") when
|
9940
|
-
successfully subscribing to an object, not 200. ([`0d5f275`](https://github.com/python-gitlab/python-gitlab/commit/0d5f275d9b23d20da45ac675da10bfd428327a2f))
|
9941
|
-
|
9942
|
-
* Fix typos in docs ([`7c886de`](https://github.com/python-gitlab/python-gitlab/commit/7c886dea5e9c42c88be01ef077532202cbad65ea))
|
9943
|
-
|
9944
|
-
* Fix link to settings API ([`be386b8`](https://github.com/python-gitlab/python-gitlab/commit/be386b81049e84a4b9a0daeb6cbba15ddb4b041e))
|
9945
|
-
|
9946
10106
|
* Revert "Add unit tests for mixin exceptions"
|
9947
10107
|
|
9948
10108
|
This reverts commit 4ee139ad5c58006da1f9af93fdd4e70592e6daa0. ([`084b905`](https://github.com/python-gitlab/python-gitlab/commit/084b905f78046d894fc76d3ad545689312b94bb8))
|
9949
10109
|
|
9950
|
-
* Project pipeline jobs ([`b861837`](https://github.com/python-gitlab/python-gitlab/commit/b861837b25bb45dbe40b035dff5f41898450e22b))
|
9951
|
-
|
9952
|
-
* Project pipeline schedules ([`34e32a0`](https://github.com/python-gitlab/python-gitlab/commit/34e32a0944b65583a57b97bf0124b8935ab49fa7))
|
9953
|
-
|
9954
10110
|
* Add support for project housekeeping
|
9955
10111
|
|
9956
10112
|
Closes #368 ([`9ede652`](https://github.com/python-gitlab/python-gitlab/commit/9ede6529884e850532758ae218465c1b7584c2d4))
|
@@ -10012,6 +10168,8 @@ Add docs and unit tests ([`e9b1583`](https://github.com/python-gitlab/python-git
|
|
10012
10168
|
|
10013
10169
|
Add mattermost service support ([`82897b7`](https://github.com/python-gitlab/python-gitlab/commit/82897b7c0461f069f5067de3ebf787466a6c4486))
|
10014
10170
|
|
10171
|
+
* Add mattermost service support ([`b5e6a46`](https://github.com/python-gitlab/python-gitlab/commit/b5e6a469e7e299dfa09bac730daee48432454075))
|
10172
|
+
|
10015
10173
|
* Add users custome attributes support ([`4fb2e43`](https://github.com/python-gitlab/python-gitlab/commit/4fb2e439803bd55868b91827a5fbaa448f1dff56))
|
10016
10174
|
|
10017
10175
|
* 1.1.0 release ([`32f7e17`](https://github.com/python-gitlab/python-gitlab/commit/32f7e17208987fa345670421c333e22ae6aced6a))
|
@@ -10102,8 +10260,6 @@ so let's drop the _constructor_types definitions. ([`32ea62a`](https://githu
|
|
10102
10260
|
|
10103
10261
|
Fixes #343 ([`dc504ab`](https://github.com/python-gitlab/python-gitlab/commit/dc504ab815cc9ad74a6a6beaf6faa88a5d99c293))
|
10104
10262
|
|
10105
|
-
* Add mattermost service support ([`b5e6a46`](https://github.com/python-gitlab/python-gitlab/commit/b5e6a469e7e299dfa09bac730daee48432454075))
|
10106
|
-
|
10107
10263
|
* ProjectFileManager.create: handle / in file paths
|
10108
10264
|
|
10109
10265
|
Replace / with %2F as is done in other methods.
|
@@ -10309,14 +10465,14 @@ Support SSL verification via internal CA bundle ([`0e70dd9`](https://github.com/
|
|
10309
10465
|
|
10310
10466
|
Docs: Add link to gitlab docs on obtaining a token ([`657f011`](https://github.com/python-gitlab/python-gitlab/commit/657f0119a3e13ceb07e4d0b17fa126260a4dafc7))
|
10311
10467
|
|
10312
|
-
* update tox/travis test envs ([`759f6ed`](https://github.com/python-gitlab/python-gitlab/commit/759f6edaf71b456cc36e9de00157385c28e2e3e7))
|
10313
|
-
|
10314
|
-
* Merge branch 'rework_api' ([`3ccdec0`](https://github.com/python-gitlab/python-gitlab/commit/3ccdec04525456c906f26ee2e931607a5d0dcd20))
|
10315
|
-
|
10316
10468
|
* Docs: Add link to gitlab docs on obtaining a token
|
10317
10469
|
|
10318
10470
|
I find these sort of links very user friendly 😅 ([`9b8b806`](https://github.com/python-gitlab/python-gitlab/commit/9b8b8060a56465d8aade2368033172387e15527a))
|
10319
10471
|
|
10472
|
+
* update tox/travis test envs ([`759f6ed`](https://github.com/python-gitlab/python-gitlab/commit/759f6edaf71b456cc36e9de00157385c28e2e3e7))
|
10473
|
+
|
10474
|
+
* Merge branch 'rework_api' ([`3ccdec0`](https://github.com/python-gitlab/python-gitlab/commit/3ccdec04525456c906f26ee2e931607a5d0dcd20))
|
10475
|
+
|
10320
10476
|
* Make the project services work in v4 ([`2816c1a`](https://github.com/python-gitlab/python-gitlab/commit/2816c1ae51b01214012679b74aa14de1a6696eb5))
|
10321
10477
|
|
10322
10478
|
* Fix v3 tests ([`eee39a3`](https://github.com/python-gitlab/python-gitlab/commit/eee39a3a5f1ef3bccc45b0f23009531a9bf76801))
|
@@ -10343,42 +10499,12 @@ Match the exceptions raised in v3 for v4.
|
|
10343
10499
|
|
10344
10500
|
Also update the doc strings with correct information. ([`c15ba3b`](https://github.com/python-gitlab/python-gitlab/commit/c15ba3b61065973da983ff792a34268a3ba75e12))
|
10345
10501
|
|
10346
|
-
* Merge pull request #282 from velvetz7/docs_typo
|
10347
|
-
|
10348
|
-
Fixed repository_compare examples ([`e87835f`](https://github.com/python-gitlab/python-gitlab/commit/e87835fe02aeb174c1b0355a1733733d89b2e404))
|
10349
|
-
|
10350
|
-
* Changed attribution reference ([`73be8f9`](https://github.com/python-gitlab/python-gitlab/commit/73be8f9a64b8a8db39f1a9d39b7bd677e1c68b0a))
|
10351
|
-
|
10352
10502
|
* Fix merge_when_build_succeeds attribute name
|
10353
10503
|
|
10354
10504
|
Fixes #285 ([`374a6c4`](https://github.com/python-gitlab/python-gitlab/commit/374a6c4544931a564221cccabb6abbda9e6bc558))
|
10355
10505
|
|
10356
|
-
* Fix merge_when_build_succeeds attribute name
|
10357
|
-
|
10358
|
-
Fixes #285 ([`67d9a89`](https://github.com/python-gitlab/python-gitlab/commit/67d9a8989b76af25fca1b5f0f82c4af5e81332eb))
|
10359
|
-
|
10360
10506
|
* Merge branch 'master' into rework_api ([`274b3bf`](https://github.com/python-gitlab/python-gitlab/commit/274b3bffc3365eca2fd3fa10c1e7e9b49990533e))
|
10361
10507
|
|
10362
|
-
* Merge pull request #286 from jonafato/python3.6
|
10363
|
-
|
10364
|
-
Declare support for Python 3.6 ([`cb8c1a1`](https://github.com/python-gitlab/python-gitlab/commit/cb8c1a198276cc6aa2a3ddbf52bcc3866418e9fd))
|
10365
|
-
|
10366
|
-
* Merge pull request #287 from guyzmo/features/dependency_injection
|
10367
|
-
|
10368
|
-
Added dependency injection support for Session ([`46b7f48`](https://github.com/python-gitlab/python-gitlab/commit/46b7f488c3dcd6f2e975f69fe1a378b920721b87))
|
10369
|
-
|
10370
|
-
* Added dependency injection support for Session
|
10371
|
-
|
10372
|
-
fixes #280
|
10373
|
-
|
10374
|
-
Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net> ([`116e3d4`](https://github.com/python-gitlab/python-gitlab/commit/116e3d42c9e94c6d23128533da6c25920ff04d0f))
|
10375
|
-
|
10376
|
-
* Declare support for Python 3.6
|
10377
|
-
|
10378
|
-
Add Python 3.6 environments to `tox.ini` and `.travis.yml`. ([`4c916b8`](https://github.com/python-gitlab/python-gitlab/commit/4c916b893e84993369d06dee5523cd00ea6b626a))
|
10379
|
-
|
10380
|
-
* fixed repository_compare examples ([`261db17`](https://github.com/python-gitlab/python-gitlab/commit/261db178f2e91b68f45a6535009367b56af75769))
|
10381
|
-
|
10382
10508
|
* remove useless attributes ([`fe3a06c`](https://github.com/python-gitlab/python-gitlab/commit/fe3a06c2a6a9776c22ff9120c99b3654e02e5e50))
|
10383
10509
|
|
10384
10510
|
* Refactor the CLI
|
@@ -10396,20 +10522,12 @@ For now v4 isn't working at all. ([`e3d50b5`](https://github.com/python-gitl
|
|
10396
10522
|
|
10397
10523
|
* Fix GroupProject constructor ([`afe4b05`](https://github.com/python-gitlab/python-gitlab/commit/afe4b05de9833d450b9bb52f572be5663d8f4dd7))
|
10398
10524
|
|
10399
|
-
* Merge pull request #276 from elisarver/patch-1
|
10400
|
-
|
10401
|
-
Missing expires_at in GroupMembers update ([`f19681f`](https://github.com/python-gitlab/python-gitlab/commit/f19681fc0d1aeb36f56c9c7f07aac83915a59497))
|
10402
|
-
|
10403
10525
|
* minor doc updates ([`6e5a6ec`](https://github.com/python-gitlab/python-gitlab/commit/6e5a6ec1f7c2993697c359b2bcab0e1324e219bc))
|
10404
10526
|
|
10405
10527
|
* Fix changelog and release notes inclusion in sdist ([`1922cd5`](https://github.com/python-gitlab/python-gitlab/commit/1922cd5d9b182902586170927acb758f8a6f614c))
|
10406
10528
|
|
10407
10529
|
* Rework documentation ([`1a7f672`](https://github.com/python-gitlab/python-gitlab/commit/1a7f67274c9175f46a76c5ae0d8bde7ca2731014))
|
10408
10530
|
|
10409
|
-
* Missing expires_at in GroupMembers update
|
10410
|
-
|
10411
|
-
CreateAttrs was set twice in GroupMember due to possible copy-paste error. ([`d41e972`](https://github.com/python-gitlab/python-gitlab/commit/d41e9728c0f583e031313419bcf998bfdfb8688a))
|
10412
|
-
|
10413
10531
|
* Remove unused future.division import
|
10414
10532
|
|
10415
10533
|
We don't do math. ([`2a0afc5`](https://github.com/python-gitlab/python-gitlab/commit/2a0afc50311c727ee3bef700553fb60924439ef4))
|
@@ -10422,8 +10540,6 @@ We don't do math. ([`2a0afc5`](https://github.com/python-gitlab/python-gitla
|
|
10422
10540
|
|
10423
10541
|
* 0.10 is old history: remove the upgrade doc ([`76e9b12`](https://github.com/python-gitlab/python-gitlab/commit/76e9b1211fd23a3565ab00be0b169d782a14dca7))
|
10424
10542
|
|
10425
|
-
* 0.21.2 release ([`19f1b1a`](https://github.com/python-gitlab/python-gitlab/commit/19f1b1a968aba7bd9604511c015e8930e5111324))
|
10426
|
-
|
10427
10543
|
* Add laziness to get()
|
10428
10544
|
|
10429
10545
|
The goal is to create empty objects (no API called) but give access to
|
@@ -10442,16 +10558,8 @@ gl.project_issue_notes) ([`61fba84`](https://github.com/python-gitlab/python-git
|
|
10442
10558
|
|
10443
10559
|
* Add new event types to ProjectHook ([`a0f215c`](https://github.com/python-gitlab/python-gitlab/commit/a0f215c2deb16ce5d9e96de5b36e4f360ac1b168))
|
10444
10560
|
|
10445
|
-
* Merge pull request #272 from astronouth7303/patch-1
|
10446
|
-
|
10447
|
-
Add new event types to ProjectHook ([`4ce2794`](https://github.com/python-gitlab/python-gitlab/commit/4ce2794b284647283c861d28f77a6d63ba809bc9))
|
10448
|
-
|
10449
10561
|
* Fix a few remaining methods ([`3488c5c`](https://github.com/python-gitlab/python-gitlab/commit/3488c5cf137b0dbe6e96a4412698bafaaa640143))
|
10450
10562
|
|
10451
|
-
* Add new event types to ProjectHook
|
10452
|
-
|
10453
|
-
These are being returned in the live API, but can't set them. ([`1a58f7e`](https://github.com/python-gitlab/python-gitlab/commit/1a58f7e522bb4784e2127582b2d46d6991a8f2a9))
|
10454
|
-
|
10455
10563
|
* tests for objects mixins ([`68f4114`](https://github.com/python-gitlab/python-gitlab/commit/68f411478f0d693f7d37436a9280847cb610a15b))
|
10456
10564
|
|
10457
10565
|
* Add tests for managers mixins ([`b776c5e`](https://github.com/python-gitlab/python-gitlab/commit/b776c5ee66a84f89acd4126ea729c77196e07f66))
|
@@ -10464,30 +10572,28 @@ These are being returned in the live API, but can't set them. ([`1a58f7e`](h
|
|
10464
10572
|
|
10465
10573
|
* Merge branch 'rework_api' of github.com:python-gitlab/python-gitlab into rework_api ([`a5b39a5`](https://github.com/python-gitlab/python-gitlab/commit/a5b39a526035c1868a39f0533f019e5e24eeb4db))
|
10466
10574
|
|
10467
|
-
*
|
10468
|
-
|
10469
|
-
* Tests and fixes for the http_* methods ([`ff82c88`](https://github.com/python-gitlab/python-gitlab/commit/ff82c88df5794dbf0020989cfc52412cefc4c176))
|
10575
|
+
* Tests and fixes for the http_* methods ([`904c9fa`](https://github.com/python-gitlab/python-gitlab/commit/904c9fadaa892cb4a2dbd12e564841281aa86c51))
|
10470
10576
|
|
10471
|
-
* make the tests pass ([`
|
10577
|
+
* make the tests pass ([`d0a9334`](https://github.com/python-gitlab/python-gitlab/commit/d0a933404f4acec28956e1f07e9dcc3261fae87e))
|
10472
10578
|
|
10473
10579
|
* Migrate all v4 objects to new API
|
10474
10580
|
|
10475
10581
|
Some things are probably broken. Next step is writting unit and
|
10476
10582
|
functional tests.
|
10477
10583
|
|
10478
|
-
And fix. ([`
|
10584
|
+
And fix. ([`6be990c`](https://github.com/python-gitlab/python-gitlab/commit/6be990cef8725eca6954e9098f83ff8f4ad202a8))
|
10479
10585
|
|
10480
|
-
* Simplify SidekiqManager ([`
|
10586
|
+
* Simplify SidekiqManager ([`230b567`](https://github.com/python-gitlab/python-gitlab/commit/230b5679ee083dc8a5f3a8deb0bef2dab0fe12d6))
|
10481
10587
|
|
10482
|
-
* New API: handle gl.auth() and CurrentUser* classes ([`
|
10588
|
+
* New API: handle gl.auth() and CurrentUser* classes ([`7193034`](https://github.com/python-gitlab/python-gitlab/commit/71930345be5b7a1a89f7f823a563cb6cd4bd790b))
|
10483
10589
|
|
10484
10590
|
* Add support for managers in objects for new API
|
10485
10591
|
|
10486
|
-
Convert User* to the new REST* API. ([`
|
10592
|
+
Convert User* to the new REST* API. ([`5319d0d`](https://github.com/python-gitlab/python-gitlab/commit/5319d0de2fa13e6ed7c65b4d8e9dc26ccb6f18eb))
|
10487
10593
|
|
10488
|
-
* pep8 ([`
|
10594
|
+
* pep8 ([`29cb0e4`](https://github.com/python-gitlab/python-gitlab/commit/29cb0e42116ad066e6aabb39362785fd61c65924))
|
10489
10595
|
|
10490
|
-
* Move the mixins in their own module ([`
|
10596
|
+
* Move the mixins in their own module ([`0748c89`](https://github.com/python-gitlab/python-gitlab/commit/0748c8993f0afa6ca89836601a19c7aeeaaf8397))
|
10491
10597
|
|
10492
10598
|
* Rework the manager and object classes
|
10493
10599
|
|
@@ -10501,9 +10607,9 @@ Both ways (old and new) can be used together, migrate only a few v4
|
|
10501
10607
|
objects to the new method as a POC.
|
10502
10608
|
|
10503
10609
|
TODO: handle managers on generated objects (have to deal with attributes
|
10504
|
-
in the URLs). ([`
|
10610
|
+
in the URLs). ([`29e0bae`](https://github.com/python-gitlab/python-gitlab/commit/29e0baee39728472abd6b67822b04518c3985d97))
|
10505
10611
|
|
10506
|
-
* pep8 again ([`
|
10612
|
+
* pep8 again ([`b7298de`](https://github.com/python-gitlab/python-gitlab/commit/b7298dea19f37d3ae0dfb3e233f3bc7cf5bda10d))
|
10507
10613
|
|
10508
10614
|
* Add lower-level methods for Gitlab()
|
10509
10615
|
|
@@ -10515,36 +10621,30 @@ Multiple goals:
|
|
10515
10621
|
gitlab server.
|
10516
10622
|
* With this the objects gain control on how they should do requests.
|
10517
10623
|
The complexities of dealing with object specifics will be moved in the
|
10518
|
-
object classes where they belong. ([`
|
10519
|
-
|
10520
|
-
* import urlencode() from six.moves.urllib.parse instead of from urllib (#268)
|
10521
|
-
|
10522
|
-
Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
|
10523
|
-
|
10524
|
-
`six.moves.urllib.parse.urlencode()` is an py2.py3 compatible alias of `urllib.parse.urlencode()` on Python 3, and of `urllib.urlencode()` on Python 2. ([`88900e0`](https://github.com/python-gitlab/python-gitlab/commit/88900e06761794442716c115229bd1f780cfbcef))
|
10624
|
+
object classes where they belong. ([`7ddbd5e`](https://github.com/python-gitlab/python-gitlab/commit/7ddbd5e5e124be1d93fbc77da7229fc80062b35f))
|
10525
10625
|
|
10526
|
-
* Tests and fixes for the http_* methods ([`
|
10626
|
+
* Tests and fixes for the http_* methods ([`ff82c88`](https://github.com/python-gitlab/python-gitlab/commit/ff82c88df5794dbf0020989cfc52412cefc4c176))
|
10527
10627
|
|
10528
|
-
* make the tests pass ([`
|
10628
|
+
* make the tests pass ([`f754f21`](https://github.com/python-gitlab/python-gitlab/commit/f754f21dd9138142b923cf3b919187a4638b674a))
|
10529
10629
|
|
10530
10630
|
* Migrate all v4 objects to new API
|
10531
10631
|
|
10532
10632
|
Some things are probably broken. Next step is writting unit and
|
10533
10633
|
functional tests.
|
10534
10634
|
|
10535
|
-
And fix. ([`
|
10635
|
+
And fix. ([`f418767`](https://github.com/python-gitlab/python-gitlab/commit/f418767ec94c430aabd132d189d1c5e9e2370e68))
|
10536
10636
|
|
10537
|
-
* Simplify SidekiqManager ([`
|
10637
|
+
* Simplify SidekiqManager ([`0467f77`](https://github.com/python-gitlab/python-gitlab/commit/0467f779eb1d2649f3626e3817531511d3397038))
|
10538
10638
|
|
10539
|
-
* New API: handle gl.auth() and CurrentUser* classes ([`
|
10639
|
+
* New API: handle gl.auth() and CurrentUser* classes ([`a1c9e2b`](https://github.com/python-gitlab/python-gitlab/commit/a1c9e2bce1d0df0eff0468fabad4919d0565f09f))
|
10540
10640
|
|
10541
10641
|
* Add support for managers in objects for new API
|
10542
10642
|
|
10543
|
-
Convert User* to the new REST* API. ([`
|
10643
|
+
Convert User* to the new REST* API. ([`a506902`](https://github.com/python-gitlab/python-gitlab/commit/a50690288f9c03ec37ff374839d1f465c74ecf0a))
|
10544
10644
|
|
10545
|
-
* pep8 ([`
|
10645
|
+
* pep8 ([`9fbdb94`](https://github.com/python-gitlab/python-gitlab/commit/9fbdb9461a660181a3a268cd398865cafd0b4a89))
|
10546
10646
|
|
10547
|
-
* Move the mixins in their own module ([`
|
10647
|
+
* Move the mixins in their own module ([`fb5782e`](https://github.com/python-gitlab/python-gitlab/commit/fb5782e691a11aad35e57f55af139ec4b951a225))
|
10548
10648
|
|
10549
10649
|
* Rework the manager and object classes
|
10550
10650
|
|
@@ -10558,9 +10658,9 @@ Both ways (old and new) can be used together, migrate only a few v4
|
|
10558
10658
|
objects to the new method as a POC.
|
10559
10659
|
|
10560
10660
|
TODO: handle managers on generated objects (have to deal with attributes
|
10561
|
-
in the URLs). ([`
|
10661
|
+
in the URLs). ([`993d576`](https://github.com/python-gitlab/python-gitlab/commit/993d576ba794a29aacd56a7610e79a331789773d))
|
10562
10662
|
|
10563
|
-
* pep8 again ([`
|
10663
|
+
* pep8 again ([`d809fef`](https://github.com/python-gitlab/python-gitlab/commit/d809fefaf5b382f13f8f9da344320741e553ced1))
|
10564
10664
|
|
10565
10665
|
* Add lower-level methods for Gitlab()
|
10566
10666
|
|
@@ -10572,7 +10672,63 @@ Multiple goals:
|
|
10572
10672
|
gitlab server.
|
10573
10673
|
* With this the objects gain control on how they should do requests.
|
10574
10674
|
The complexities of dealing with object specifics will be moved in the
|
10575
|
-
object classes where they belong. ([`
|
10675
|
+
object classes where they belong. ([`c5ad540`](https://github.com/python-gitlab/python-gitlab/commit/c5ad54062ad767c0d2882f64381ad15c034e8872))
|
10676
|
+
|
10677
|
+
* Merge pull request #282 from velvetz7/docs_typo
|
10678
|
+
|
10679
|
+
Fixed repository_compare examples ([`e87835f`](https://github.com/python-gitlab/python-gitlab/commit/e87835fe02aeb174c1b0355a1733733d89b2e404))
|
10680
|
+
|
10681
|
+
* Changed attribution reference ([`73be8f9`](https://github.com/python-gitlab/python-gitlab/commit/73be8f9a64b8a8db39f1a9d39b7bd677e1c68b0a))
|
10682
|
+
|
10683
|
+
* fixed repository_compare examples ([`261db17`](https://github.com/python-gitlab/python-gitlab/commit/261db178f2e91b68f45a6535009367b56af75769))
|
10684
|
+
|
10685
|
+
* Fix merge_when_build_succeeds attribute name
|
10686
|
+
|
10687
|
+
Fixes #285 ([`67d9a89`](https://github.com/python-gitlab/python-gitlab/commit/67d9a8989b76af25fca1b5f0f82c4af5e81332eb))
|
10688
|
+
|
10689
|
+
* Merge pull request #286 from jonafato/python3.6
|
10690
|
+
|
10691
|
+
Declare support for Python 3.6 ([`cb8c1a1`](https://github.com/python-gitlab/python-gitlab/commit/cb8c1a198276cc6aa2a3ddbf52bcc3866418e9fd))
|
10692
|
+
|
10693
|
+
* Declare support for Python 3.6
|
10694
|
+
|
10695
|
+
Add Python 3.6 environments to `tox.ini` and `.travis.yml`. ([`4c916b8`](https://github.com/python-gitlab/python-gitlab/commit/4c916b893e84993369d06dee5523cd00ea6b626a))
|
10696
|
+
|
10697
|
+
* Merge pull request #287 from guyzmo/features/dependency_injection
|
10698
|
+
|
10699
|
+
Added dependency injection support for Session ([`46b7f48`](https://github.com/python-gitlab/python-gitlab/commit/46b7f488c3dcd6f2e975f69fe1a378b920721b87))
|
10700
|
+
|
10701
|
+
* Added dependency injection support for Session
|
10702
|
+
|
10703
|
+
fixes #280
|
10704
|
+
|
10705
|
+
Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net> ([`116e3d4`](https://github.com/python-gitlab/python-gitlab/commit/116e3d42c9e94c6d23128533da6c25920ff04d0f))
|
10706
|
+
|
10707
|
+
* Merge pull request #276 from elisarver/patch-1
|
10708
|
+
|
10709
|
+
Missing expires_at in GroupMembers update ([`f19681f`](https://github.com/python-gitlab/python-gitlab/commit/f19681fc0d1aeb36f56c9c7f07aac83915a59497))
|
10710
|
+
|
10711
|
+
* Missing expires_at in GroupMembers update
|
10712
|
+
|
10713
|
+
CreateAttrs was set twice in GroupMember due to possible copy-paste error. ([`d41e972`](https://github.com/python-gitlab/python-gitlab/commit/d41e9728c0f583e031313419bcf998bfdfb8688a))
|
10714
|
+
|
10715
|
+
* 0.21.2 release ([`19f1b1a`](https://github.com/python-gitlab/python-gitlab/commit/19f1b1a968aba7bd9604511c015e8930e5111324))
|
10716
|
+
|
10717
|
+
* Merge pull request #272 from astronouth7303/patch-1
|
10718
|
+
|
10719
|
+
Add new event types to ProjectHook ([`4ce2794`](https://github.com/python-gitlab/python-gitlab/commit/4ce2794b284647283c861d28f77a6d63ba809bc9))
|
10720
|
+
|
10721
|
+
* Add new event types to ProjectHook
|
10722
|
+
|
10723
|
+
These are being returned in the live API, but can't set them. ([`1a58f7e`](https://github.com/python-gitlab/python-gitlab/commit/1a58f7e522bb4784e2127582b2d46d6991a8f2a9))
|
10724
|
+
|
10725
|
+
* Fixed spelling mistake (#269) ([`2b1e0f0`](https://github.com/python-gitlab/python-gitlab/commit/2b1e0f0041ae04134d38a5db47cc301aa757d7ea))
|
10726
|
+
|
10727
|
+
* import urlencode() from six.moves.urllib.parse instead of from urllib (#268)
|
10728
|
+
|
10729
|
+
Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
|
10730
|
+
|
10731
|
+
`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))
|
10576
10732
|
|
10577
10733
|
* Prepare for v4 API testing ([`38bff3e`](https://github.com/python-gitlab/python-gitlab/commit/38bff3eb43ee6526b3e3b35c8207fac9ef9bc9d9))
|
10578
10734
|
|
@@ -10638,14 +10794,6 @@ Fixes #267 ([`a3b8858`](https://github.com/python-gitlab/python-gitlab/commit/a3
|
|
10638
10794
|
|
10639
10795
|
* [v4] Remove deprecated objects methods and classes ([`8e4b65f`](https://github.com/python-gitlab/python-gitlab/commit/8e4b65fc78f47a2be658b11ae30f84da66b13c2a))
|
10640
10796
|
|
10641
|
-
* Deprecate parameter related methods in gitlab.Gitlab
|
10642
|
-
|
10643
|
-
These methods change the auth information and URL, and might have some
|
10644
|
-
unwanted side effects.
|
10645
|
-
|
10646
|
-
Users should create a new Gitlab instance to change the URL and
|
10647
|
-
authentication information. ([`7ac1e4c`](https://github.com/python-gitlab/python-gitlab/commit/7ac1e4c1fe4ccff8c8ee4a9ae212a227d5499bce))
|
10648
|
-
|
10649
10797
|
* pop8 fixes ([`441244b`](https://github.com/python-gitlab/python-gitlab/commit/441244b8d91ac0674195dbb2151570712d234d15))
|
10650
10798
|
|
10651
10799
|
* [v4] Users confirm attribute renamed skip_confirmation ([`cd98903`](https://github.com/python-gitlab/python-gitlab/commit/cd98903d6c1a2cbf21d533d6d6d4ea58917930b1))
|
@@ -10725,6 +10873,14 @@ some code duplication, but it should be maintainable. ([`e853a30`](https://githu
|
|
10725
10873
|
|
10726
10874
|
* Initial, non-functional v4 support ([`c02dabd`](https://github.com/python-gitlab/python-gitlab/commit/c02dabd25507a14d666e85c7f1ea7831c64d0394))
|
10727
10875
|
|
10876
|
+
* Deprecate parameter related methods in gitlab.Gitlab
|
10877
|
+
|
10878
|
+
These methods change the auth information and URL, and might have some
|
10879
|
+
unwanted side effects.
|
10880
|
+
|
10881
|
+
Users should create a new Gitlab instance to change the URL and
|
10882
|
+
authentication information. ([`7ac1e4c`](https://github.com/python-gitlab/python-gitlab/commit/7ac1e4c1fe4ccff8c8ee4a9ae212a227d5499bce))
|
10883
|
+
|
10728
10884
|
* Add 'search' attribute to projects.list()
|
10729
10885
|
|
10730
10886
|
projects.search() has been deprecated by Gitlab ([`ce3dd0d`](https://github.com/python-gitlab/python-gitlab/commit/ce3dd0d1ac3fbed3cf671720e273470fb1ccdbc6))
|
@@ -10781,6 +10937,10 @@ Add time_stats to ProjectMergeRequest ([`f05a24b`](https://github.com/python-git
|
|
10781
10937
|
|
10782
10938
|
Make GroupProject inherit from Project ([`20d6678`](https://github.com/python-gitlab/python-gitlab/commit/20d667840ab7097260d453e9a79b7377f216bc1c))
|
10783
10939
|
|
10940
|
+
* Make GroupProject inherit from Project
|
10941
|
+
|
10942
|
+
Fixes #209 ([`380bcc4`](https://github.com/python-gitlab/python-gitlab/commit/380bcc4cce66d7b2c080f258a1acb0d14a5a1fc3))
|
10943
|
+
|
10784
10944
|
* Stop listing if recursion limit is hit (#234) ([`989f3b7`](https://github.com/python-gitlab/python-gitlab/commit/989f3b706d97045f4ea6af69fd11233e2f54adbf))
|
10785
10945
|
|
10786
10946
|
* Provide API wrapper for cherry picking commits (#236) ([`22bf128`](https://github.com/python-gitlab/python-gitlab/commit/22bf12827387cb1719bacae6c0c745cd768eee6c))
|
@@ -10793,10 +10953,6 @@ Change to correct logic of functions ([`cc4fe78`](https://github.com/python-gitl
|
|
10793
10953
|
|
10794
10954
|
* Change to correct logic of functions ([`889bbe5`](https://github.com/python-gitlab/python-gitlab/commit/889bbe57d07966f1f146245db1e62accd5b23d93))
|
10795
10955
|
|
10796
|
-
* Make GroupProject inherit from Project
|
10797
|
-
|
10798
|
-
Fixes #209 ([`380bcc4`](https://github.com/python-gitlab/python-gitlab/commit/380bcc4cce66d7b2c080f258a1acb0d14a5a1fc3))
|
10799
|
-
|
10800
10956
|
* Implement pipeline creation API (#237) ([`8c27e70`](https://github.com/python-gitlab/python-gitlab/commit/8c27e70b821e02921dfec4f8e4c6b77b5b284009))
|
10801
10957
|
|
10802
10958
|
* Properly handle extra args when listing with all=True
|
@@ -10858,6 +11014,8 @@ This fixes the tests. ([`41ca449`](https://github.com/python-gitlab/python-gitla
|
|
10858
11014
|
|
10859
11015
|
added due_date attribute to ProjectIssue ([`1e0ae59`](https://github.com/python-gitlab/python-gitlab/commit/1e0ae591616b297739bb5f35db6697eee88909a3))
|
10860
11016
|
|
11017
|
+
* fixes gpocentek/python-gitlab#215 ([`58708b1`](https://github.com/python-gitlab/python-gitlab/commit/58708b186e71289427cbce8decfeab28fdf66ad6))
|
11018
|
+
|
10861
11019
|
* Merge pull request #220 from alexwidener/master
|
10862
11020
|
|
10863
11021
|
Added pipeline_events to ProjectHook attrs ([`19c7784`](https://github.com/python-gitlab/python-gitlab/commit/19c77845a2d69bed180f175f3a98761655631d0f))
|
@@ -10866,8 +11024,6 @@ Added pipeline_events to ProjectHook attrs ([`19c7784`](https://github.com/pytho
|
|
10866
11024
|
|
10867
11025
|
Ran tests, all passed. ([`3f98e03`](https://github.com/python-gitlab/python-gitlab/commit/3f98e0345c451a8ecb7d46d727acf7725ce73d80))
|
10868
11026
|
|
10869
|
-
* fixes gpocentek/python-gitlab#215 ([`58708b1`](https://github.com/python-gitlab/python-gitlab/commit/58708b186e71289427cbce8decfeab28fdf66ad6))
|
10870
|
-
|
10871
11027
|
* document the dynamic aspect of objects ([`2f274bc`](https://github.com/python-gitlab/python-gitlab/commit/2f274bcd0bfb9fef2a2682445843b7804980ecf6))
|
10872
11028
|
|
10873
11029
|
* Deploy keys: rework enable/disable
|
@@ -10953,6 +11109,12 @@ Rename the method to make what it does more explicit. ([`7453895`](https://githu
|
|
10953
11109
|
|
10954
11110
|
* 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))
|
10955
11111
|
|
11112
|
+
* Added support for Snippets (new API in Gitlab 8.15)
|
11113
|
+
|
11114
|
+
cf [Gitlab-CE MR !6373](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6373)
|
11115
|
+
|
11116
|
+
Signed-off-by: Guyzmo <guyzmo+github@m0g.net> ([`6022dfe`](https://github.com/python-gitlab/python-gitlab/commit/6022dfec44c67f7f45b0c3274f5eef02e8ac93f0))
|
11117
|
+
|
10956
11118
|
* [CLI] Fix wrong use of arguments
|
10957
11119
|
|
10958
11120
|
The previous change removed undefined arguments from the args dict,
|
@@ -10975,12 +11137,6 @@ First page is page 1.
|
|
10975
11137
|
|
10976
11138
|
Fixes #197 ([`d86ca59`](https://github.com/python-gitlab/python-gitlab/commit/d86ca59dbe1d7f852416ec227a7d241d236424cf))
|
10977
11139
|
|
10978
|
-
* Added support for Snippets (new API in Gitlab 8.15)
|
10979
|
-
|
10980
|
-
cf [Gitlab-CE MR !6373](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6373)
|
10981
|
-
|
10982
|
-
Signed-off-by: Guyzmo <guyzmo+github@m0g.net> ([`6022dfe`](https://github.com/python-gitlab/python-gitlab/commit/6022dfec44c67f7f45b0c3274f5eef02e8ac93f0))
|
10983
|
-
|
10984
11140
|
* Merge pull request #192 from galet/gitlab-8.14-jira
|
10985
11141
|
|
10986
11142
|
Fix JIRA service editing for GitLab 8.14+ ([`15d3362`](https://github.com/python-gitlab/python-gitlab/commit/15d336256c0dca756e189fb9746ab60be2d3c886))
|
@@ -10999,13 +11155,13 @@ moved to optional section. ([`343c131`](https://github.com/python-gitlab/python-
|
|
10999
11155
|
|
11000
11156
|
Fix `should_remove_source_branch` ([`39288c8`](https://github.com/python-gitlab/python-gitlab/commit/39288c8fca774112ef1445c1281001a6190dd080))
|
11001
11157
|
|
11158
|
+
* Fix `should_remove_source_branch` ([`ac2bf24`](https://github.com/python-gitlab/python-gitlab/commit/ac2bf240510f26c477ea02eddb0425f2afb64fcc))
|
11159
|
+
|
11002
11160
|
* Rework requests arguments
|
11003
11161
|
|
11004
11162
|
* Factorize the code
|
11005
11163
|
* Don't send empty auth information to requests (Fixes #188) ([`6e5734b`](https://github.com/python-gitlab/python-gitlab/commit/6e5734bd910ef2d04122c162bac44c8843793312))
|
11006
11164
|
|
11007
|
-
* Fix `should_remove_source_branch` ([`ac2bf24`](https://github.com/python-gitlab/python-gitlab/commit/ac2bf240510f26c477ea02eddb0425f2afb64fcc))
|
11008
|
-
|
11009
11165
|
* Add support for triggering a new build
|
11010
11166
|
|
11011
11167
|
Fixes #184 ([`de05dae`](https://github.com/python-gitlab/python-gitlab/commit/de05daea0aa30e73c3a6f073bd173f23489c8339))
|
@@ -11024,12 +11180,12 @@ Please add these missing attrs ([`840cb89`](https://github.com/python-gitlab/pyt
|
|
11024
11180
|
|
11025
11181
|
Add attr 'updated_at' to ProjectIssue ([`f290b2b`](https://github.com/python-gitlab/python-gitlab/commit/f290b2b6e413604bc1b966266ab87f301cd0e32b))
|
11026
11182
|
|
11183
|
+
* Add attr 'updated_at' to ProjectIssue ([`a25fef5`](https://github.com/python-gitlab/python-gitlab/commit/a25fef5076286543a522b907c51f2c9060262867))
|
11184
|
+
|
11027
11185
|
* Merge pull request #1 from GregoryEAllen/GregoryEAllen-patch-1
|
11028
11186
|
|
11029
11187
|
Add attr 'created_at' to ProjectIssueNote ([`14e7ccd`](https://github.com/python-gitlab/python-gitlab/commit/14e7ccd10f04b2aa5b986580bca52f9361af4858))
|
11030
11188
|
|
11031
|
-
* Add attr 'updated_at' to ProjectIssue ([`a25fef5`](https://github.com/python-gitlab/python-gitlab/commit/a25fef5076286543a522b907c51f2c9060262867))
|
11032
|
-
|
11033
11189
|
* Add attr 'created_at' to ProjectIssueNote ([`5b24122`](https://github.com/python-gitlab/python-gitlab/commit/5b2412217481b6ddf654277e0748585135a4fe64))
|
11034
11190
|
|
11035
11191
|
* Add support for templates API
|
@@ -11091,12 +11247,6 @@ available on the object itself, not the manager. ([`c17ecc0`](https://github.com
|
|
11091
11247
|
|
11092
11248
|
* 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))
|
11093
11249
|
|
11094
|
-
* add missing files in MANIFEST.in ([`12fca84`](https://github.com/python-gitlab/python-gitlab/commit/12fca8409156b910cab0240bf77726a0b0bca1e0))
|
11095
|
-
|
11096
|
-
* ProjectHook: support the token attribute
|
11097
|
-
|
11098
|
-
Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f84967444cc07cf9e7bdfd63324ad4890b370))
|
11099
|
-
|
11100
11250
|
* Project deploy key response code = 201 ([`6bedfc3`](https://github.com/python-gitlab/python-gitlab/commit/6bedfc32e1f35e21ab3f1c6f0a2cf5c66b06a95e))
|
11101
11251
|
|
11102
11252
|
* Fixing the response and project_id argument ([`72d982b`](https://github.com/python-gitlab/python-gitlab/commit/72d982b70b00f4018de3c1cac3bbf1507283aa33))
|
@@ -11111,6 +11261,12 @@ Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f
|
|
11111
11261
|
|
11112
11262
|
* Feature: enable / disable the deploy key in a project ([`6310d71`](https://github.com/python-gitlab/python-gitlab/commit/6310d71c53558a201600bd48a174147623c99462))
|
11113
11263
|
|
11264
|
+
* add missing files in MANIFEST.in ([`12fca84`](https://github.com/python-gitlab/python-gitlab/commit/12fca8409156b910cab0240bf77726a0b0bca1e0))
|
11265
|
+
|
11266
|
+
* ProjectHook: support the token attribute
|
11267
|
+
|
11268
|
+
Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f84967444cc07cf9e7bdfd63324ad4890b370))
|
11269
|
+
|
11114
11270
|
* Merge pull request #178 from cgumpert/master
|
11115
11271
|
|
11116
11272
|
fix bug when retrieving changes for merge request ([`4689e73`](https://github.com/python-gitlab/python-gitlab/commit/4689e73b051fa985168cb648f49ee2dd6b6df523))
|
@@ -11214,10 +11370,6 @@ Fixes #156 ([`d09eaa0`](https://github.com/python-gitlab/python-gitlab/commit/d0
|
|
11214
11370
|
|
11215
11371
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`6f7e499`](https://github.com/python-gitlab/python-gitlab/commit/6f7e499a93b8e80181cb8c91a5b1d63ec76f1ba0))
|
11216
11372
|
|
11217
|
-
* Add support for --all in CLI
|
11218
|
-
|
11219
|
-
Fixes #153 ([`5860421`](https://github.com/python-gitlab/python-gitlab/commit/58604213efbe4d275be8da6615ed77d6f3510cbe))
|
11220
|
-
|
11221
11373
|
* Merge pull request #155 from rafaeleyng/add-only_allow_merge_if_build_succeeds
|
11222
11374
|
|
11223
11375
|
add only_allow_merge_if_build_succeeds option to project objects ([`26d97a7`](https://github.com/python-gitlab/python-gitlab/commit/26d97a736022c7f6828529920d2dbc88ecada18c))
|
@@ -11226,6 +11378,10 @@ add only_allow_merge_if_build_succeeds option to project objects ([`26d97a7`](ht
|
|
11226
11378
|
|
11227
11379
|
* add only_allow_merge_if_build_succeeds option to project objects ([`94932a0`](https://github.com/python-gitlab/python-gitlab/commit/94932a038bc6a862ecaaa1da87141b832b10ceda))
|
11228
11380
|
|
11381
|
+
* Add support for --all in CLI
|
11382
|
+
|
11383
|
+
Fixes #153 ([`5860421`](https://github.com/python-gitlab/python-gitlab/commit/58604213efbe4d275be8da6615ed77d6f3510cbe))
|
11384
|
+
|
11229
11385
|
* Merge pull request #154 from derek-austin/patch-1
|
11230
11386
|
|
11231
11387
|
Create a project in a group ([`4390afb`](https://github.com/python-gitlab/python-gitlab/commit/4390afbff39deb5a33b857342dae6ee494684ce7))
|
@@ -11371,12 +11527,12 @@ Fixes #132 ([`922041d`](https://github.com/python-gitlab/python-gitlab/commit/92
|
|
11371
11527
|
|
11372
11528
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`e3ac32f`](https://github.com/python-gitlab/python-gitlab/commit/e3ac32f76a54e06c9c465c5acd41398988154fe9))
|
11373
11529
|
|
11374
|
-
* add a contributing section in README ([`e6ffd69`](https://github.com/python-gitlab/python-gitlab/commit/e6ffd69bc745ce1a5b857fc248a3bef793e30138))
|
11375
|
-
|
11376
11530
|
* doc: replace incorrect archive call() ([`e1f5e15`](https://github.com/python-gitlab/python-gitlab/commit/e1f5e1560e53019d45b113a71916ad9a7695afeb))
|
11377
11531
|
|
11378
11532
|
* document namespaces API ([`1f52cd2`](https://github.com/python-gitlab/python-gitlab/commit/1f52cd2df35dab33dbf7429c8d514443278b549a))
|
11379
11533
|
|
11534
|
+
* add a contributing section in README ([`e6ffd69`](https://github.com/python-gitlab/python-gitlab/commit/e6ffd69bc745ce1a5b857fc248a3bef793e30138))
|
11535
|
+
|
11380
11536
|
* Merge pull request #131 from chrwen-omicron/enable_container_registry
|
11381
11537
|
|
11382
11538
|
Added a new project attribute to enable the container registry. ([`e0f2290`](https://github.com/python-gitlab/python-gitlab/commit/e0f2290fdbbb8d2ee4c9fcb9e531b04bb69232fa))
|
@@ -11487,12 +11643,16 @@ add `note_events` to project hooks attributes ([`c88c638`](https://github.com/py
|
|
11487
11643
|
|
11488
11644
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`2e0ac3f`](https://github.com/python-gitlab/python-gitlab/commit/2e0ac3fa4a66a63921b2aeee81dcc942a0849985))
|
11489
11645
|
|
11490
|
-
* issues: add optional listing parameters ([`c85276a`](https://github.com/python-gitlab/python-gitlab/commit/c85276a6e6c5088ea6f2ecb13059488c9779ea2c))
|
11491
|
-
|
11492
11646
|
* Merge pull request #125 from gpocentek/issue-122
|
11493
11647
|
|
11494
11648
|
Add support for build artifacts and trace ([`80a1908`](https://github.com/python-gitlab/python-gitlab/commit/80a190888028db4eb1df0c4f827938e89b20f8a1))
|
11495
11649
|
|
11650
|
+
* Add support for build artifacts and trace
|
11651
|
+
|
11652
|
+
Fixes #122 ([`b3e0974`](https://github.com/python-gitlab/python-gitlab/commit/b3e0974451b49ab64866dc131bff59e5471ea620))
|
11653
|
+
|
11654
|
+
* issues: add optional listing parameters ([`c85276a`](https://github.com/python-gitlab/python-gitlab/commit/c85276a6e6c5088ea6f2ecb13059488c9779ea2c))
|
11655
|
+
|
11496
11656
|
* Add support for commit comments
|
11497
11657
|
|
11498
11658
|
https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/commits.md ([`412e2bc`](https://github.com/python-gitlab/python-gitlab/commit/412e2bc7e00a5229974388f795caefa1f0896273))
|
@@ -11511,19 +11671,19 @@ https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/commits.md ([`412e2bc`]
|
|
11511
11671
|
|
11512
11672
|
* move into own class & create manager class ([`eb6c26f`](https://github.com/python-gitlab/python-gitlab/commit/eb6c26f51131fa171c71c19c28448e736f2f5243))
|
11513
11673
|
|
11674
|
+
* update docblock ([`cd13aff`](https://github.com/python-gitlab/python-gitlab/commit/cd13aff8a0df9136ba3e289fbccd85de3f159bb5))
|
11675
|
+
|
11676
|
+
* list projects under group ([`d4e2cd6`](https://github.com/python-gitlab/python-gitlab/commit/d4e2cd6c618d137df645c182271f67c5ae7e8ff5))
|
11677
|
+
|
11514
11678
|
* Merge pull request #124 from Condla/master
|
11515
11679
|
|
11516
11680
|
Fix: --title is required argument, when in reality optional ([`18de4ef`](https://github.com/python-gitlab/python-gitlab/commit/18de4ef22f5f801dd721d76d0721c5b4cd459c37))
|
11517
11681
|
|
11518
11682
|
* Fix --title is not a required argument anymore ([`899490b`](https://github.com/python-gitlab/python-gitlab/commit/899490b04055029196eff9e03b496131e2238e61))
|
11519
11683
|
|
11520
|
-
* Fix --title is not a required argument anymore ([`c24f0d9`](https://github.com/python-gitlab/python-gitlab/commit/c24f0d9a3664c025e3284e056d5b4c007dcf5435))
|
11521
|
-
|
11522
11684
|
* Fix that --title is a required argument, when trying to update a ProjectMilestone ([`bea8ea9`](https://github.com/python-gitlab/python-gitlab/commit/bea8ea9d0fa921cc5c4fdd1b948420f1f780770c))
|
11523
11685
|
|
11524
|
-
*
|
11525
|
-
|
11526
|
-
Fixes #122 ([`b3e0974`](https://github.com/python-gitlab/python-gitlab/commit/b3e0974451b49ab64866dc131bff59e5471ea620))
|
11686
|
+
* Fix --title is not a required argument anymore ([`c24f0d9`](https://github.com/python-gitlab/python-gitlab/commit/c24f0d9a3664c025e3284e056d5b4c007dcf5435))
|
11527
11687
|
|
11528
11688
|
* Merge pull request #121 from PeterMosmans/httpauthextended
|
11529
11689
|
|
@@ -11547,18 +11707,25 @@ Added support for HTTP basic authentication ([`11f1e2d`](https://github.com/pyth
|
|
11547
11707
|
|
11548
11708
|
Add support for subscribe and unsubscribe in issues ([`7bbbfbd`](https://github.com/python-gitlab/python-gitlab/commit/7bbbfbdc534a4d26aa61b1b4287911c9f7c6f8a5))
|
11549
11709
|
|
11550
|
-
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`b8f19ca`](https://github.com/python-gitlab/python-gitlab/commit/b8f19ca9f64b737296782e74816f4b0b88a05d2f))
|
11551
|
-
|
11552
11710
|
* Add support for subscribe and unsubscribe in issues ([`d42687d`](https://github.com/python-gitlab/python-gitlab/commit/d42687db9f0c58ea8a08532fbf6c524b0cc5ed17))
|
11553
11711
|
|
11554
|
-
*
|
11555
|
-
|
11556
|
-
* update changelog and authors ([`57936af`](https://github.com/python-gitlab/python-gitlab/commit/57936af70758f35ea28ad060c4ead2d916a3b47e))
|
11712
|
+
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`b8f19ca`](https://github.com/python-gitlab/python-gitlab/commit/b8f19ca9f64b737296782e74816f4b0b88a05d2f))
|
11557
11713
|
|
11558
11714
|
* Merge pull request #110 from chrwen-omicron/remove_next_url_from_cls_kwargs
|
11559
11715
|
|
11560
11716
|
Remove 'next_url' from kwargs before passing it to the cls constructor. ([`05dd8dc`](https://github.com/python-gitlab/python-gitlab/commit/05dd8dc353fb5ebcb04cad72db19a8e08e0f7c56))
|
11561
11717
|
|
11718
|
+
* Remove 'next_url' from kwargs before passing it to the cls constructor.
|
11719
|
+
|
11720
|
+
The 'next_url' argument causes problems in the _construct_url method if it
|
11721
|
+
doesn't belong there. E.g. if you list all projects, change an attribute
|
11722
|
+
of a project and then try to save it, the _construct_url will use the
|
11723
|
+
'next_url' from the list method and the save will fail. ([`c261875`](https://github.com/python-gitlab/python-gitlab/commit/c261875cf167e6858d052dc983fb0dcb03e3ea40))
|
11724
|
+
|
11725
|
+
* version bump ([`0535808`](https://github.com/python-gitlab/python-gitlab/commit/0535808d5a82ffbcd5a7ea23ecc4d0c22dad34a1))
|
11726
|
+
|
11727
|
+
* update changelog and authors ([`57936af`](https://github.com/python-gitlab/python-gitlab/commit/57936af70758f35ea28ad060c4ead2d916a3b47e))
|
11728
|
+
|
11562
11729
|
* Manage optional parameters for list() and get()
|
11563
11730
|
|
11564
11731
|
* List these elements in the API doc
|
@@ -11570,14 +11737,20 @@ Remove 'next_url' from kwargs before passing it to the cls constructor.
|
|
11570
11737
|
|
11571
11738
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`ee1620b`](https://github.com/python-gitlab/python-gitlab/commit/ee1620bcfe0533b70c9ceebb34968d3633e2613c))
|
11572
11739
|
|
11573
|
-
* implement star/unstar for projects ([`1de6b7e`](https://github.com/python-gitlab/python-gitlab/commit/1de6b7e7641f2c0cb101a82385cee569aa786e3f))
|
11574
|
-
|
11575
|
-
* Deprecate Project.archive() ([`24c283f`](https://github.com/python-gitlab/python-gitlab/commit/24c283f5861f21e51489afc815bd9f31bff58bee))
|
11576
|
-
|
11577
11740
|
* Merge pull request #113 from adamreid/master
|
11578
11741
|
|
11579
11742
|
Enable updates on ProjectIssueNotes ([`f5c75cb`](https://github.com/python-gitlab/python-gitlab/commit/f5c75cbf05ded3a326db6050c11dbdf67b5eca99))
|
11580
11743
|
|
11744
|
+
* Merge branch 'master' of https://github.com/gpocentek/python-gitlab ([`8edd7f7`](https://github.com/python-gitlab/python-gitlab/commit/8edd7f79050559062ac119797329d0a8dba57a06))
|
11745
|
+
|
11746
|
+
* Remove unnecessary canUpdate property from ProjectIssuesNote ([`111b7d9`](https://github.com/python-gitlab/python-gitlab/commit/111b7d9a4ee60176714b950d7ed9da86c6051feb))
|
11747
|
+
|
11748
|
+
* Enable updates on ProjectIssueNotes ([`5fe7e27`](https://github.com/python-gitlab/python-gitlab/commit/5fe7e27bb16a06271f87bf19473b8604df92b4f7))
|
11749
|
+
|
11750
|
+
* implement star/unstar for projects ([`1de6b7e`](https://github.com/python-gitlab/python-gitlab/commit/1de6b7e7641f2c0cb101a82385cee569aa786e3f))
|
11751
|
+
|
11752
|
+
* Deprecate Project.archive() ([`24c283f`](https://github.com/python-gitlab/python-gitlab/commit/24c283f5861f21e51489afc815bd9f31bff58bee))
|
11753
|
+
|
11581
11754
|
* Rename some methods to better match the API URLs
|
11582
11755
|
|
11583
11756
|
Also deprecate the file_* methods in favor of the files manager. ([`45adb6e`](https://github.com/python-gitlab/python-gitlab/commit/45adb6e4dbe7667376639d68078754d6d72cb55c))
|
@@ -11606,10 +11779,6 @@ Fixes #96 ([`d204e66`](https://github.com/python-gitlab/python-gitlab/commit/d20
|
|
11606
11779
|
|
11607
11780
|
Fixes #116 ([`f12c732`](https://github.com/python-gitlab/python-gitlab/commit/f12c732f5e0dff7db1048adf50f54bfdd63ca6fc))
|
11608
11781
|
|
11609
|
-
* Merge branch 'master' of https://github.com/gpocentek/python-gitlab ([`8edd7f7`](https://github.com/python-gitlab/python-gitlab/commit/8edd7f79050559062ac119797329d0a8dba57a06))
|
11610
|
-
|
11611
|
-
* Remove unnecessary canUpdate property from ProjectIssuesNote ([`111b7d9`](https://github.com/python-gitlab/python-gitlab/commit/111b7d9a4ee60176714b950d7ed9da86c6051feb))
|
11612
|
-
|
11613
11782
|
* Drop the next_url attribute when listing
|
11614
11783
|
|
11615
11784
|
Fixes #106 ([`64af398`](https://github.com/python-gitlab/python-gitlab/commit/64af39818d02af1b40644d71fd047d6bc3f6e69e))
|
@@ -11626,19 +11795,6 @@ Fixes #112 ([`250f348`](https://github.com/python-gitlab/python-gitlab/commit/25
|
|
11626
11795
|
|
11627
11796
|
Adding a Session instance for all HTTP requests ([`23e8146`](https://github.com/python-gitlab/python-gitlab/commit/23e8146a391e4269e9b3d57a553148963d412179))
|
11628
11797
|
|
11629
|
-
* Enable updates on ProjectIssueNotes ([`5fe7e27`](https://github.com/python-gitlab/python-gitlab/commit/5fe7e27bb16a06271f87bf19473b8604df92b4f7))
|
11630
|
-
|
11631
|
-
* update docblock ([`cd13aff`](https://github.com/python-gitlab/python-gitlab/commit/cd13aff8a0df9136ba3e289fbccd85de3f159bb5))
|
11632
|
-
|
11633
|
-
* list projects under group ([`d4e2cd6`](https://github.com/python-gitlab/python-gitlab/commit/d4e2cd6c618d137df645c182271f67c5ae7e8ff5))
|
11634
|
-
|
11635
|
-
* Remove 'next_url' from kwargs before passing it to the cls constructor.
|
11636
|
-
|
11637
|
-
The 'next_url' argument causes problems in the _construct_url method if it
|
11638
|
-
doesn't belong there. E.g. if you list all projects, change an attribute
|
11639
|
-
of a project and then try to save it, the _construct_url will use the
|
11640
|
-
'next_url' from the list method and the save will fail. ([`c261875`](https://github.com/python-gitlab/python-gitlab/commit/c261875cf167e6858d052dc983fb0dcb03e3ea40))
|
11641
|
-
|
11642
11798
|
* Adding a Session instance for all HTTP requests
|
11643
11799
|
|
11644
11800
|
The session instance will make it easier for setting up once headers, including
|
@@ -11680,8 +11836,6 @@ fixes #105 ([`43e8a2a`](https://github.com/python-gitlab/python-gitlab/commit/43
|
|
11680
11836
|
|
11681
11837
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`e46c188`](https://github.com/python-gitlab/python-gitlab/commit/e46c18898deb8579d4fee0e76bfc17abed12c512))
|
11682
11838
|
|
11683
|
-
* pep8 ignore H803 errors (git messages) ([`86ade4a`](https://github.com/python-gitlab/python-gitlab/commit/86ade4ac78fd14cc8f12be39c74ff60688a2fcf7))
|
11684
|
-
|
11685
11839
|
* Merge pull request #98 from Asher256/fix-unicode-syntax-py3
|
11686
11840
|
|
11687
11841
|
Fix the 'invalid syntax' on Python 3.2, because of u'password' ([`aea678b`](https://github.com/python-gitlab/python-gitlab/commit/aea678b9398f87b6943f005ff207755aa8a982a4))
|
@@ -11712,6 +11866,8 @@ It is a recent change:
|
|
11712
11866
|
|
11713
11867
|
To solve the issue, 'u' was removed. ([`7ed84a7`](https://github.com/python-gitlab/python-gitlab/commit/7ed84a7b4ca73d1b0cc6be7db0c43958ff9f4c47))
|
11714
11868
|
|
11869
|
+
* pep8 ignore H803 errors (git messages) ([`86ade4a`](https://github.com/python-gitlab/python-gitlab/commit/86ade4ac78fd14cc8f12be39c74ff60688a2fcf7))
|
11870
|
+
|
11715
11871
|
* Re-implement _custom_list in the Gitlab class
|
11716
11872
|
|
11717
11873
|
Rename the method _raw_list. This adds support for the ``all=True``
|
@@ -11749,6 +11905,18 @@ get_by_username(). ([`b79af1d`](https://github.com/python-gitlab/python-gitlab/c
|
|
11749
11905
|
|
11750
11906
|
Adding new `ProjectHook` attributes: ([`81be3cf`](https://github.com/python-gitlab/python-gitlab/commit/81be3cf181f5e49ef20c2824eb8c48785f4ab922))
|
11751
11907
|
|
11908
|
+
* Added missing comma ([`1f81c2d`](https://github.com/python-gitlab/python-gitlab/commit/1f81c2d7a93cc7c719bf8bda627020946aa975d3))
|
11909
|
+
|
11910
|
+
* Adding new `ProjectHook` attributes:
|
11911
|
+
|
11912
|
+
* `build_events`
|
11913
|
+
* `enable_ssl_verification`
|
11914
|
+
|
11915
|
+
See the two links below:
|
11916
|
+
|
11917
|
+
* https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/projects.md#add-project-hook
|
11918
|
+
* https://github.com/pyapi-gitlab/pyapi-gitlab/pull/173 ([`db9bbf6`](https://github.com/python-gitlab/python-gitlab/commit/db9bbf6528e792976e80f870b2013199569a0021))
|
11919
|
+
|
11752
11920
|
* Add a coverage tox env ([`2e1f84e`](https://github.com/python-gitlab/python-gitlab/commit/2e1f84ede56b73c5b6857515d24d061a60b509fb))
|
11753
11921
|
|
11754
11922
|
* Add some unit tests for CLI
|
@@ -11767,18 +11935,6 @@ fix GitlabObject creation in _custom_list ([`f5ca0eb`](https://github.com/python
|
|
11767
11935
|
|
11768
11936
|
* Add support for user block/unblock ([`e387de5`](https://github.com/python-gitlab/python-gitlab/commit/e387de528ad21766747b91bb7e1cd91f6e4642b5))
|
11769
11937
|
|
11770
|
-
* Added missing comma ([`1f81c2d`](https://github.com/python-gitlab/python-gitlab/commit/1f81c2d7a93cc7c719bf8bda627020946aa975d3))
|
11771
|
-
|
11772
|
-
* Adding new `ProjectHook` attributes:
|
11773
|
-
|
11774
|
-
* `build_events`
|
11775
|
-
* `enable_ssl_verification`
|
11776
|
-
|
11777
|
-
See the two links below:
|
11778
|
-
|
11779
|
-
* https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/projects.md#add-project-hook
|
11780
|
-
* https://github.com/pyapi-gitlab/pyapi-gitlab/pull/173 ([`db9bbf6`](https://github.com/python-gitlab/python-gitlab/commit/db9bbf6528e792976e80f870b2013199569a0021))
|
11781
|
-
|
11782
11938
|
* bump version to cleanup my mess on pypi ([`942468d`](https://github.com/python-gitlab/python-gitlab/commit/942468d344eac2a70f73ed69a43c27a87baf78db))
|
11783
11939
|
|
11784
11940
|
* Update ChangeLog and AUTHORS ([`74d82d4`](https://github.com/python-gitlab/python-gitlab/commit/74d82d4109e65d541707638fc9d3efc110c6ef32))
|
@@ -11815,10 +11971,6 @@ is very abrupt.) ([`c56fc47`](https://github.com/python-gitlab/python-gitlab/com
|
|
11815
11971
|
|
11816
11972
|
* fix usage error message ([`bc7332f`](https://github.com/python-gitlab/python-gitlab/commit/bc7332f3462295320bf76e056a5ab6206ffa4d6b))
|
11817
11973
|
|
11818
|
-
* Add docstrings to some methods ([`1b5c8f1`](https://github.com/python-gitlab/python-gitlab/commit/1b5c8f1b0bf9766ea09ef864b9bf4c1dc313f168))
|
11819
|
-
|
11820
|
-
* Fix the RTD requirements ([`2e5476e`](https://github.com/python-gitlab/python-gitlab/commit/2e5476e5cb465680b2e48308d92109c408b9f1ef))
|
11821
|
-
|
11822
11974
|
* improve error handling
|
11823
11975
|
|
11824
11976
|
Break up pipelines and check the exit status of non-basic commands to
|
@@ -11869,15 +12021,19 @@ it easy to prefix all log messages if desired. ([`867fe2f`](https://github.com/p
|
|
11869
12021
|
Note that build_test_env.sh now creates and prepares the Python
|
11870
12022
|
virtualenv (it didn't before). ([`26999bf`](https://github.com/python-gitlab/python-gitlab/commit/26999bf0132eeac7e5b78094c54e6436964007ef))
|
11871
12023
|
|
12024
|
+
* wrap long lines
|
12025
|
+
|
12026
|
+
Use line continuations to keep lines shorter than 80 columns. ([`6df844a`](https://github.com/python-gitlab/python-gitlab/commit/6df844a49c2631fd38940db4679ab1cba760e4ab))
|
12027
|
+
|
12028
|
+
* Add docstrings to some methods ([`1b5c8f1`](https://github.com/python-gitlab/python-gitlab/commit/1b5c8f1b0bf9766ea09ef864b9bf4c1dc313f168))
|
12029
|
+
|
12030
|
+
* Fix the RTD requirements ([`2e5476e`](https://github.com/python-gitlab/python-gitlab/commit/2e5476e5cb465680b2e48308d92109c408b9f1ef))
|
12031
|
+
|
11872
12032
|
* Automatic doc generation for BaseManager classes
|
11873
12033
|
|
11874
12034
|
Provide a sphinx extension that parses the required/optioanl attributes
|
11875
12035
|
and add infoo to the class docstring. ([`a2eca72`](https://github.com/python-gitlab/python-gitlab/commit/a2eca72246ab40a0d96f6389c99e3a0b54e9342e))
|
11876
12036
|
|
11877
|
-
* wrap long lines
|
11878
|
-
|
11879
|
-
Use line continuations to keep lines shorter than 80 columns. ([`6df844a`](https://github.com/python-gitlab/python-gitlab/commit/6df844a49c2631fd38940db4679ab1cba760e4ab))
|
11880
|
-
|
11881
12037
|
* travis lacks py35 support without tricks ([`770dd4b`](https://github.com/python-gitlab/python-gitlab/commit/770dd4b3fee1fe9f4e40a144777afb6030992149))
|
11882
12038
|
|
11883
12039
|
* add python 3.5 test env ([`920d248`](https://github.com/python-gitlab/python-gitlab/commit/920d24823c3d7381097e1f30e34c3be8cec45627))
|
@@ -11951,8 +12107,6 @@ Also add unit tests and fix pep8 test ([`d7271b1`](https://github.com/python-git
|
|
11951
12107
|
|
11952
12108
|
* 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))
|
11953
12109
|
|
11954
|
-
* use a custom docker image for tests ([`3f38689`](https://github.com/python-gitlab/python-gitlab/commit/3f386891ecf15ac4f0da34bdda59cf8e8d2f6ff0))
|
11955
|
-
|
11956
12110
|
* skip BaseManager attributes when encoding to JSON
|
11957
12111
|
|
11958
12112
|
This fixes the following exception when calling User.json():
|
@@ -11964,6 +12118,8 @@ This fixes the following exception when calling User.json():
|
|
11964
12118
|
Add the import inside the function rather than at the top of the file
|
11965
12119
|
because otherwise it would introduce a circular dependency. ([`c95b3c3`](https://github.com/python-gitlab/python-gitlab/commit/c95b3c3b54c412cd5cc77c4d58816139363fb2d1))
|
11966
12120
|
|
12121
|
+
* use a custom docker image for tests ([`3f38689`](https://github.com/python-gitlab/python-gitlab/commit/3f386891ecf15ac4f0da34bdda59cf8e8d2f6ff0))
|
12122
|
+
|
11967
12123
|
* Add an initial set of API tests ([`7e4e1a3`](https://github.com/python-gitlab/python-gitlab/commit/7e4e1a32ec2481453475a5da5186d187e704cf19))
|
11968
12124
|
|
11969
12125
|
* include the docs in the tarball ([`bbcccaa`](https://github.com/python-gitlab/python-gitlab/commit/bbcccaa5407fa9d281f8b1268a653b6dff29d050))
|
@@ -12064,12 +12220,12 @@ Unit tests have been added. ([`689ecae`](https://github.com/python-gitlab/python
|
|
12064
12220
|
|
12065
12221
|
* 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))
|
12066
12222
|
|
12223
|
+
* add fork project support ([`cedf080`](https://github.com/python-gitlab/python-gitlab/commit/cedf080ff8553b6ef5cd7995f5ab3608aaeb3793))
|
12224
|
+
|
12067
12225
|
* Deprecate the "old" Gitlab methods
|
12068
12226
|
|
12069
12227
|
Update the associated unit tests. ([`2bf9794`](https://github.com/python-gitlab/python-gitlab/commit/2bf9794c81487883c346850a79d6b7db1295fd95))
|
12070
12228
|
|
12071
|
-
* add fork project support ([`cedf080`](https://github.com/python-gitlab/python-gitlab/commit/cedf080ff8553b6ef5cd7995f5ab3608aaeb3793))
|
12072
|
-
|
12073
12229
|
* README update ([`dc0099d`](https://github.com/python-gitlab/python-gitlab/commit/dc0099d7901bd381fabadb8be77b93e7258454b3))
|
12074
12230
|
|
12075
12231
|
* Provide a getting started doc for the API ([`2237d85`](https://github.com/python-gitlab/python-gitlab/commit/2237d854f3c83f176b03392debf9785c53b0738b))
|
@@ -12141,10 +12297,6 @@ Closes #73 ([`99c4710`](https://github.com/python-gitlab/python-gitlab/commit/99
|
|
12141
12297
|
|
12142
12298
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`45becb9`](https://github.com/python-gitlab/python-gitlab/commit/45becb92f47c74cb6433cdb644da5e2052a337e8))
|
12143
12299
|
|
12144
|
-
* Sanitize the id used to construct URLs
|
12145
|
-
|
12146
|
-
Closes #28 ([`5d88f68`](https://github.com/python-gitlab/python-gitlab/commit/5d88f68ddadddf98c42940a713817487058f8c17))
|
12147
|
-
|
12148
12300
|
* Merge pull request #78 from cdbennett/fix_python3_sort_types
|
12149
12301
|
|
12150
12302
|
Use name as sort key to fix Python 3 TypeError ([`6f1fd7e`](https://github.com/python-gitlab/python-gitlab/commit/6f1fd7ea8d203b771e32393b5270a6af490b37a8))
|
@@ -12158,6 +12310,10 @@ The call to sort() on cli.py line 259 produced the error:
|
|
12158
12310
|
|
12159
12311
|
TypeError: unorderable types: type() < type() ([`363b75e`](https://github.com/python-gitlab/python-gitlab/commit/363b75e73c2b66ab625811accdb9d639fb068675))
|
12160
12312
|
|
12313
|
+
* Sanitize the id used to construct URLs
|
12314
|
+
|
12315
|
+
Closes #28 ([`5d88f68`](https://github.com/python-gitlab/python-gitlab/commit/5d88f68ddadddf98c42940a713817487058f8c17))
|
12316
|
+
|
12161
12317
|
* try to fix the RTD build ([`acc1511`](https://github.com/python-gitlab/python-gitlab/commit/acc151190e32ddaf9198a10c5b816af2d36c0f19))
|
12162
12318
|
|
12163
12319
|
* Merge pull request #72 from pa4373/newuser-confirm-fix
|
@@ -12197,6 +12353,12 @@ just like the CLI does. ([`fef8c7f`](https://github.com/python-gitlab/python-git
|
|
12197
12353
|
|
12198
12354
|
python-gitlab Issue #63 - implement pagination for list() ([`24d5035`](https://github.com/python-gitlab/python-gitlab/commit/24d5035558dec227d2a497d7bf5be3bbaafc0c00))
|
12199
12355
|
|
12356
|
+
* issue #63 add unit tests for 'next' link handling in list() ([`719526d`](https://github.com/python-gitlab/python-gitlab/commit/719526dc8b0fb7d577f0a5ffa80d8f0ca31a95c6))
|
12357
|
+
|
12358
|
+
* issue #63 - revert logging additions ([`f9654cd`](https://github.com/python-gitlab/python-gitlab/commit/f9654cd1c0dca5b75a2ae78634b06feea7cc3b62))
|
12359
|
+
|
12360
|
+
* python-gitlab Issue #63 - implement pagination for list() ([`33ceed6`](https://github.com/python-gitlab/python-gitlab/commit/33ceed61759e1eb5197154d16cd81030e138921d))
|
12361
|
+
|
12200
12362
|
* Merge pull request #66 from stefanklug/master
|
12201
12363
|
|
12202
12364
|
Fix error when fetching single MergeRequests ([`adbe0a4`](https://github.com/python-gitlab/python-gitlab/commit/adbe0a4391f1e3b4d615ef7966dfa66e75b9a6fa))
|
@@ -12205,12 +12367,6 @@ Fix error when fetching single MergeRequests ([`adbe0a4`](https://github.com/pyt
|
|
12205
12367
|
|
12206
12368
|
* fix url when fetching a single MergeRequest ([`227f71c`](https://github.com/python-gitlab/python-gitlab/commit/227f71ce49cc3e0a3537a52dd2fac1d8045110f4))
|
12207
12369
|
|
12208
|
-
* issue #63 add unit tests for 'next' link handling in list() ([`719526d`](https://github.com/python-gitlab/python-gitlab/commit/719526dc8b0fb7d577f0a5ffa80d8f0ca31a95c6))
|
12209
|
-
|
12210
|
-
* issue #63 - revert logging additions ([`f9654cd`](https://github.com/python-gitlab/python-gitlab/commit/f9654cd1c0dca5b75a2ae78634b06feea7cc3b62))
|
12211
|
-
|
12212
|
-
* python-gitlab Issue #63 - implement pagination for list() ([`33ceed6`](https://github.com/python-gitlab/python-gitlab/commit/33ceed61759e1eb5197154d16cd81030e138921d))
|
12213
|
-
|
12214
12370
|
* Fix the update/delete CLI subcommands
|
12215
12371
|
|
12216
12372
|
Also update the testing tool to test these features.
|
@@ -12290,6 +12446,11 @@ closes #31 ([`8b42559`](https://github.com/python-gitlab/python-gitlab/commit/8b
|
|
12290
12446
|
Conflicts:
|
12291
12447
|
setup.py ([`0443256`](https://github.com/python-gitlab/python-gitlab/commit/04432561cb0e1a7e658cf771fd530835b4f463c8))
|
12292
12448
|
|
12449
|
+
* Added tests.
|
12450
|
+
|
12451
|
+
Uses httmock library to abstract away requests-library.
|
12452
|
+
Uses nose to actually run tests. ([`f458522`](https://github.com/python-gitlab/python-gitlab/commit/f45852205397d84a3ca2b9554ffaacae153791cc))
|
12453
|
+
|
12293
12454
|
* Deprecate some Gitlab object methods
|
12294
12455
|
|
12295
12456
|
raw* methods should never have been exposed; replace them with _raw_*
|
@@ -12408,73 +12569,68 @@ Changed Gitlab-class to use GitlabObject-class version of _getListOrObject ([`90
|
|
12408
12569
|
|
12409
12570
|
Classes for ProjectLabels and ProjectFiles ([`928b9f0`](https://github.com/python-gitlab/python-gitlab/commit/928b9f09291a45283ed371b931288b1caddb5b1c))
|
12410
12571
|
|
12572
|
+
* Classes for ProjectLabels and ProjectFiles ([`ad63e17`](https://github.com/python-gitlab/python-gitlab/commit/ad63e17ce7b6fd8c8eef993a44a1b18cc73fc4be))
|
12573
|
+
|
12411
12574
|
* Merge pull request #44 from mjmaenpaa/noid_objects
|
12412
12575
|
|
12413
12576
|
Support api-objects which don't have id in api response. ([`afe0ab4`](https://github.com/python-gitlab/python-gitlab/commit/afe0ab4b7ecf9a37b88a3d8f77a2c17d95e571d3))
|
12414
12577
|
|
12578
|
+
* Fixed object creation in list ([`134fc7a`](https://github.com/python-gitlab/python-gitlab/commit/134fc7ac024aa96b1d22cc421a081df6cd2724f3))
|
12579
|
+
|
12580
|
+
* Support api-objects which don't have id in api response. ([`c3ab869`](https://github.com/python-gitlab/python-gitlab/commit/c3ab869711276522fe2997ba6e6332704a059d22))
|
12581
|
+
|
12415
12582
|
* Merge pull request #43 from mjmaenpaa/url_delete_attrs
|
12416
12583
|
|
12417
12584
|
Moved url attributes to separate list. Added list for delete attributes. ([`f7dfad3`](https://github.com/python-gitlab/python-gitlab/commit/f7dfad38877f9886d891ed19a21188de61e5c5bc))
|
12418
12585
|
|
12586
|
+
* Moved url attributes to separate list. Added list for delete attributes. ([`ea4c099`](https://github.com/python-gitlab/python-gitlab/commit/ea4c099532993cdb3ea547fcbd931127c03fdffa))
|
12587
|
+
|
12419
12588
|
* Merge pull request #40 from mjmaenpaa/py3
|
12420
12589
|
|
12421
12590
|
Python3 compatibility ([`1eccc3b`](https://github.com/python-gitlab/python-gitlab/commit/1eccc3b38bdb6d0b53d76b6a5099db89dcb53871))
|
12422
12591
|
|
12423
|
-
*
|
12424
|
-
|
12425
|
-
* Classes for ProjectLabels and ProjectFiles ([`ad63e17`](https://github.com/python-gitlab/python-gitlab/commit/ad63e17ce7b6fd8c8eef993a44a1b18cc73fc4be))
|
12592
|
+
* Py3 compatibility with six ([`431e4bd`](https://github.com/python-gitlab/python-gitlab/commit/431e4bdf089354534f6877d39631ff23038e8866))
|
12426
12593
|
|
12427
|
-
*
|
12594
|
+
* Python 3 compatibility for cli-program ([`d714c4d`](https://github.com/python-gitlab/python-gitlab/commit/d714c4d35bc627d9113a4925f843c54d6123e621))
|
12428
12595
|
|
12429
|
-
*
|
12596
|
+
* Python3 compatibility ([`15c0da5`](https://github.com/python-gitlab/python-gitlab/commit/15c0da5552aa57340d25946bb41d0cd079ec495d))
|
12430
12597
|
|
12431
12598
|
* Merge pull request #42 from mjmaenpaa/constructUrl
|
12432
12599
|
|
12433
12600
|
Moved url-construction to separate function ([`221f418`](https://github.com/python-gitlab/python-gitlab/commit/221f41806d0dad67adada158a9352aa9e2f2036f))
|
12434
12601
|
|
12602
|
+
* Moved url-construction to separate function ([`e14e3bf`](https://github.com/python-gitlab/python-gitlab/commit/e14e3bf0f675c54930af53c832ccd7ab98df89f3))
|
12603
|
+
|
12435
12604
|
* Merge pull request #41 from mjmaenpaa/gitlab_get_exception
|
12436
12605
|
|
12437
12606
|
Gitlab.get() raised GitlabListError instead of GitlabGetError ([`9736e0b`](https://github.com/python-gitlab/python-gitlab/commit/9736e0b0893e298712d1ad356e3f8341852ef0f7))
|
12438
12607
|
|
12439
|
-
* Moved url-construction to separate function ([`e14e3bf`](https://github.com/python-gitlab/python-gitlab/commit/e14e3bf0f675c54930af53c832ccd7ab98df89f3))
|
12440
|
-
|
12441
12608
|
* Gitlab.get() raised GitlabListError instead of GitlabGetError ([`ee54b3e`](https://github.com/python-gitlab/python-gitlab/commit/ee54b3e6927f6c8d3b5f9bcbec0e67b94be8566d))
|
12442
12609
|
|
12443
|
-
* Py3 compatibility with six ([`431e4bd`](https://github.com/python-gitlab/python-gitlab/commit/431e4bdf089354534f6877d39631ff23038e8866))
|
12444
|
-
|
12445
12610
|
* Merge pull request #39 from mjmaenpaa/timeout
|
12446
12611
|
|
12447
12612
|
Timeout support ([`9f134fc`](https://github.com/python-gitlab/python-gitlab/commit/9f134fcaf41594e2e37bf24f20cde128bd21364b))
|
12448
12613
|
|
12449
|
-
* Python 3 compatibility for cli-program ([`d714c4d`](https://github.com/python-gitlab/python-gitlab/commit/d714c4d35bc627d9113a4925f843c54d6123e621))
|
12450
|
-
|
12451
12614
|
* Timeout support ([`d2e591e`](https://github.com/python-gitlab/python-gitlab/commit/d2e591ec75aec916f3b37192ddcdc2163d558995))
|
12452
12615
|
|
12453
|
-
* Python3 compatibility ([`15c0da5`](https://github.com/python-gitlab/python-gitlab/commit/15c0da5552aa57340d25946bb41d0cd079ec495d))
|
12454
|
-
|
12455
12616
|
* Merge pull request #38 from mjmaenpaa/currentuser_key
|
12456
12617
|
|
12457
12618
|
Changed CurrentUser.Key to use _getListOrObject-method like all other functions ([`4664ebd`](https://github.com/python-gitlab/python-gitlab/commit/4664ebd9125d4eb07ee2add768b89362c6902f81))
|
12458
12619
|
|
12620
|
+
* CurrentUser.Key uses _getListOrObject-method ([`afcf1c2`](https://github.com/python-gitlab/python-gitlab/commit/afcf1c23c36a7aa0f65392892ca4abb973e35b43))
|
12621
|
+
|
12459
12622
|
* Merge pull request #37 from mjmaenpaa/list_kwargs
|
12460
12623
|
|
12461
12624
|
No reason to add kwargs to object in Gitlab.list()-method ([`2c86085`](https://github.com/python-gitlab/python-gitlab/commit/2c860856689bac90bbda44d4812a27d5b22144c0))
|
12462
12625
|
|
12463
|
-
* Merge pull request #36 from mjmaenpaa/setFromDict
|
12464
|
-
|
12465
|
-
_setFromDict thinks False is None ([`4c5c39d`](https://github.com/python-gitlab/python-gitlab/commit/4c5c39de41221696fa1d63de13ec61ae88f85f9f))
|
12466
|
-
|
12467
|
-
* CurrentUser.Key uses _getListOrObject-method ([`afcf1c2`](https://github.com/python-gitlab/python-gitlab/commit/afcf1c23c36a7aa0f65392892ca4abb973e35b43))
|
12468
|
-
|
12469
12626
|
* No reason to add kwargs to object in Gitlab.list()-method because GitlabObject
|
12470
12627
|
constructor can handle them. ([`40ce81e`](https://github.com/python-gitlab/python-gitlab/commit/40ce81e9b9cea0dd75c712ccac887afd37416996))
|
12471
12628
|
|
12472
|
-
*
|
12629
|
+
* Merge pull request #36 from mjmaenpaa/setFromDict
|
12473
12630
|
|
12474
|
-
|
12631
|
+
_setFromDict thinks False is None ([`4c5c39d`](https://github.com/python-gitlab/python-gitlab/commit/4c5c39de41221696fa1d63de13ec61ae88f85f9f))
|
12475
12632
|
|
12476
|
-
|
12477
|
-
Uses nose to actually run tests. ([`f458522`](https://github.com/python-gitlab/python-gitlab/commit/f45852205397d84a3ca2b9554ffaacae153791cc))
|
12633
|
+
* _setFromDict thinks False is None ([`3cf35ce`](https://github.com/python-gitlab/python-gitlab/commit/3cf35cedfff4784af9e7b882b85f71b22ec93c25))
|
12478
12634
|
|
12479
12635
|
* Merge pull request #34 from tekacs/master
|
12480
12636
|
|
@@ -12515,16 +12671,6 @@ Closes #28 ([`34d6952`](https://github.com/python-gitlab/python-gitlab/commit/34
|
|
12515
12671
|
|
12516
12672
|
Fix encoding errors on display and update with redirected output ([`2b5ea46`](https://github.com/python-gitlab/python-gitlab/commit/2b5ea468c68058a2d9141ecafda02263dd1845ca))
|
12517
12673
|
|
12518
|
-
* Support state_event in ProjectMilestone
|
12519
|
-
|
12520
|
-
Closes #30 ([`2281283`](https://github.com/python-gitlab/python-gitlab/commit/22812832021911dccdd93ced0ef1088441e3d227))
|
12521
|
-
|
12522
|
-
* add support for branches creation and deletion ([`97e2689`](https://github.com/python-gitlab/python-gitlab/commit/97e26896a7c2916b0f0d2c64934f280d4c9e5dc7))
|
12523
|
-
|
12524
|
-
* add support for UserKey listing and deletion ([`09e4a64`](https://github.com/python-gitlab/python-gitlab/commit/09e4a64cda0531f7dd45984625cf5e1c90bb430f))
|
12525
|
-
|
12526
|
-
* drop the module shebang ([`01335f3`](https://github.com/python-gitlab/python-gitlab/commit/01335f3b904a7ea4c1fee2d5b7f84f6420577834))
|
12527
|
-
|
12528
12674
|
* Fix encoding error when updating with redirected output
|
12529
12675
|
|
12530
12676
|
When output is redirected sys.stdout.encoding is None. Fix this by
|
@@ -12536,6 +12682,16 @@ used by the local system is irrelevant here. ([`ec185cf`](https://github.com/pyt
|
|
12536
12682
|
When redirecting output to a file sys.stdout.encoding is None, so use
|
12537
12683
|
sys.getdefaultencoding() instead. ([`e236fd9`](https://github.com/python-gitlab/python-gitlab/commit/e236fd94c48b949bbbc8e0dc2d55ebfaa1ef0069))
|
12538
12684
|
|
12685
|
+
* Support state_event in ProjectMilestone
|
12686
|
+
|
12687
|
+
Closes #30 ([`2281283`](https://github.com/python-gitlab/python-gitlab/commit/22812832021911dccdd93ced0ef1088441e3d227))
|
12688
|
+
|
12689
|
+
* add support for branches creation and deletion ([`97e2689`](https://github.com/python-gitlab/python-gitlab/commit/97e26896a7c2916b0f0d2c64934f280d4c9e5dc7))
|
12690
|
+
|
12691
|
+
* add support for UserKey listing and deletion ([`09e4a64`](https://github.com/python-gitlab/python-gitlab/commit/09e4a64cda0531f7dd45984625cf5e1c90bb430f))
|
12692
|
+
|
12693
|
+
* drop the module shebang ([`01335f3`](https://github.com/python-gitlab/python-gitlab/commit/01335f3b904a7ea4c1fee2d5b7f84f6420577834))
|
12694
|
+
|
12539
12695
|
* Merge pull request #16 from locke105/master
|
12540
12696
|
|
12541
12697
|
Fix license classifier in setup.py ([`8ce3e30`](https://github.com/python-gitlab/python-gitlab/commit/8ce3e30ba1fd3f9c587746dbe050a528bc6e952a))
|
@@ -12552,16 +12708,16 @@ Update Changelog and AUTHORS ([`1fe783d`](https://github.com/python-gitlab/pytho
|
|
12552
12708
|
|
12553
12709
|
Add support for extra parameters when listing all projects (Refs #12) ([`4b882b7`](https://github.com/python-gitlab/python-gitlab/commit/4b882b7b6b4b303fc18c428a3da2a26e1001e5c2))
|
12554
12710
|
|
12711
|
+
* Add support for extra parameters when listing all projects (Refs #12)
|
12712
|
+
|
12713
|
+
Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c595`](https://github.com/python-gitlab/python-gitlab/commit/1b6c5952f06fe1236e1e75ae68f9c2325e78d372))
|
12714
|
+
|
12555
12715
|
* ProjectMember: constructor should not create a User object ([`1c21423`](https://github.com/python-gitlab/python-gitlab/commit/1c214233360524fae06c9f6946e0956843a000f3))
|
12556
12716
|
|
12557
12717
|
* ids can be unicode
|
12558
12718
|
|
12559
12719
|
Fixes #15 ([`c6e371e`](https://github.com/python-gitlab/python-gitlab/commit/c6e371e7b2e2e499e32dd11feb81c013b8ab32c4))
|
12560
12720
|
|
12561
|
-
* Add support for extra parameters when listing all projects (Refs #12)
|
12562
|
-
|
12563
|
-
Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c595`](https://github.com/python-gitlab/python-gitlab/commit/1b6c5952f06fe1236e1e75ae68f9c2325e78d372))
|
12564
|
-
|
12565
12721
|
* version bump ([`04574f3`](https://github.com/python-gitlab/python-gitlab/commit/04574f381d3d50afa86ec890681105f8f5a2a31e))
|
12566
12722
|
|
12567
12723
|
* support creation of projects for users ([`dc2bf5e`](https://github.com/python-gitlab/python-gitlab/commit/dc2bf5ea5ae827178e1e7a058e39b491ddebc01a))
|
@@ -12584,6 +12740,10 @@ Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c59
|
|
12584
12740
|
|
12585
12741
|
* Merge remote-tracking branch 'github-mrts/master' ([`7fb7c47`](https://github.com/python-gitlab/python-gitlab/commit/7fb7c473c58cc2b4e7567d444ffff3b3ecdb3243))
|
12586
12742
|
|
12743
|
+
* Add support for project events. ([`32d4224`](https://github.com/python-gitlab/python-gitlab/commit/32d422445388766e7cc4913a51bf8890487d4ce5))
|
12744
|
+
|
12745
|
+
* Fix comments. ([`6705928`](https://github.com/python-gitlab/python-gitlab/commit/6705928406667ee010f448e41c14cfa63c263178))
|
12746
|
+
|
12587
12747
|
* add a Key() method for User objects ([`1969abb`](https://github.com/python-gitlab/python-gitlab/commit/1969abb3bbb61c4cbb8499496be9f48bd74cf558))
|
12588
12748
|
|
12589
12749
|
* Merge pull request #10 from ksmets/master
|
@@ -12592,10 +12752,6 @@ Add SSH key for user ([`e31bb9e`](https://github.com/python-gitlab/python-gitlab
|
|
12592
12752
|
|
12593
12753
|
* Add SSH key for user ([`909c10e`](https://github.com/python-gitlab/python-gitlab/commit/909c10e0d155b0fcfcd63129e2f5921a11d9c017))
|
12594
12754
|
|
12595
|
-
* Add support for project events. ([`32d4224`](https://github.com/python-gitlab/python-gitlab/commit/32d422445388766e7cc4913a51bf8890487d4ce5))
|
12596
|
-
|
12597
|
-
* Fix comments. ([`6705928`](https://github.com/python-gitlab/python-gitlab/commit/6705928406667ee010f448e41c14cfa63c263178))
|
12598
|
-
|
12599
12755
|
* Merge pull request #8 from Itxaka/master
|
12600
12756
|
|
12601
12757
|
fixed the requirements auto install from setup.py ([`37e6648`](https://github.com/python-gitlab/python-gitlab/commit/37e6648fe4127a51601a9456a03bbaf8ff674c10))
|
@@ -12627,6 +12783,8 @@ fixed the requirements auto install from setup.py ([`37e6648`](https://github.co
|
|
12627
12783
|
|
12628
12784
|
* 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))
|
12629
12785
|
|
12786
|
+
* Use PRIVATE-TOKEN header for passing the auth token ([`d39c471`](https://github.com/python-gitlab/python-gitlab/commit/d39c471b188ad1302f0ef6c5f7eac4c6e0d1b742))
|
12787
|
+
|
12630
12788
|
* provide a ChangeLog ([`2d5342b`](https://github.com/python-gitlab/python-gitlab/commit/2d5342b54f723f621ada53acdfc5ff5d8b1b8b8b))
|
12631
12789
|
|
12632
12790
|
* provide a AUTHORS file ([`7c85fb7`](https://github.com/python-gitlab/python-gitlab/commit/7c85fb7e865a648b49494add224f286e2343e9ff))
|
@@ -12662,9 +12820,9 @@ Addded API for team access. ([`8f65cf8`](https://github.com/python-gitlab/python
|
|
12662
12820
|
Conflicts:
|
12663
12821
|
gitlab.py ([`cb5b754`](https://github.com/python-gitlab/python-gitlab/commit/cb5b7542edde926f73be6e7a2ab55f944ccbca00))
|
12664
12822
|
|
12665
|
-
*
|
12823
|
+
* Basic team support. ([`5388d19`](https://github.com/python-gitlab/python-gitlab/commit/5388d19f8885d3ca2f93c5e07ed58a1b84a87475))
|
12666
12824
|
|
12667
|
-
*
|
12825
|
+
* Addded API for team access. ([`8a22958`](https://github.com/python-gitlab/python-gitlab/commit/8a22958e20a622400daecb288135793544ad01ad))
|
12668
12826
|
|
12669
12827
|
* improve pretty_print() ([`05ab473`](https://github.com/python-gitlab/python-gitlab/commit/05ab4732ceaee7d6d6c1f162b5925602b7c9ad44))
|
12670
12828
|
|
@@ -12748,8 +12906,6 @@ We can use a more common syntax (-- prefix for options) this way. ([`a8072d9`](h
|
|
12748
12906
|
|
12749
12907
|
* Allow creation of objects using the "hidden API" ([`1d55e67`](https://github.com/python-gitlab/python-gitlab/commit/1d55e67b7335926435cb2298b675698cec1873d0))
|
12750
12908
|
|
12751
|
-
* Basic team support. ([`5388d19`](https://github.com/python-gitlab/python-gitlab/commit/5388d19f8885d3ca2f93c5e07ed58a1b84a87475))
|
12752
|
-
|
12753
12909
|
* Check the needed attributes to create objects
|
12754
12910
|
|
12755
12911
|
Provide a required and optional arguments lists for each object that can
|