python-gitlab 4.7.0__tar.gz → 4.8.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/CHANGELOG.md +873 -746
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/PKG-INFO +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/api-objects.rst +3 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/api-usage.rst +21 -0
- python_gitlab-4.8.0/docs/gl_objects/cluster_agents.rst +41 -0
- python_gitlab-4.8.0/docs/gl_objects/protected_container_repositories.rst +44 -0
- python_gitlab-4.8.0/docs/gl_objects/protected_packages.rst +44 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/variables.rst +25 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/_version.py +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/cli.py +2 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/client.py +17 -3
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/mixins.py +4 -2
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/utils.py +11 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/cli.py +25 -7
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/__init__.py +3 -0
- python_gitlab-4.8.0/gitlab/v4/objects/cluster_agents.py +26 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/commits.py +18 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/files.py +11 -7
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/issues.py +14 -8
- python_gitlab-4.8.0/gitlab/v4/objects/package_protection_rules.py +43 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/projects.py +8 -0
- python_gitlab-4.8.0/gitlab/v4/objects/registry_protection_rules.py +35 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/PKG-INFO +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/SOURCES.txt +10 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/requirements-lint.txt +3 -3
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/requirements-test.txt +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_issues.py +3 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_merge_requests.py +3 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_packages.py +32 -1
- python_gitlab-4.8.0/tests/functional/api/test_registry.py +28 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_repository.py +3 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/.env +1 -1
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/docker-compose.yml +0 -1
- python_gitlab-4.8.0/tests/unit/objects/test_cluster_agents.py +97 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_commits.py +23 -0
- python_gitlab-4.8.0/tests/unit/objects/test_package_protection_rules.py +98 -0
- python_gitlab-4.8.0/tests/unit/objects/test_registry_protection_rules.py +82 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_utils.py +21 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/AUTHORS +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/COPYING +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/MANIFEST.in +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/README.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/Makefile +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/_static/js/gitter.js +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/api/gitlab.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/api/gitlab.v4.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/api-levels.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/api-usage-advanced.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/changelog.md +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/cli-examples.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/cli-objects.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/cli-usage.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/conf.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/ext/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/ext/docstrings.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/ext/manager_tmpl.j2 +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/faq.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/access_requests.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/appearance.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/applications.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/badges.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/boards.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/branches.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/bulk_imports.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/ci_lint.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/clusters.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/commits.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/deploy_keys.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/deploy_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/deployments.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/discussions.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/draft_notes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/emojis.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/environments.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/epics.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/events.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/features.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/geo_nodes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/group_access_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/groups.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/invitations.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/issues.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/iterations.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/job_token_scope.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/keys.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/labels.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/merge_request_approvals.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/merge_requests.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/merge_trains.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/messages.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/milestones.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/namespaces.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/notes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/notifications.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/packages.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/pagesdomains.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/personal_access_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/pipelines_and_jobs.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/project_access_tokens.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/projects.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/protected_branches.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/protected_environments.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/releases.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/remote_mirrors.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/repositories.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/repository_tags.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/resource_groups.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/runners.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/search.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/secure_files.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/settings.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/sidekiq.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/snippets.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/statistics.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/system_hooks.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/templates.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/todos.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/topics.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/users.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/gl_objects/wikis.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/index.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/make.bat +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/docs/release-notes.rst +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/__main__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/_backends/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/_backends/protocol.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/_backends/requests_backend.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/base.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/config.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/const.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/exceptions.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/py.typed +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/types.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/access_requests.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/appearance.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/applications.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/artifacts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/audit_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/award_emojis.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/badges.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/boards.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/branches.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/broadcast_messages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/bulk_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/ci_lint.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/clusters.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/container_registry.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/custom_attributes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/deploy_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/deploy_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/deployments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/discussions.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/draft_notes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/environments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/epics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/export_import.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/features.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/geo_nodes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/group_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/hooks.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/integrations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/invitations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/iterations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/job_token_scope.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/jobs.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/labels.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/ldap.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/members.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/merge_request_approvals.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/merge_requests.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/merge_trains.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/milestones.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/namespaces.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/notes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/notification_settings.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/packages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/pages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/personal_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/pipelines.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/project_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/push_rules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/releases.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/repositories.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/resource_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/reviewers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/runners.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/secure_files.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/service_accounts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/settings.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/sidekiq.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/snippets.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/tags.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/templates.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/todos.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/topics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/triggers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/gitlab/v4/objects/wikis.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/pyproject.toml +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/dependency_links.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/entry_points.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/requires.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/python_gitlab.egg-info/top_level.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/requirements-docker.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/requirements-docs.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/requirements-precommit.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/requirements.txt +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/setup.cfg +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_boards.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_branches.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_bulk_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_current_user.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_deploy_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_deploy_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_epics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_gitlab.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_import_export.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_lazy_objects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_project_job_token_scope.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_projects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_push_rules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_releases.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_services.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_snippets.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_topics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/api/test_wikis.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_artifacts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_packages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_projects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_repository.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_resource_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_v4.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/cli/test_cli_variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/ee-test.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/avatar.png +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/create_license.rb +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/docker.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/invalid_auth.cfg +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/invalid_version.cfg +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/fixtures/set_token.rb +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/functional/helpers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/install/test_install.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/smoke/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/smoke/test_dists.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/_backends/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/_backends/test_requests_backend.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/base/test_rest_manager.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/base/test_rest_object.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/helpers.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/meta/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/meta/test_ensure_type_hints.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/meta/test_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/meta/test_mro.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/mixins/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/mixins/test_meta_mixins.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/mixins/test_mixin_methods.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/mixins/test_object_mixins_attributes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/__init__.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/conftest.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_appearance.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_applications.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_audit_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_badges.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_bridges.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_bulk_imports.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_ci_lint.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_deploy_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_deployments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_draft_notes.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_environments.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_group_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_hooks.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_invitations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_issues.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_iterations.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_job_artifacts.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_job_token_scope.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_jobs.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_keys.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_members.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_merge_request_pipelines.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_merge_requests.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_merge_trains.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_packages.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_personal_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_pipeline_schedules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_pipelines.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_access_tokens.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_import_export.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_merge_request_approvals.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_project_statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_projects.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_registry_repositories.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_releases.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_remote_mirrors.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_repositories.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_groups.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_iteration_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_label_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_milestone_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_resource_state_events.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_runners.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_secure_files.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_services.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_snippets.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_statistics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_submodules.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_todos.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_topics.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_users.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/objects/test_variables.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_cli.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_config.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_exceptions.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_gitlab.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_gitlab_auth.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_gitlab_http_methods.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tests/unit/test_types.py +0 -0
- {python_gitlab-4.7.0 → python_gitlab-4.8.0}/tox.ini +0 -0
@@ -1,5 +1,134 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## v4.8.0 (2024-07-16)
|
4
|
+
|
5
|
+
### Chore
|
6
|
+
|
7
|
+
* chore(deps): update gitlab/gitlab-ee docker tag to v17.1.2-ee.0 ([`6fedfa5`](https://github.com/python-gitlab/python-gitlab/commit/6fedfa546120942757ea48337ce7446914eb3813))
|
8
|
+
|
9
|
+
* chore(deps): update all non-major dependencies ([`4a2b213`](https://github.com/python-gitlab/python-gitlab/commit/4a2b2133b52dac102d6f623bf028bdef6dd5a92f))
|
10
|
+
|
11
|
+
* chore(ci): specify name of "stale" label
|
12
|
+
|
13
|
+
Saw the following error in the log:
|
14
|
+
[#2618] Removing the label "Stale" from this issue...
|
15
|
+
##[error][#2618] Error when removing the label: "Label does not exist"
|
16
|
+
|
17
|
+
My theory is that the case doesn't match ("Stale" != "stale") and that
|
18
|
+
is why it failed. Our label is "stale" so update this to match.
|
19
|
+
Thought of changing the label name on GitHub but then would also
|
20
|
+
require a change here to the "any-of-labels". So it seemed simpler to
|
21
|
+
just change it here.
|
22
|
+
|
23
|
+
It is confusing though that it detected the label "stale", but then
|
24
|
+
couldn't delete it. ([`44f62c4`](https://github.com/python-gitlab/python-gitlab/commit/44f62c49106abce2099d5bb1f3f97b64971da406))
|
25
|
+
|
26
|
+
* chore(ci): stale: allow issues/PRs that have stale label to be closed
|
27
|
+
|
28
|
+
If a `stale` label is manually applied, allow the issue or PR to be
|
29
|
+
closed by the stale job.
|
30
|
+
|
31
|
+
Previously it would require the `stale` label and to also have one of
|
32
|
+
'need info' or 'Waiting for response' labels added. ([`2ab88b2`](https://github.com/python-gitlab/python-gitlab/commit/2ab88b25a64bd8e028cee2deeb842476de54b109))
|
33
|
+
|
34
|
+
* chore(ci): use codecov token when available ([`b74a6fb`](https://github.com/python-gitlab/python-gitlab/commit/b74a6fb5157e55d3e4471a0c5c8378fed8075edc))
|
35
|
+
|
36
|
+
* chore(deps): update python-semantic-release/upload-to-gh-release digest to fe6cc89 ([`3f3ad80`](https://github.com/python-gitlab/python-gitlab/commit/3f3ad80ef5bb2ed837adceae061291b2b5545ed3))
|
37
|
+
|
38
|
+
* chore(deps): update all non-major dependencies ([`0f59069`](https://github.com/python-gitlab/python-gitlab/commit/0f59069420f403a17f67a5c36c81485c9016b59b))
|
39
|
+
|
40
|
+
* chore: add `show_caller` argument to `utils.warn()`
|
41
|
+
|
42
|
+
This allows us to not add the caller's location to the UserWarning
|
43
|
+
message. ([`7d04315`](https://github.com/python-gitlab/python-gitlab/commit/7d04315d7d9641d88b0649e42bf24dd160629af5))
|
44
|
+
|
45
|
+
* chore: use correct type-hint for `die()` ([`9358640`](https://github.com/python-gitlab/python-gitlab/commit/93586405fbfa61317dc75e186799549573bc0bbb))
|
46
|
+
|
47
|
+
* chore(deps): update gitlab/gitlab-ee docker tag to v17.1.1-ee.0 ([`5e98510`](https://github.com/python-gitlab/python-gitlab/commit/5e98510a6c918b33c0db0a7756e8a43a8bdd868a))
|
48
|
+
|
49
|
+
* chore(deps): update python-semantic-release/upload-to-gh-release digest to c7c3b69 ([`23393fa`](https://github.com/python-gitlab/python-gitlab/commit/23393faa0642c66a991fd88f1d2d68aed1d2f172))
|
50
|
+
|
51
|
+
* chore(deps): update all non-major dependencies ([`cf87226`](https://github.com/python-gitlab/python-gitlab/commit/cf87226a81108fbed4f58751f1c03234cc57bcf1))
|
52
|
+
|
53
|
+
### Documentation
|
54
|
+
|
55
|
+
* docs: document how to use `sudo` if modifying an object
|
56
|
+
|
57
|
+
Add a warning about using `sudo` when saving.
|
58
|
+
|
59
|
+
Give an example of how to `get` an object, modify it, and then `save`
|
60
|
+
it using `sudo`
|
61
|
+
|
62
|
+
Closes: #532 ([`d509da6`](https://github.com/python-gitlab/python-gitlab/commit/d509da60155e9470dee197d91926850ea9548de9))
|
63
|
+
|
64
|
+
* docs: variables: add note about `filter` for updating
|
65
|
+
|
66
|
+
Add a note about using `filter` when updating a variable.
|
67
|
+
|
68
|
+
Closes: #2835
|
69
|
+
Closes: #1387
|
70
|
+
Closes: #1125 ([`c378817`](https://github.com/python-gitlab/python-gitlab/commit/c378817389a9510ef508b5a3c90282e5fb60049f))
|
71
|
+
|
72
|
+
### Feature
|
73
|
+
|
74
|
+
* feat(api): add support for project cluster agents ([`32dbc6f`](https://github.com/python-gitlab/python-gitlab/commit/32dbc6f2bee5b22d18c4793f135223d9b9824d15))
|
75
|
+
|
76
|
+
* feat(api): add support for container registry protection rules ([`6d31649`](https://github.com/python-gitlab/python-gitlab/commit/6d31649190279a844bfa591a953b0556cd6fc492))
|
77
|
+
|
78
|
+
* feat(api): add support for package protection rules ([`6b37811`](https://github.com/python-gitlab/python-gitlab/commit/6b37811c3060620afd8b81e54a99d96e4e094ce9))
|
79
|
+
|
80
|
+
* feat(api): add support for commit sequence ([`1f97be2`](https://github.com/python-gitlab/python-gitlab/commit/1f97be2a540122cb872ff59500d85a35031cab5f))
|
81
|
+
|
82
|
+
### Fix
|
83
|
+
|
84
|
+
* fix: issues `closed_by()/related_merge_requests()` use `http_list`
|
85
|
+
|
86
|
+
The `closed_by()` and `related_merge_requests()` API calls return
|
87
|
+
lists. So use the `http_list()` method.
|
88
|
+
|
89
|
+
This will also warn the user if only a subset of the data is returned. ([`de2e4dd`](https://github.com/python-gitlab/python-gitlab/commit/de2e4dd7e80c7b84fd41458117a85558fcbac32d))
|
90
|
+
|
91
|
+
* fix: Have `participants()` method use `http_list()`
|
92
|
+
|
93
|
+
Previously it was using `http_get()` but the `participants` API
|
94
|
+
returns a list of participants. Also by using this then we will warn
|
95
|
+
if only a subset of the participants are returned.
|
96
|
+
|
97
|
+
Closes: #2913 ([`d065275`](https://github.com/python-gitlab/python-gitlab/commit/d065275f2fe296dd00e9bbd0f676d1596f261a85))
|
98
|
+
|
99
|
+
* fix(files): CR: add explicit comparison to `None`
|
100
|
+
|
101
|
+
Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`51d8f88`](https://github.com/python-gitlab/python-gitlab/commit/51d8f888aca469cff1c5ee5e158fb259d2862017))
|
102
|
+
|
103
|
+
* fix(files): make `ref` parameter optional in get raw file api
|
104
|
+
|
105
|
+
The `ref` parameter was made optional in gitlab v13.11.0. ([`00640ac`](https://github.com/python-gitlab/python-gitlab/commit/00640ac11f77e338919d7e9a1457d111c82af371))
|
106
|
+
|
107
|
+
* fix(cli): generate UserWarning if `list` does not return all entries
|
108
|
+
|
109
|
+
Previously in the CLI, calls to `list()` would have `get_all=False` by
|
110
|
+
default. Therefore hiding the fact that not all items are being
|
111
|
+
returned if there were more than 20 items.
|
112
|
+
|
113
|
+
Added `--no-get-all` option to `list` actions. Along with the already
|
114
|
+
existing `--get-all`.
|
115
|
+
|
116
|
+
Closes: #2900 ([`e5a4379`](https://github.com/python-gitlab/python-gitlab/commit/e5a43799b5039261d7034af909011444718a5814))
|
117
|
+
|
118
|
+
### Refactor
|
119
|
+
|
120
|
+
* refactor(package_protection_rules): add missing attributes ([`c307dd2`](https://github.com/python-gitlab/python-gitlab/commit/c307dd20e3df61b118b3b1a8191c0f1880bc9ed6))
|
121
|
+
|
122
|
+
### Test
|
123
|
+
|
124
|
+
* test(registry): disable functional tests for unavailable endpoints ([`ee393a1`](https://github.com/python-gitlab/python-gitlab/commit/ee393a16e1aa6dbf2f9785eb3ef486f7d5b9276f))
|
125
|
+
|
126
|
+
* test(files): test with and without `ref` parameter in test case ([`f316b46`](https://github.com/python-gitlab/python-gitlab/commit/f316b466c04f8ff3c0cca06d0e18ddf2d62d033c))
|
127
|
+
|
128
|
+
* test(files): omit optional `ref` parameter in test case ([`9cb3396`](https://github.com/python-gitlab/python-gitlab/commit/9cb3396d3bd83e82535a2a173b6e52b4f8c020f4))
|
129
|
+
|
130
|
+
* test(fixtures): remove deprecated config option ([`2156949`](https://github.com/python-gitlab/python-gitlab/commit/2156949866ce95af542c127ba4b069e83fcc8104))
|
131
|
+
|
3
132
|
## v4.7.0 (2024-06-28)
|
4
133
|
|
5
134
|
### Chore
|
@@ -1140,8 +1269,6 @@ Co-authored-by: Nejc Habjan <hab.nejc@gmail.com> ([`4f7c784`](https://gith
|
|
1140
1269
|
|
1141
1270
|
* fix(cli): display items when iterator is returned ([`33a04e7`](https://github.com/python-gitlab/python-gitlab/commit/33a04e74fc42d720c7be32172133a614f7268ec1))
|
1142
1271
|
|
1143
|
-
* fix: typo fixed in docs ([`ee5f444`](https://github.com/python-gitlab/python-gitlab/commit/ee5f444b16e4d2f645499ac06f5d81f22867f050))
|
1144
|
-
|
1145
1272
|
### Refactor
|
1146
1273
|
|
1147
1274
|
* refactor(client): let mypy know http_password is set ([`2dd177b`](https://github.com/python-gitlab/python-gitlab/commit/2dd177bf83fdf62f0e9bdcb3bc41d5e4f5631504))
|
@@ -1283,6 +1410,8 @@ too much memory. ([`585e3a8`](https://github.com/python-gitlab/python-gitlab/com
|
|
1283
1410
|
|
1284
1411
|
* fix(deps): bump requests-toolbelt to fix deprecation warning ([`faf842e`](https://github.com/python-gitlab/python-gitlab/commit/faf842e97d4858ff5ebd8ae6996e0cb3ca29881c))
|
1285
1412
|
|
1413
|
+
* fix: typo fixed in docs ([`ee5f444`](https://github.com/python-gitlab/python-gitlab/commit/ee5f444b16e4d2f645499ac06f5d81f22867f050))
|
1414
|
+
|
1286
1415
|
* fix: Use the ProjectIterationManager within the Project object
|
1287
1416
|
|
1288
1417
|
The Project object was previously using the GroupIterationManager
|
@@ -1677,10 +1806,10 @@ chore(deps): update all non-major dependencies ([`9410acb`](https://github.com/p
|
|
1677
1806
|
|
1678
1807
|
* chore(deps): update dependency commitizen to v2.32.5 ([`e180f14`](https://github.com/python-gitlab/python-gitlab/commit/e180f14309fa728e612ad6259c2e2c1f328a140c))
|
1679
1808
|
|
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
1809
|
* chore(deps): update dependency commitizen to v2.32.2 ([`31aea28`](https://github.com/python-gitlab/python-gitlab/commit/31aea286e0767148498af300e78db7dbdf715bda))
|
1683
1810
|
|
1811
|
+
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.32.2 ([`31ba64f`](https://github.com/python-gitlab/python-gitlab/commit/31ba64f2849ce85d434cd04ec7b837ca8f659e03))
|
1812
|
+
|
1684
1813
|
### Feature
|
1685
1814
|
|
1686
1815
|
* feat: Add reset_approvals api
|
@@ -1689,6 +1818,13 @@ Added the newly added reset_approvals merge request api.
|
|
1689
1818
|
|
1690
1819
|
Signed-off-by: Lucas Zampieri <lzampier@redhat.com> ([`88693ff`](https://github.com/python-gitlab/python-gitlab/commit/88693ff2d6f4eecf3c79d017df52738886e2d636))
|
1691
1820
|
|
1821
|
+
* feat: add support for deployment approval endpoint
|
1822
|
+
|
1823
|
+
Add support for the deployment approval endpoint[1]
|
1824
|
+
|
1825
|
+
[1] https://docs.gitlab.com/ee/api/deployments.html#approve-or-reject-a-blocked-deployment
|
1826
|
+
Closes: #2253 ([`9c9eeb9`](https://github.com/python-gitlab/python-gitlab/commit/9c9eeb901b1f3acd3fb0c4f24014ae2ed7c975ec))
|
1827
|
+
|
1692
1828
|
### Fix
|
1693
1829
|
|
1694
1830
|
* fix(cli): add missing attributes for creating MRs ([`1714d0a`](https://github.com/python-gitlab/python-gitlab/commit/1714d0a980afdb648d203751dedf95ee95ac326e))
|
@@ -1749,24 +1885,17 @@ $ tox -e api_func_v4 -- -k test_gitlab.py ([`98f1956`](https://github.com/python
|
|
1749
1885
|
|
1750
1886
|
* chore(deps): update dependency types-requests to v2.28.9 ([`be932f6`](https://github.com/python-gitlab/python-gitlab/commit/be932f6dde5f47fb3d30e654b82563cd719ae8ce))
|
1751
1887
|
|
1752
|
-
* chore(deps): update dependency types-setuptools to v64 ([`4c97f26`](https://github.com/python-gitlab/python-gitlab/commit/4c97f26287cc947ab5ee228a5862f2a20535d2ae))
|
1753
|
-
|
1754
1888
|
* chore(deps): update pre-commit hook pycqa/flake8 to v5 ([`835d884`](https://github.com/python-gitlab/python-gitlab/commit/835d884e702f1ee48575b3154136f1ef4b2f2ff2))
|
1755
1889
|
|
1756
|
-
* chore(deps): update dependency types-requests to v2.28.8 ([`8e5b86f`](https://github.com/python-gitlab/python-gitlab/commit/8e5b86fcc72bf30749228519f1b4a6e29a8dbbe9))
|
1757
|
-
|
1758
1890
|
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.31.0 ([`71d37d9`](https://github.com/python-gitlab/python-gitlab/commit/71d37d98721c0813b096124ed2ccf5487ab463b9))
|
1759
1891
|
|
1760
1892
|
* chore(deps): update dependency commitizen to v2.31.0 ([`4ff0894`](https://github.com/python-gitlab/python-gitlab/commit/4ff0894870977f07657e80bfaa06387f2af87d10))
|
1761
1893
|
|
1762
|
-
|
1763
|
-
|
1764
|
-
* feat: add support for deployment approval endpoint
|
1894
|
+
* chore(deps): update dependency types-setuptools to v64 ([`4c97f26`](https://github.com/python-gitlab/python-gitlab/commit/4c97f26287cc947ab5ee228a5862f2a20535d2ae))
|
1765
1895
|
|
1766
|
-
|
1896
|
+
* chore(deps): update dependency types-requests to v2.28.8 ([`8e5b86f`](https://github.com/python-gitlab/python-gitlab/commit/8e5b86fcc72bf30749228519f1b4a6e29a8dbbe9))
|
1767
1897
|
|
1768
|
-
|
1769
|
-
Closes: #2253 ([`9c9eeb9`](https://github.com/python-gitlab/python-gitlab/commit/9c9eeb901b1f3acd3fb0c4f24014ae2ed7c975ec))
|
1898
|
+
### Feature
|
1770
1899
|
|
1771
1900
|
* feat: add support for merge_base API ([`dd4fbd5`](https://github.com/python-gitlab/python-gitlab/commit/dd4fbd5e43adbbc502624a8de0d30925d798dec0))
|
1772
1901
|
|
@@ -1839,13 +1968,13 @@ query parameters. ([`6d1b62d`](https://github.com/python-gitlab/python-gitlab/co
|
|
1839
1968
|
|
1840
1969
|
* chore: enable mypy check `disallow_any_generics` ([`24d17b4`](https://github.com/python-gitlab/python-gitlab/commit/24d17b43da16dd11ab37b2cee561d9392c90f32e))
|
1841
1970
|
|
1842
|
-
* chore:
|
1971
|
+
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.2 ([`4988c02`](https://github.com/python-gitlab/python-gitlab/commit/4988c029e0dda89ff43375d1cd2f407abdbe3dc7))
|
1843
1972
|
|
1844
|
-
* chore
|
1973
|
+
* chore: enable mypy check `no_implicit_optional` ([`64b208e`](https://github.com/python-gitlab/python-gitlab/commit/64b208e0e91540af2b645da595f0ef79ee7522e1))
|
1845
1974
|
|
1846
1975
|
* chore(deps): update dependency flake8 to v5 ([`cdc384b`](https://github.com/python-gitlab/python-gitlab/commit/cdc384b8a2096e31aff12ea98383e2b1456c5731))
|
1847
1976
|
|
1848
|
-
* chore(deps): update
|
1977
|
+
* chore(deps): update dependency types-requests to v2.28.6 ([`54dd4c3`](https://github.com/python-gitlab/python-gitlab/commit/54dd4c3f857f82aa8781b0daf22fa2dd3c60c2c4))
|
1849
1978
|
|
1850
1979
|
* chore(deps): update dependency commitizen to v2.29.2 ([`30274ea`](https://github.com/python-gitlab/python-gitlab/commit/30274ead81205946a5a7560e592f346075035e0e))
|
1851
1980
|
|
@@ -1856,16 +1985,16 @@ the path. So https://gitlab.com/gitlab-org/gitlab would only show
|
|
1856
1985
|
"gitlab". Using `path_with_namespace` it will now show
|
1857
1986
|
"gitlab-org/gitlab" ([`7cccefe`](https://github.com/python-gitlab/python-gitlab/commit/7cccefe6da0e90391953734d95debab2fe07ea49))
|
1858
1987
|
|
1988
|
+
* chore: enable mypy check `warn_return_any`
|
1989
|
+
|
1990
|
+
Update code so that the `warn_return_any` check passes. ([`76ec4b4`](https://github.com/python-gitlab/python-gitlab/commit/76ec4b481fa931ea36a195ac474812c11babef7b))
|
1991
|
+
|
1859
1992
|
* chore: make code PEP597 compliant
|
1860
1993
|
|
1861
1994
|
Use `encoding="utf-8"` in `open()` and open-like functions.
|
1862
1995
|
|
1863
1996
|
https://peps.python.org/pep-0597/ ([`433dba0`](https://github.com/python-gitlab/python-gitlab/commit/433dba02e0d4462ae84a73d8699fe7f3e07aa410))
|
1864
1997
|
|
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
1998
|
* chore(clusters): deprecate clusters support
|
1870
1999
|
|
1871
2000
|
Cluster support was deprecated in GitLab 14.5 [1]. And disabled by
|
@@ -1925,6 +2054,10 @@ running.
|
|
1925
2054
|
|
1926
2055
|
[1] https://docs.gitlab.com/ee/user/admin_area/monitoring/health_check.html ([`67508e8`](https://github.com/python-gitlab/python-gitlab/commit/67508e8100be18ce066016dcb8e39fa9f0c59e51))
|
1927
2056
|
|
2057
|
+
* test(functional): bump GitLab docker image to 15.2.0-ee.0
|
2058
|
+
|
2059
|
+
Use the GitLab docker image 15.2.0-ee.0 in the functional testing. ([`69014e9`](https://github.com/python-gitlab/python-gitlab/commit/69014e9be3a781be6742478af820ea097d004791))
|
2060
|
+
|
1928
2061
|
### Unknown
|
1929
2062
|
|
1930
2063
|
* Merge pull request #2221 from python-gitlab/jlvillal/unparse
|
@@ -1993,14 +2126,14 @@ Enable using GitLab Enterprise Edition (EE) in the functional tests.
|
|
1993
2126
|
This will allow us to add functional tests for EE only features in the
|
1994
2127
|
functional tests. ([`17c01ea`](https://github.com/python-gitlab/python-gitlab/commit/17c01ea55806c722523f2f9aef0175455ec942c5))
|
1995
2128
|
|
1996
|
-
* chore(deps): update dependency mypy to v0.971 ([`7481d27`](https://github.com/python-gitlab/python-gitlab/commit/7481d271512eaa234315bcdbaf329026589bfda7))
|
1997
|
-
|
1998
2129
|
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.29.0 ([`ad8d62a`](https://github.com/python-gitlab/python-gitlab/commit/ad8d62ae9612c173a749d413f7a84e5b8c0167cf))
|
1999
2130
|
|
2000
|
-
* chore(deps): update typing dependencies ([`f2209a0`](https://github.com/python-gitlab/python-gitlab/commit/f2209a0ea084eaf7fbc89591ddfea138d99527a6))
|
2001
|
-
|
2002
2131
|
* chore(deps): update dependency commitizen to v2.29.0 ([`c365be1`](https://github.com/python-gitlab/python-gitlab/commit/c365be1b908c5e4fda445680c023607bdf6c6281))
|
2003
2132
|
|
2133
|
+
* chore(deps): update dependency mypy to v0.971 ([`7481d27`](https://github.com/python-gitlab/python-gitlab/commit/7481d271512eaa234315bcdbaf329026589bfda7))
|
2134
|
+
|
2135
|
+
* chore(deps): update typing dependencies ([`f2209a0`](https://github.com/python-gitlab/python-gitlab/commit/f2209a0ea084eaf7fbc89591ddfea138d99527a6))
|
2136
|
+
|
2004
2137
|
* chore(authors): fix email and do the ABC ([`9833632`](https://github.com/python-gitlab/python-gitlab/commit/98336320a66d1859ba73e084a5e86edc3aa1643c))
|
2005
2138
|
|
2006
2139
|
* chore: make reset_gitlab() better
|
@@ -2061,21 +2194,21 @@ that naming convention. ([`8cf5cd9`](https://github.com/python-gitlab/python-git
|
|
2061
2194
|
|
2062
2195
|
* chore(ci_lint): add create attributes ([`6e1342f`](https://github.com/python-gitlab/python-gitlab/commit/6e1342fc0b7cf740b25a939942ea02cdd18a9625))
|
2063
2196
|
|
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
2197
|
* chore: simplify multi-nested try blocks
|
2069
2198
|
|
2070
2199
|
Instead of have a multi-nested series of try blocks. Convert it to a
|
2071
2200
|
more readable series of `if` statements. ([`e734470`](https://github.com/python-gitlab/python-gitlab/commit/e7344709d931e2b254d225d77ca1474bc69971f8))
|
2072
2201
|
|
2073
|
-
* chore(
|
2202
|
+
* chore(deps): update dependency requests to v2.28.1 ([`be33245`](https://github.com/python-gitlab/python-gitlab/commit/be3324597aa3f22b0692d3afa1df489f2709a73e))
|
2074
2203
|
|
2075
|
-
|
2204
|
+
* chore(deps): update dependency pylint to v2.14.4 ([`2cee2d4`](https://github.com/python-gitlab/python-gitlab/commit/2cee2d4a86e76d3f63f3608ed6a92e64813613d3))
|
2076
2205
|
|
2077
2206
|
* chore: fix misspelling ([`2d08fc8`](https://github.com/python-gitlab/python-gitlab/commit/2d08fc89fb67de25ad41f64c86a9b8e96e4c261a))
|
2078
2207
|
|
2208
|
+
* chore(docs): convert tabs to spaces
|
2209
|
+
|
2210
|
+
Some tabs snuck into the documentation. Convert them to 4-spaces. ([`9ea5520`](https://github.com/python-gitlab/python-gitlab/commit/9ea5520cec8979000d7f5dbcc950f2250babea96))
|
2211
|
+
|
2079
2212
|
### Documentation
|
2080
2213
|
|
2081
2214
|
* docs(cli): showcase use of token scopes ([`4a6f8d6`](https://github.com/python-gitlab/python-gitlab/commit/4a6f8d67a94a3d104a24081ad1dbad5b2e3d9c3e))
|
@@ -2250,6 +2383,8 @@ Closes: #2116 ([`5d9c198`](https://github.com/python-gitlab/python-gitlab/commit
|
|
2250
2383
|
|
2251
2384
|
* refactor(test-projects): apply suggestions and use fixtures ([`a51f848`](https://github.com/python-gitlab/python-gitlab/commit/a51f848db4204b2f37ae96fd235ae33cb7c2fe98))
|
2252
2385
|
|
2386
|
+
* refactor(test-projects): remove test_restore_project ([`9be0875`](https://github.com/python-gitlab/python-gitlab/commit/9be0875c3793324b4c4dde29519ee62b39a8cc18))
|
2387
|
+
|
2253
2388
|
### Test
|
2254
2389
|
|
2255
2390
|
* test(cli): add tests for token scopes ([`263fe3d`](https://github.com/python-gitlab/python-gitlab/commit/263fe3d24836b34dccdcee0221bd417e0b74fb2e))
|
@@ -2259,10 +2394,6 @@ Closes: #2116 ([`5d9c198`](https://github.com/python-gitlab/python-gitlab/commit
|
|
2259
2394
|
https://github.com/python-gitlab/python-gitlab/issues/1698 has been
|
2260
2395
|
fixed. Add test to show that. ([`75bec7d`](https://github.com/python-gitlab/python-gitlab/commit/75bec7d543dd740c50452b21b0b4509377cd40ce))
|
2261
2396
|
|
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
2397
|
* test: always ensure clean config environment ([`8d4f13b`](https://github.com/python-gitlab/python-gitlab/commit/8d4f13b192afd5d4610eeaf2bbea71c3b6a25964))
|
2267
2398
|
|
2268
2399
|
* test(ee): add an EE specific test ([`10987b3`](https://github.com/python-gitlab/python-gitlab/commit/10987b3089d4fe218dd2116dd871e0a070db3f7f))
|
@@ -2295,6 +2426,8 @@ show up in the log. ([`95fe924`](https://github.com/python-gitlab/python-gitlab/
|
|
2295
2426
|
|
2296
2427
|
* test(functional): replace len() calls with list membership checks ([`97e0eb9`](https://github.com/python-gitlab/python-gitlab/commit/97e0eb9267202052ed14882258dceca0f6c4afd7))
|
2297
2428
|
|
2429
|
+
* test(projects): add unit tests for projects ([`67942f0`](https://github.com/python-gitlab/python-gitlab/commit/67942f0d46b7d445f28f80d3f57aa91eeea97a24))
|
2430
|
+
|
2298
2431
|
### Unknown
|
2299
2432
|
|
2300
2433
|
* Merge pull request #2198 from nickbroon/nickbroon-release-sort-order
|
@@ -2421,10 +2554,10 @@ chore(docs): convert tabs to spaces ([`8771ad8`](https://github.com/python-gitla
|
|
2421
2554
|
|
2422
2555
|
* chore(workflows): explicitly use python-version ([`eb14475`](https://github.com/python-gitlab/python-gitlab/commit/eb1447588dfbbdfe724fca9009ea5451061b5ff0))
|
2423
2556
|
|
2424
|
-
* chore(deps): update typing dependencies ([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
|
2425
|
-
|
2426
2557
|
* chore(deps): update actions/setup-python action to v4 ([`77c1f03`](https://github.com/python-gitlab/python-gitlab/commit/77c1f0352adc8488041318e5dfd2fa98a5b5af62))
|
2427
2558
|
|
2559
|
+
* chore(deps): update typing dependencies ([`acc5c39`](https://github.com/python-gitlab/python-gitlab/commit/acc5c3971f13029288dff2909692a0171f4a66f7))
|
2560
|
+
|
2428
2561
|
* chore(deps): update pre-commit hook pycqa/pylint to v2.14.3 ([`d1fe838`](https://github.com/python-gitlab/python-gitlab/commit/d1fe838b65ccd1a68fb6301bbfd06cd19425a75c))
|
2429
2562
|
|
2430
2563
|
* chore(ci): increase timeout for docker container to come online
|
@@ -2447,10 +2580,6 @@ this will help people when their job fails. ([`d08d07d`](https://github.com/pyth
|
|
2447
2580
|
|
2448
2581
|
* chore(deps): update dependency pylint to v2.14.3 ([`9a16bb1`](https://github.com/python-gitlab/python-gitlab/commit/9a16bb158f3cb34a4c4cb7451127fbc7c96642e2))
|
2449
2582
|
|
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
2583
|
* chore: fix issue found with pylint==2.14.3
|
2455
2584
|
|
2456
2585
|
A new error was reported when running pylint==2.14.3:
|
@@ -2458,6 +2587,10 @@ A new error was reported when running pylint==2.14.3:
|
|
2458
2587
|
|
2459
2588
|
Fixed this issue. ([`eeab035`](https://github.com/python-gitlab/python-gitlab/commit/eeab035ab715e088af73ada00e0a3b0c03527187))
|
2460
2589
|
|
2590
|
+
* chore(deps): update pre-commit hook commitizen-tools/commitizen to v2.27.1 ([`22c5db4`](https://github.com/python-gitlab/python-gitlab/commit/22c5db4bcccf592f5cf7ea34c336208c21769896))
|
2591
|
+
|
2592
|
+
* chore(deps): update dependency requests to v2.28.0 ([`d361f4b`](https://github.com/python-gitlab/python-gitlab/commit/d361f4bd4ec066452a75cf04f64334234478bb02))
|
2593
|
+
|
2461
2594
|
* chore(deps): update dependency mypy to v0.961 ([`f117b2f`](https://github.com/python-gitlab/python-gitlab/commit/f117b2f92226a507a8adbb42023143dac0cc07fc))
|
2462
2595
|
|
2463
2596
|
* chore(deps): update typing dependencies ([`aebf9c8`](https://github.com/python-gitlab/python-gitlab/commit/aebf9c83a4cbf7cf4243cb9b44375ca31f9cc878))
|
@@ -2475,11 +2608,6 @@ Use multiple processors when running PyLint. On my system it took
|
|
2475
2608
|
about 10.3 seconds to run PyLint before this change. After this change
|
2476
2609
|
it takes about 5.8 seconds to run PyLint. ([`7f2240f`](https://github.com/python-gitlab/python-gitlab/commit/7f2240f1b9231e8b856706952ec84234177a495b))
|
2477
2610
|
|
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
2611
|
* chore: enable pylint check: "redefined-outer-name",
|
2484
2612
|
|
2485
2613
|
Enable the pylint check "redefined-outer-name" and fix the errors
|
@@ -2515,6 +2643,11 @@ Enable the pylint checks:
|
|
2515
2643
|
|
2516
2644
|
Update code to resolve errors found ([`1e89164`](https://github.com/python-gitlab/python-gitlab/commit/1e8916438f7c4f67bd7745103b870d84f6ba2d01))
|
2517
2645
|
|
2646
|
+
* chore: rename `whaction` and `action` to `resource_action` in CLI
|
2647
|
+
|
2648
|
+
Rename the variables `whaction` and `action` to `resource_action` to
|
2649
|
+
improve code-readability. ([`fb3f28a`](https://github.com/python-gitlab/python-gitlab/commit/fb3f28a053f0dcf0a110bb8b6fd11696b4ba3dd9))
|
2650
|
+
|
2518
2651
|
* chore: rename `what` to `gitlab_resource`
|
2519
2652
|
|
2520
2653
|
Naming a variable `what` makes it difficult to understand what it is
|
@@ -2576,10 +2709,6 @@ where `get()` in a `GetWithoutIdMixin` based class could return `None`
|
|
2576
2709
|
|
2577
2710
|
Update the type-hints to no longer return `Optional` AKA `None` ([`aa972d4`](https://github.com/python-gitlab/python-gitlab/commit/aa972d49c57f2ebc983d2de1cfb8d18924af6734))
|
2578
2711
|
|
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
2712
|
* chore: correct ModuleNotFoundError() arguments
|
2584
2713
|
|
2585
2714
|
Previously in commit 233b79ed442aac66faf9eb4b0087ea126d6dffc5 I had
|
@@ -2591,6 +2720,10 @@ very helpful.
|
|
2591
2720
|
Correct that and add a unit-test that shows we get the message we
|
2592
2721
|
expect. ([`0b7933c`](https://github.com/python-gitlab/python-gitlab/commit/0b7933c5632c2f81c89f9a97e814badf65d1eb38))
|
2593
2722
|
|
2723
|
+
* chore(deps): update typing dependencies ([`f3f79c1`](https://github.com/python-gitlab/python-gitlab/commit/f3f79c1d3afa923405b83dcea905fec213201452))
|
2724
|
+
|
2725
|
+
* chore(deps): update dependency commitizen to v2.27.1 ([`456f9f1`](https://github.com/python-gitlab/python-gitlab/commit/456f9f14453f2090fdaf88734fe51112bf4e7fde))
|
2726
|
+
|
2594
2727
|
* chore(mixins): remove None check as http_get always returns value ([`f0152dc`](https://github.com/python-gitlab/python-gitlab/commit/f0152dc3cc9a42aa4dc3c0014b4c29381e9b39d6))
|
2595
2728
|
|
2596
2729
|
### Documentation
|
@@ -2659,16 +2792,16 @@ artifacts
|
|
2659
2792
|
|
2660
2793
|
* test(packages): add tests for streaming downloads ([`b644721`](https://github.com/python-gitlab/python-gitlab/commit/b6447211754e126f64e12fc735ad74fe557b7fb4))
|
2661
2794
|
|
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
2795
|
* feat(users): add approve and reject methods to User
|
2667
2796
|
|
2668
2797
|
As requested in #1604.
|
2669
2798
|
|
2670
2799
|
Co-authored-by: John Villalovos <john@sodarock.com> ([`f57139d`](https://github.com/python-gitlab/python-gitlab/commit/f57139d8f1dafa6eb19d0d954b3634c19de6413c))
|
2671
2800
|
|
2801
|
+
* feat(api): support head() method for get and list endpoints ([`ce9216c`](https://github.com/python-gitlab/python-gitlab/commit/ce9216ccc542d834be7f29647c7ee98c2ca5bb01))
|
2802
|
+
|
2803
|
+
* feat(api): implement HEAD method ([`90635a7`](https://github.com/python-gitlab/python-gitlab/commit/90635a7db3c9748745471d2282260418e31c7797))
|
2804
|
+
|
2672
2805
|
* feat(api): convert gitlab.const to Enums
|
2673
2806
|
|
2674
2807
|
This allows accessing the elements by value, i.e.:
|
@@ -2750,8 +2883,6 @@ requires it to be a keyword-only argument. ([`212ddfc`](https://github.com/pytho
|
|
2750
2883
|
|
2751
2884
|
* refactor: remove no-op id argument in GetWithoutIdMixin ([`0f2a602`](https://github.com/python-gitlab/python-gitlab/commit/0f2a602d3a9d6579f5fdfdf945a236ae44e93a12))
|
2752
2885
|
|
2753
|
-
* refactor(test-projects): remove test_restore_project ([`9be0875`](https://github.com/python-gitlab/python-gitlab/commit/9be0875c3793324b4c4dde29519ee62b39a8cc18))
|
2754
|
-
|
2755
2886
|
* refactor(mixins): extract custom type transforms into utils ([`09b3b22`](https://github.com/python-gitlab/python-gitlab/commit/09b3b2225361722f2439952d2dbee6a48a9f9fd9))
|
2756
2887
|
|
2757
2888
|
### Test
|
@@ -2770,14 +2901,12 @@ Enable the pylint "unused-argument" check and resolve issues it found.
|
|
2770
2901
|
|
2771
2902
|
* test(api): add tests for HEAD method ([`b0f02fa`](https://github.com/python-gitlab/python-gitlab/commit/b0f02facef2ea30f24dbfb3c52974f34823e9bba))
|
2772
2903
|
|
2773
|
-
* test
|
2904
|
+
* test: add more tests for RequiredOptional ([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
|
2774
2905
|
|
2775
2906
|
* test: move back to using latest Python 3.11 version ([`8c34781`](https://github.com/python-gitlab/python-gitlab/commit/8c347813e7aaf26a33fe5ae4ae73448beebfbc6c))
|
2776
2907
|
|
2777
2908
|
* test: increase client coverage ([`00aec96`](https://github.com/python-gitlab/python-gitlab/commit/00aec96ed0b60720362c6642b416567ff39aef09))
|
2778
2909
|
|
2779
|
-
* test: add more tests for RequiredOptional ([`ce40fde`](https://github.com/python-gitlab/python-gitlab/commit/ce40fde9eeaabb4a30c5a87d9097b1d4eced1c1b))
|
2780
|
-
|
2781
2910
|
* test(cli): improve coverage for custom actions ([`7327f78`](https://github.com/python-gitlab/python-gitlab/commit/7327f78073caa2fb8aaa6bf0e57b38dd7782fa57))
|
2782
2911
|
|
2783
2912
|
* test(gitlab): increase unit test coverage ([`df072e1`](https://github.com/python-gitlab/python-gitlab/commit/df072e130aa145a368bbdd10be98208a25100f89))
|
@@ -2934,6 +3063,12 @@ call it `flake8` to be more precise. ([`78b4f99`](https://github.com/python-gitl
|
|
2934
3063
|
|
2935
3064
|
* chore(deps): update dependency pylint to v2.13.8 ([`b235bb0`](https://github.com/python-gitlab/python-gitlab/commit/b235bb00f3c09be5bb092a5bb7298e7ca55f2366))
|
2936
3065
|
|
3066
|
+
* chore: exclude `build/` directory from mypy check
|
3067
|
+
|
3068
|
+
The `build/` directory is created by the tox environment
|
3069
|
+
`twine-check`. When the `build/` directory exists `mypy` will have an
|
3070
|
+
error. ([`989a12b`](https://github.com/python-gitlab/python-gitlab/commit/989a12b79ac7dff8bf0d689f36ccac9e3494af01))
|
3071
|
+
|
2937
3072
|
* chore: add `cz` to default tox environment list and skip_missing_interpreters
|
2938
3073
|
|
2939
3074
|
Add the `cz` (`comittizen`) check by default.
|
@@ -2942,12 +3077,6 @@ Set skip_missing_interpreters = True so that when a user runs tox and
|
|
2942
3077
|
doesn't have a specific version of Python it doesn't mark it as an
|
2943
3078
|
error. ([`ba8c052`](https://github.com/python-gitlab/python-gitlab/commit/ba8c0522dc8a116e7a22c42e21190aa205d48253))
|
2944
3079
|
|
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
3080
|
* chore(deps): update dependency types-requests to v2.27.25 ([`d6ea47a`](https://github.com/python-gitlab/python-gitlab/commit/d6ea47a175c17108e5388213abd59c3e7e847b02))
|
2952
3081
|
|
2953
3082
|
* chore(ci): replace commitlint with commitizen ([`b8d15fe`](https://github.com/python-gitlab/python-gitlab/commit/b8d15fed0740301617445e5628ab76b6f5b8baeb))
|
@@ -3084,10 +3213,10 @@ chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://g
|
|
3084
3213
|
|
3085
3214
|
* chore(deps): update typing dependencies ([`d27cc6a`](https://github.com/python-gitlab/python-gitlab/commit/d27cc6a1219143f78aad7e063672c7442e15672e))
|
3086
3215
|
|
3087
|
-
* chore(deps): update dependency pylint to v2.13.5 ([`5709675`](https://github.com/python-gitlab/python-gitlab/commit/570967541ecd46bfb83461b9d2c95bb0830a84fa))
|
3088
|
-
|
3089
3216
|
* chore(deps): update pre-commit hook pycqa/pylint to v2.13.5 ([`17d5c6c`](https://github.com/python-gitlab/python-gitlab/commit/17d5c6c3ba26f8b791ec4571726c533f5bbbde7d))
|
3090
3217
|
|
3218
|
+
* chore(deps): update dependency pylint to v2.13.5 ([`5709675`](https://github.com/python-gitlab/python-gitlab/commit/570967541ecd46bfb83461b9d2c95bb0830a84fa))
|
3219
|
+
|
3091
3220
|
* chore(deps): update codecov/codecov-action action to v3 ([`292e91b`](https://github.com/python-gitlab/python-gitlab/commit/292e91b3cbc468c4a40ed7865c3c98180c1fe864))
|
3092
3221
|
|
3093
3222
|
* chore(deps): update dependency types-setuptools to v57.4.12 ([`6551353`](https://github.com/python-gitlab/python-gitlab/commit/65513538ce60efdde80e5e0667b15739e6d90ac1))
|
@@ -3114,6 +3243,10 @@ chore(deps): update dependency types-requests to v2.27.24 ([`79b903d`](https://g
|
|
3114
3243
|
|
3115
3244
|
### Feature
|
3116
3245
|
|
3246
|
+
* feat(objects): support getting project/group deploy tokens by id ([`fcd37fe`](https://github.com/python-gitlab/python-gitlab/commit/fcd37feff132bd5b225cde9d5f9c88e62b3f1fd6))
|
3247
|
+
|
3248
|
+
* feat(user): support getting user SSH key by id ([`6f93c05`](https://github.com/python-gitlab/python-gitlab/commit/6f93c0520f738950a7c67dbeca8d1ac8257e2661))
|
3249
|
+
|
3117
3250
|
* feat: emit a warning when using a `list()` method returns max
|
3118
3251
|
|
3119
3252
|
A common cause of issues filed and questions raised is that a user
|
@@ -3125,20 +3258,16 @@ To help with this we now emit a warning when the result from a
|
|
3125
3258
|
`per_page` value) and the user is not using either `all=True`,
|
3126
3259
|
`all=False`, `as_list=False`, or `page=X`. ([`1339d64`](https://github.com/python-gitlab/python-gitlab/commit/1339d645ce58a2e1198b898b9549ba5917b1ff12))
|
3127
3260
|
|
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
3261
|
* feat(api): re-add topic delete endpoint
|
3133
3262
|
|
3134
3263
|
This reverts commit e3035a799a484f8d6c460f57e57d4b59217cd6de. ([`d1d96bd`](https://github.com/python-gitlab/python-gitlab/commit/d1d96bda5f1c6991c8ea61dca8f261e5b74b5ab6))
|
3135
3264
|
|
3136
3265
|
### Fix
|
3137
3266
|
|
3138
|
-
* fix: add ChunkedEncodingError to list of retryable exceptions ([`7beb20f`](https://github.com/python-gitlab/python-gitlab/commit/7beb20ff7b7b85fb92fc6b647d9c1bdb7568f27c))
|
3139
|
-
|
3140
3267
|
* fix: avoid passing redundant arguments to API ([`3431887`](https://github.com/python-gitlab/python-gitlab/commit/34318871347b9c563d01a13796431c83b3b1d58c))
|
3141
3268
|
|
3269
|
+
* fix: add ChunkedEncodingError to list of retryable exceptions ([`7beb20f`](https://github.com/python-gitlab/python-gitlab/commit/7beb20ff7b7b85fb92fc6b647d9c1bdb7568f27c))
|
3270
|
+
|
3142
3271
|
* fix(cli): add missing filters for project commit list ([`149d244`](https://github.com/python-gitlab/python-gitlab/commit/149d2446fcc79b31d3acde6e6d51adaf37cbb5d3))
|
3143
3272
|
|
3144
3273
|
* fix: add 52x range to retry transient failures and tests ([`c3ef1b5`](https://github.com/python-gitlab/python-gitlab/commit/c3ef1b5c1eaf1348a18d753dbf7bda3c129e3262))
|
@@ -3277,6 +3406,10 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
|
|
3277
3406
|
|
3278
3407
|
* chore(deps): update dependency mypy to v0.940 ([`dd11084`](https://github.com/python-gitlab/python-gitlab/commit/dd11084dd281e270a480b338aba88b27b991e58e))
|
3279
3408
|
|
3409
|
+
* chore(deps): update black to v22 ([`3f84f1b`](https://github.com/python-gitlab/python-gitlab/commit/3f84f1bb805691b645fac2d1a41901abefccb17e))
|
3410
|
+
|
3411
|
+
* chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v8 ([`5440780`](https://github.com/python-gitlab/python-gitlab/commit/544078068bc9d7a837e75435e468e4749f7375ac))
|
3412
|
+
|
3280
3413
|
* chore(deps): update dependency types-setuptools to v57.4.10 ([`b37fc41`](https://github.com/python-gitlab/python-gitlab/commit/b37fc4153a00265725ca655bc4482714d6b02809))
|
3281
3414
|
|
3282
3415
|
* chore(deps): update dependency pytest to v7 ([`ae8d70d`](https://github.com/python-gitlab/python-gitlab/commit/ae8d70de2ad3ceb450a33b33e189bb0a3f0ff563))
|
@@ -3287,10 +3420,6 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
|
|
3287
3420
|
|
3288
3421
|
* chore(deps): update actions/setup-python action to v3 ([`7f845f7`](https://github.com/python-gitlab/python-gitlab/commit/7f845f7eade3c0cdceec6bfe7b3d087a8586edc5))
|
3289
3422
|
|
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
3423
|
* chore(deps): update dependency sphinx to v4.4.0 ([`425d161`](https://github.com/python-gitlab/python-gitlab/commit/425d1610ca19be775d9fdd857e61d8b4a4ae4db3))
|
3295
3424
|
|
3296
3425
|
* chore(deps): update actions/checkout action to v3 ([`7333cbb`](https://github.com/python-gitlab/python-gitlab/commit/7333cbb65385145a14144119772a1854b41ea9d8))
|
@@ -3305,16 +3434,28 @@ chore(deps): update black to v22.3.0 ([`f942e65`](https://github.com/python-gitl
|
|
3305
3434
|
|
3306
3435
|
### Documentation
|
3307
3436
|
|
3437
|
+
* docs(chore): include docs .js files in sdist ([`3010b40`](https://github.com/python-gitlab/python-gitlab/commit/3010b407bc9baabc6cef071507e8fa47c0f1624d))
|
3438
|
+
|
3308
3439
|
* docs: fix typo and incorrect style ([`2828b10`](https://github.com/python-gitlab/python-gitlab/commit/2828b10505611194bebda59a0e9eb41faf24b77b))
|
3309
3440
|
|
3310
3441
|
* docs: add pipeline test report summary support ([`d78afb3`](https://github.com/python-gitlab/python-gitlab/commit/d78afb36e26f41d727dee7b0952d53166e0df850))
|
3311
3442
|
|
3312
|
-
* docs(chore): include docs .js files in sdist ([`3010b40`](https://github.com/python-gitlab/python-gitlab/commit/3010b407bc9baabc6cef071507e8fa47c0f1624d))
|
3313
|
-
|
3314
3443
|
### Feature
|
3315
3444
|
|
3316
3445
|
* feat(object): add pipeline test report summary support ([`a97e0cf`](https://github.com/python-gitlab/python-gitlab/commit/a97e0cf81b5394b3a2b73d927b4efe675bc85208))
|
3317
3446
|
|
3447
|
+
### Fix
|
3448
|
+
|
3449
|
+
* fix: support RateLimit-Reset header
|
3450
|
+
|
3451
|
+
Some endpoints are not returning the `Retry-After` header when
|
3452
|
+
rate-limiting occurrs. In those cases use the `RateLimit-Reset` [1]
|
3453
|
+
header, if available.
|
3454
|
+
|
3455
|
+
Closes: #1889
|
3456
|
+
|
3457
|
+
[1] https://docs.gitlab.com/ee/user/admin_area/settings/user_and_ip_rate_limits.html#response-headers ([`4060146`](https://github.com/python-gitlab/python-gitlab/commit/40601463c78a6f5d45081700164899b2559b7e55))
|
3458
|
+
|
3318
3459
|
### Style
|
3319
3460
|
|
3320
3461
|
* style: reformat for black v22 ([`93d4403`](https://github.com/python-gitlab/python-gitlab/commit/93d4403f0e46ed354cbcb133821d00642429532f))
|
@@ -3426,16 +3567,6 @@ Co-authored-by: Wadim Klincov <wadim.klincov@siemens.com> ([`7a13b9b`](htt
|
|
3426
3567
|
|
3427
3568
|
### Fix
|
3428
3569
|
|
3429
|
-
* fix: support RateLimit-Reset header
|
3430
|
-
|
3431
|
-
Some endpoints are not returning the `Retry-After` header when
|
3432
|
-
rate-limiting occurrs. In those cases use the `RateLimit-Reset` [1]
|
3433
|
-
header, if available.
|
3434
|
-
|
3435
|
-
Closes: #1889
|
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
3570
|
* fix(services): use slug for id_attr instead of custom methods ([`e30f39d`](https://github.com/python-gitlab/python-gitlab/commit/e30f39dff5726266222b0f56c94f4ccfe38ba527))
|
3440
3571
|
|
3441
3572
|
* fix: remove custom `delete` method for labels
|
@@ -3703,22 +3834,22 @@ Add logging to `tests/functional/conftest.py` to have a better
|
|
3703
3834
|
understanding of what is happening during a test run which is useful
|
3704
3835
|
when trying to troubleshoot issues in the CI. ([`a1ac9ae`](https://github.com/python-gitlab/python-gitlab/commit/a1ac9ae63828ca2012289817410d420da066d8df))
|
3705
3836
|
|
3706
|
-
* chore(docs): use admonitions consistently ([`55c67d1`](https://github.com/python-gitlab/python-gitlab/commit/55c67d1fdb81dcfdf8f398b3184fc59256af513d))
|
3707
|
-
|
3708
3837
|
* chore: fix functional test failure if config present
|
3709
3838
|
|
3710
3839
|
Previously c8256a5933d745f70c7eea0a7d6230b51bac0fbc was done to fix
|
3711
3840
|
this but it missed two other failures. ([`c9ed3dd`](https://github.com/python-gitlab/python-gitlab/commit/c9ed3ddc1253c828dc877dcd55000d818c297ee7))
|
3712
3841
|
|
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))
|
3842
|
+
* chore(docs): use admonitions consistently ([`55c67d1`](https://github.com/python-gitlab/python-gitlab/commit/55c67d1fdb81dcfdf8f398b3184fc59256af513d))
|
3717
3843
|
|
3718
3844
|
* chore(dist): add docs *.md files to sdist
|
3719
3845
|
|
3720
3846
|
build_sphinx to fail due to setup.cfg warning-is-error ([`d9457d8`](https://github.com/python-gitlab/python-gitlab/commit/d9457d860ae7293ca218ab25e9501b0f796caa57))
|
3721
3847
|
|
3848
|
+
* chore: fix missing comma
|
3849
|
+
|
3850
|
+
There was a missing comma which meant the strings were concatenated
|
3851
|
+
instead of being two separate strings. ([`7c59fac`](https://github.com/python-gitlab/python-gitlab/commit/7c59fac12fe69a1080cc227512e620ac5ae40b13))
|
3852
|
+
|
3722
3853
|
* chore: add a stale workflow
|
3723
3854
|
|
3724
3855
|
Use the stale action to close issues and pull-requests with no
|
@@ -3734,9 +3865,16 @@ https://github.com/actions/stale
|
|
3734
3865
|
|
3735
3866
|
Closes: #1649 ([`2c036a9`](https://github.com/python-gitlab/python-gitlab/commit/2c036a992c9d7fdf6ccf0d3132d9b215c6d197f5))
|
3736
3867
|
|
3737
|
-
* chore: add
|
3868
|
+
* chore: add functional test of mergerequest.get()
|
3738
3869
|
|
3739
|
-
|
3870
|
+
Add a functional test of test mergerequest.get() and
|
3871
|
+
mergerequest.get(..., lazy=True)
|
3872
|
+
|
3873
|
+
Closes: #1425 ([`a92b55b`](https://github.com/python-gitlab/python-gitlab/commit/a92b55b81eb3586e4144f9332796c94747bf9cfe))
|
3874
|
+
|
3875
|
+
* chore: add temporary banner for v3 ([`a349793`](https://github.com/python-gitlab/python-gitlab/commit/a349793307e3a975bb51f864b48e5e9825f70182))
|
3876
|
+
|
3877
|
+
### Ci
|
3740
3878
|
|
3741
3879
|
* ci: don't fail CI if unable to upload the code coverage data
|
3742
3880
|
|
@@ -3770,8 +3908,6 @@ See https://docs.gitlab.com/ee/api/group_access_tokens.html ([`c01b7c4`](https:/
|
|
3770
3908
|
|
3771
3909
|
### Fix
|
3772
3910
|
|
3773
|
-
* fix(cli): add missing list filters for environments ([`6f64d40`](https://github.com/python-gitlab/python-gitlab/commit/6f64d4098ed4a890838c6cf43d7a679e6be4ac6c))
|
3774
|
-
|
3775
3911
|
* fix: use url-encoded ID in all paths
|
3776
3912
|
|
3777
3913
|
Make sure all usage of the ID in the URL path is encoded. Normally it
|
@@ -3811,6 +3947,8 @@ Closes: #848
|
|
3811
3947
|
[1] https://docs.gitlab.com/ee/api/members.html#list-all-members-of-a-group-or-project-including-inherited-and-invited-members
|
3812
3948
|
[2] https://docs.gitlab.com/ee/api/members.html#get-a-member-of-a-group-or-project-including-inherited-and-invited-members ([`755e0a3`](https://github.com/python-gitlab/python-gitlab/commit/755e0a32e8ca96a3a3980eb7d7346a1a899ad58b))
|
3813
3949
|
|
3950
|
+
* fix(cli): add missing list filters for environments ([`6f64d40`](https://github.com/python-gitlab/python-gitlab/commit/6f64d4098ed4a890838c6cf43d7a679e6be4ac6c))
|
3951
|
+
|
3814
3952
|
* fix(api): services: add missing `lazy` parameter
|
3815
3953
|
|
3816
3954
|
Commit 8da0b758c589f608a6ae4eeb74b3f306609ba36d added the `lazy`
|
@@ -4104,13 +4242,6 @@ Closes: #1477 ([`d56a434`](https://github.com/python-gitlab/python-gitlab/commit
|
|
4104
4242
|
|
4105
4243
|
* chore: fix typo in MR documentation ([`2254222`](https://github.com/python-gitlab/python-gitlab/commit/2254222094d218b31a6151049c7a43e19c593a97))
|
4106
4244
|
|
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
4245
|
* chore(deps): update dependency argcomplete to v2 ([`c6d7e9a`](https://github.com/python-gitlab/python-gitlab/commit/c6d7e9aaddda2f39262b695bb98ea4d90575fcce))
|
4115
4246
|
|
4116
4247
|
* chore(deps): update dependency requests to v2.27.0 ([`f8c3d00`](https://github.com/python-gitlab/python-gitlab/commit/f8c3d009db3aca004bbd64894a795ee01378cd26))
|
@@ -4160,13 +4291,6 @@ When running with docker-compose on Ubuntu 20.04 I got the error:
|
|
4160
4291
|
Changing the version in the docker-compose.yml file fro '3' to '3.5'
|
4161
4292
|
resolved the issue. ([`79321aa`](https://github.com/python-gitlab/python-gitlab/commit/79321aa0e33f0f4bd2ebcdad47769a1a6e81cba8))
|
4162
4293
|
|
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
4294
|
* chore: generate artifacts for the docs build in the CI
|
4171
4295
|
|
4172
4296
|
When building the docs store the created documentation as an artifact
|
@@ -4180,11 +4304,14 @@ reviewing changes to the documentation.
|
|
4180
4304
|
See https://github.com/actions/upload-artifact for more information on
|
4181
4305
|
how this works. ([`85b43ae`](https://github.com/python-gitlab/python-gitlab/commit/85b43ae4a96b72e2f29e36a0aca5321ed78f28d2))
|
4182
4306
|
|
4183
|
-
* chore
|
4307
|
+
* chore: add and document optional parameters for get MR
|
4184
4308
|
|
4185
|
-
|
4309
|
+
Add and document (some of the) optional parameters that can be done
|
4310
|
+
for a `project.merge_requests.get()`
|
4186
4311
|
|
4187
|
-
|
4312
|
+
Closes #1775 ([`bfa3dbe`](https://github.com/python-gitlab/python-gitlab/commit/bfa3dbe516cfa8824b720ba4c52dd05054a855d7))
|
4313
|
+
|
4314
|
+
* chore(deps): update pre-commit hook alessandrojcm/commitlint-pre-commit-hook to v6 ([`fb9110b`](https://github.com/python-gitlab/python-gitlab/commit/fb9110b1849cea8fa5eddf56f1dbfc1c75f10ad9))
|
4188
4315
|
|
4189
4316
|
* chore: remove '# type: ignore' for new mypy version
|
4190
4317
|
|
@@ -4194,7 +4321,11 @@ mypy 0.920 now understands the type of
|
|
4194
4321
|
|
4195
4322
|
* chore(deps): update dependency mypy to v0.920 ([`a519b2f`](https://github.com/python-gitlab/python-gitlab/commit/a519b2ffe9c8a4bb42d6add5117caecc4bf6ec66))
|
4196
4323
|
|
4197
|
-
* chore(deps): update pre-commit hook
|
4324
|
+
* chore(deps): update pre-commit hook pycqa/flake8 to v4 ([`98a5592`](https://github.com/python-gitlab/python-gitlab/commit/98a5592ae7246bf927beb3300211007c0fadba2f))
|
4325
|
+
|
4326
|
+
* chore(deps): update pre-commit hook psf/black to v21 ([`b86e819`](https://github.com/python-gitlab/python-gitlab/commit/b86e819e6395a84755aaf42334b17567a1bed5fd))
|
4327
|
+
|
4328
|
+
* chore(deps): update pre-commit hook pycqa/isort to v5.10.1 ([`8ac4f4a`](https://github.com/python-gitlab/python-gitlab/commit/8ac4f4a2ba901de1ad809e4fc2fe787e37703a50))
|
4198
4329
|
|
4199
4330
|
* chore(ci): enable renovate for pre-commit ([`1ac4329`](https://github.com/python-gitlab/python-gitlab/commit/1ac432900d0f87bb83c77aa62757f8f819296e3e))
|
4200
4331
|
|
@@ -4202,14 +4333,14 @@ mypy 0.920 now understands the type of
|
|
4202
4333
|
|
4203
4334
|
Closes #1764 ([`c80b3b7`](https://github.com/python-gitlab/python-gitlab/commit/c80b3b75aff53ae228ec05ddf1c1e61d91762846))
|
4204
4335
|
|
4205
|
-
* chore(deps): update dependency sphinx to v4.3.2 ([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
|
4206
|
-
|
4207
4336
|
* chore: add .env as a file that search tools should not ignore
|
4208
4337
|
|
4209
4338
|
The `.env` file was not set as a file that should not be ignored by
|
4210
4339
|
search tools. We want to have the search tools search any `.env`
|
4211
4340
|
files. ([`c9318a9`](https://github.com/python-gitlab/python-gitlab/commit/c9318a9f73c532bee7ba81a41de1fb521ab25ced))
|
4212
4341
|
|
4342
|
+
* chore(deps): update dependency sphinx to v4.3.2 ([`2210e56`](https://github.com/python-gitlab/python-gitlab/commit/2210e56da57a9e82e6fd2977453b2de4af14bb6f))
|
4343
|
+
|
4213
4344
|
* chore(deps): update dependency types-requests to v2.26.2 ([`ac7e329`](https://github.com/python-gitlab/python-gitlab/commit/ac7e32989a1e7b217b448f57bf2943ff56531983))
|
4214
4345
|
|
4215
4346
|
* chore: add Python 3.11 testing
|
@@ -4240,6 +4371,11 @@ ensure that the get methods are defined with the correct return type. ([`d27c50a
|
|
4240
4371
|
If new new push is done to a pull-request, then cancel any already
|
4241
4372
|
running github workflow jobs in order to conserve resources. ([`fd81569`](https://github.com/python-gitlab/python-gitlab/commit/fd8156991556706f776c508c373224b54ef4e14f))
|
4242
4373
|
|
4374
|
+
* chore: add running unit tests on windows/macos
|
4375
|
+
|
4376
|
+
Add running the unit tests on windows-latest and macos-latest with
|
4377
|
+
Python 3.10. ([`ad5d60c`](https://github.com/python-gitlab/python-gitlab/commit/ad5d60c305857a8e8c06ba4f6db788bf918bb63f))
|
4378
|
+
|
4243
4379
|
* chore: fix pylint error "expression-not-assigned"
|
4244
4380
|
|
4245
4381
|
Fix pylint error "expression-not-assigned" and remove check from the
|
@@ -4248,11 +4384,6 @@ disabled list.
|
|
4248
4384
|
And I personally think it is much more readable now and is less lines
|
4249
4385
|
of code. ([`a90eb23`](https://github.com/python-gitlab/python-gitlab/commit/a90eb23cb4903ba25d382c37ce1c0839642ba8fd))
|
4250
4386
|
|
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
4387
|
* chore: set pre-commit mypy args to empty list
|
4257
4388
|
|
4258
4389
|
https://github.com/pre-commit/mirrors-mypy/blob/master/.pre-commit-hooks.yaml
|
@@ -4282,10 +4413,11 @@ changes to the code. ([`a86d049`](https://github.com/python-gitlab/python-gitlab
|
|
4282
4413
|
|
4283
4414
|
* chore(deps): update dependency black to v21.12b0 ([`ab841b8`](https://github.com/python-gitlab/python-gitlab/commit/ab841b8c63183ca20b866818ab2f930a5643ba5f))
|
4284
4415
|
|
4285
|
-
* chore:
|
4416
|
+
* chore(docs): link to main, not master ([`af0cb4d`](https://github.com/python-gitlab/python-gitlab/commit/af0cb4d18b8bfbc0624ea2771d73544dc1b24b54))
|
4286
4417
|
|
4287
|
-
|
4288
|
-
|
4418
|
+
* chore(docs): use builtin autodoc hints ([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
|
4419
|
+
|
4420
|
+
* chore(docs): load autodoc-typehints module ([`bd366ab`](https://github.com/python-gitlab/python-gitlab/commit/bd366ab9e4b552fb29f7a41564cc180a659bba2f))
|
4289
4421
|
|
4290
4422
|
* chore: attempt to be more informative for missing attributes
|
4291
4423
|
|
@@ -4303,11 +4435,10 @@ Update the FAQ in the docs to add a section discussing the issue.
|
|
4303
4435
|
|
4304
4436
|
Closes #1138 ([`1839c9e`](https://github.com/python-gitlab/python-gitlab/commit/1839c9e7989163a5cc9a201241942b7faca6e214))
|
4305
4437
|
|
4306
|
-
* chore
|
4307
|
-
|
4308
|
-
* chore(docs): use builtin autodoc hints ([`5e9c943`](https://github.com/python-gitlab/python-gitlab/commit/5e9c94313f6714a159993cefb488aca3326e3e66))
|
4438
|
+
* chore: use constants from gitlab.const module
|
4309
4439
|
|
4310
|
-
|
4440
|
+
Have code use constants from the gitlab.const module instead of from
|
4441
|
+
the top-level gitlab module. ([`6b8067e`](https://github.com/python-gitlab/python-gitlab/commit/6b8067e668b6a37a19e07d84e9a0d2d2a99b4d31))
|
4311
4442
|
|
4312
4443
|
* chore(tests): apply review suggestions ([`381c748`](https://github.com/python-gitlab/python-gitlab/commit/381c748415396e0fe54bb1f41a3303bab89aa065))
|
4313
4444
|
|
@@ -4347,25 +4478,6 @@ so remove installation of `types-toml`.
|
|
4347
4478
|
To determine the test count the following command was run:
|
4348
4479
|
$ tox -e py39 -- -k test_ensure_type_hints ([`a2f59f4`](https://github.com/python-gitlab/python-gitlab/commit/a2f59f4e3146b8871a9a1d66ee84295b44321ecb))
|
4349
4480
|
|
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
4481
|
* chore: add type-hints to gitlab/v4/objects/files.py ([`0c22bd9`](https://github.com/python-gitlab/python-gitlab/commit/0c22bd921bc74f48fddd0ff7d5e7525086264d54))
|
4370
4482
|
|
4371
4483
|
* chore: add type-hints to gitlab/v4/objects/labels.py ([`d04e557`](https://github.com/python-gitlab/python-gitlab/commit/d04e557fb09655a0433363843737e19d8e11c936))
|
@@ -4400,6 +4512,27 @@ breaks things.
|
|
4400
4512
|
Now check in our auto-manager creation if our attribute is called
|
4401
4513
|
'manager'. If so we ignore it. ([`9a451a8`](https://github.com/python-gitlab/python-gitlab/commit/9a451a892d37e0857af5c82c31a96d68ac161738))
|
4402
4514
|
|
4515
|
+
* chore(deps): update dependency types-setuptools to v57.4.3 ([`ec2c68b`](https://github.com/python-gitlab/python-gitlab/commit/ec2c68b0b41ac42a2bca61262a917a969cbcbd09))
|
4516
|
+
|
4517
|
+
* chore(deps): update dependency black to v21 ([`5bca87c`](https://github.com/python-gitlab/python-gitlab/commit/5bca87c1e3499eab9b9a694c1f5d0d474ffaca39))
|
4518
|
+
|
4519
|
+
* chore: enable mypy for tests/meta/* ([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
|
4520
|
+
|
4521
|
+
* chore: have renovate upgrade black version (#1700)
|
4522
|
+
|
4523
|
+
renovate is not upgrading the `black` package. There is an open
|
4524
|
+
issue[1] about this.
|
4525
|
+
|
4526
|
+
Also change .commitlintrc.json to allow 200 character footer lines in
|
4527
|
+
the commit message. Otherwise would be forced to split the URL across
|
4528
|
+
multiple lines making it un-clickable :(
|
4529
|
+
|
4530
|
+
Use suggested work-arounds from:
|
4531
|
+
https://github.com/renovatebot/renovate/issues/7167#issuecomment-904106838
|
4532
|
+
https://github.com/scop/bash-completion/blob/e7497f6ee8232065ec11450a52a1f244f345e2c6/renovate.json#L34-L38
|
4533
|
+
|
4534
|
+
[1] https://github.com/renovatebot/renovate/issues/7167 ([`21228cd`](https://github.com/python-gitlab/python-gitlab/commit/21228cd14fe18897485728a01c3d7103bff7f822))
|
4535
|
+
|
4403
4536
|
* chore: correct test_groups.py test
|
4404
4537
|
|
4405
4538
|
The test was checking twice if the same group3 was not in the returned
|
@@ -4411,8 +4544,6 @@ list. ([`9c878a4`](https://github.com/python-gitlab/python-gitlab/commit/9c878a4
|
|
4411
4544
|
|
4412
4545
|
* chore: add type-hints to gitlab/v4/objects/merge_request_approvals.py ([`cf3a99a`](https://github.com/python-gitlab/python-gitlab/commit/cf3a99a0c4cf3dc51e946bf29dc44c21b3be9dac))
|
4413
4546
|
|
4414
|
-
* chore: enable mypy for tests/meta/* ([`ba7707f`](https://github.com/python-gitlab/python-gitlab/commit/ba7707f6161463260710bd2b109b172fd63472a1))
|
4415
|
-
|
4416
4547
|
* chore: check setup.py with mypy
|
4417
4548
|
|
4418
4549
|
Prior commit 06184daafd5010ba40bb39a0768540b7e98bd171 fixed the
|
@@ -4512,6 +4643,10 @@ GetMixin. ([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b7
|
|
4512
4643
|
|
4513
4644
|
* chore(objects): remove non-existing trigger ownership method ([`8dc7f40`](https://github.com/python-gitlab/python-gitlab/commit/8dc7f40044ce8c478769f25a87c5ceb1aa76b595))
|
4514
4645
|
|
4646
|
+
* chore: add type-hints to gitlab/v4/objects/users.py
|
4647
|
+
|
4648
|
+
Adding type-hints to gitlab/v4/objects/users.py ([`88988e3`](https://github.com/python-gitlab/python-gitlab/commit/88988e3059ebadd3d1752db60c2d15b7e60e7c46))
|
4649
|
+
|
4515
4650
|
* chore(deps): update dependency types-requests to v2.25.9 ([`e3912ca`](https://github.com/python-gitlab/python-gitlab/commit/e3912ca69c2213c01cd72728fd669724926fd57a))
|
4516
4651
|
|
4517
4652
|
* chore: fix type-check issue shown by new requests-types
|
@@ -4519,10 +4654,10 @@ GetMixin. ([`8b75a77`](https://github.com/python-gitlab/python-gitlab/commit/8b7
|
|
4519
4654
|
types-requests==2.25.9 changed a type-hint. Update code to handle this
|
4520
4655
|
change. ([`0ee9aa4`](https://github.com/python-gitlab/python-gitlab/commit/0ee9aa4117b1e0620ba3cade10ccb94944754071))
|
4521
4656
|
|
4522
|
-
* chore(deps): update dependency sphinx to v4 ([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
|
4523
|
-
|
4524
4657
|
* chore(deps): update python docker tag to v3.10 ([`b3d6d91`](https://github.com/python-gitlab/python-gitlab/commit/b3d6d91fed4e5b8424e1af9cadb2af5b6cd8162f))
|
4525
4658
|
|
4659
|
+
* chore(deps): update dependency sphinx to v4 ([`73745f7`](https://github.com/python-gitlab/python-gitlab/commit/73745f73e5180dd21f450ac4d8cbcca19930e549))
|
4660
|
+
|
4526
4661
|
* chore: clean up install docs ([`a5d8b7f`](https://github.com/python-gitlab/python-gitlab/commit/a5d8b7f2a9cf019c82bef1a166d2dc24f93e1992))
|
4527
4662
|
|
4528
4663
|
* chore: attempt to fix flaky functional test
|
@@ -4543,10 +4678,6 @@ Any type-annotation that annotates it to be of type *Manager (with the
|
|
4543
4678
|
exception of RESTManager) will cause the manager to be created on the
|
4544
4679
|
object. ([`d8de4dc`](https://github.com/python-gitlab/python-gitlab/commit/d8de4dc373dc608be6cf6ba14a2acc7efd3fa7a7))
|
4545
4680
|
|
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
4681
|
* chore: improve type-hinting for managers
|
4551
4682
|
|
4552
4683
|
The 'managers' are dynamically created. This unfortunately means that
|
@@ -4585,12 +4716,12 @@ Rename:
|
|
4585
4716
|
|
4586
4717
|
* docs: use annotations for return types ([`79e785e`](https://github.com/python-gitlab/python-gitlab/commit/79e785e765f4219fe6001ef7044235b82c5e7754))
|
4587
4718
|
|
4719
|
+
* docs: only use type annotations for documentation ([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
|
4720
|
+
|
4588
4721
|
* docs: update docs to use gitlab.const for constants
|
4589
4722
|
|
4590
4723
|
Update the docs to use gitlab.const to access constants. ([`b3b0b5f`](https://github.com/python-gitlab/python-gitlab/commit/b3b0b5f1da5b9da9bf44eac33856ed6eadf37dd6))
|
4591
4724
|
|
4592
|
-
* docs: only use type annotations for documentation ([`b7dde0d`](https://github.com/python-gitlab/python-gitlab/commit/b7dde0d7aac8dbaa4f47f9bfb03fdcf1f0b01c41))
|
4593
|
-
|
4594
4725
|
* docs: add links to the GitLab API docs
|
4595
4726
|
|
4596
4727
|
Add links to the GitLab API docs for merge_requests.py as it contains
|
@@ -4659,17 +4790,21 @@ Closes #1744 ([`a246ce8`](https://github.com/python-gitlab/python-gitlab/commit/
|
|
4659
4790
|
|
4660
4791
|
* feat: add delete on package_file object ([`124667b`](https://github.com/python-gitlab/python-gitlab/commit/124667bf16b1843ae52e65a3cc9b8d9235ff467e))
|
4661
4792
|
|
4793
|
+
* feat(api): add support for epic notes
|
4794
|
+
|
4795
|
+
Added support for notes on group epics
|
4796
|
+
|
4797
|
+
Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`7f4edb5`](https://github.com/python-gitlab/python-gitlab/commit/7f4edb53e9413f401c859701d8c3bac4a40706af))
|
4798
|
+
|
4662
4799
|
* feat: add support for `projects.groups.list()`
|
4663
4800
|
|
4664
4801
|
Add support for `projects.groups.list()` endpoint.
|
4665
4802
|
|
4666
4803
|
Closes #1717 ([`68ff595`](https://github.com/python-gitlab/python-gitlab/commit/68ff595967a5745b369a93d9d18fef48b65ebedb))
|
4667
4804
|
|
4668
|
-
* feat(api): add
|
4669
|
-
|
4670
|
-
Added support for notes on group epics
|
4805
|
+
* feat(api): add merge trains
|
4671
4806
|
|
4672
|
-
|
4807
|
+
Add support for merge trains ([`fd73a73`](https://github.com/python-gitlab/python-gitlab/commit/fd73a738b429be0a2642d5b777d5e56a4c928787))
|
4673
4808
|
|
4674
4809
|
* feat(api): add project milestone promotion
|
4675
4810
|
|
@@ -4677,10 +4812,6 @@ Adds promotion to Project Milestones
|
|
4677
4812
|
|
4678
4813
|
Signed-off-by: Raimund Hook <raimund.hook@exfo.com> ([`f068520`](https://github.com/python-gitlab/python-gitlab/commit/f0685209f88d1199873c1f27d27f478706908fd3))
|
4679
4814
|
|
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
4815
|
* feat(api): add merge request approval state
|
4685
4816
|
|
4686
4817
|
Add support for merge request approval state ([`f41b093`](https://github.com/python-gitlab/python-gitlab/commit/f41b0937aec5f4a5efba44155cc2db77c7124e5e))
|
@@ -5152,10 +5283,10 @@ feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](ht
|
|
5152
5283
|
|
5153
5284
|
* chore: skip EE test case in functional tests ([`953f207`](https://github.com/python-gitlab/python-gitlab/commit/953f207466c53c28a877f2a88da9160acef40643))
|
5154
5285
|
|
5155
|
-
* chore(deps): update dependency mypy to v0.910 ([`02a56f3`](https://github.com/python-gitlab/python-gitlab/commit/02a56f397880b3939b8e737483ac6f95f809ac9c))
|
5156
|
-
|
5157
5286
|
* chore(deps): update dependency types-requests to v2 ([`a81a926`](https://github.com/python-gitlab/python-gitlab/commit/a81a926a0979e3272abfb2dc40d2f130d3a0ba5a))
|
5158
5287
|
|
5288
|
+
* chore(deps): update dependency mypy to v0.910 ([`02a56f3`](https://github.com/python-gitlab/python-gitlab/commit/02a56f397880b3939b8e737483ac6f95f809ac9c))
|
5289
|
+
|
5159
5290
|
* chore(deps): update precommit hook pycqa/isort to v5.9.1 ([`c57ffe3`](https://github.com/python-gitlab/python-gitlab/commit/c57ffe3958c1475c8c79bb86fc4b101d82350d75))
|
5160
5291
|
|
5161
5292
|
* chore(deps): update dependency isort to v5.9.1 ([`0479dba`](https://github.com/python-gitlab/python-gitlab/commit/0479dba8a26d2588d9616dbeed351b0256f4bf87))
|
@@ -5170,9 +5301,14 @@ feat(api): add `name_regex_keep` attribute in `delete_in_bulk()` ([`85713bb`](ht
|
|
5170
5301
|
|
5171
5302
|
* chore(deps): update dependency types-pyyaml to v0.1.8 ([`e566767`](https://github.com/python-gitlab/python-gitlab/commit/e56676730d3407efdf4255b3ca7ee13b7c36eb53))
|
5172
5303
|
|
5304
|
+
* chore(deps): update dependency types-requests to v0.1.11 ([`6ba629c`](https://github.com/python-gitlab/python-gitlab/commit/6ba629c71a4cf8ced7060580a6e6643738bc4186))
|
5305
|
+
|
5173
5306
|
* chore(deps): update dependency mypy to v0.902 ([`19c9736`](https://github.com/python-gitlab/python-gitlab/commit/19c9736de06d032569020697f15ea9d3e2b66120))
|
5174
5307
|
|
5175
|
-
* chore
|
5308
|
+
* chore: add new required type packages for mypy
|
5309
|
+
|
5310
|
+
New version of mypy flagged errors for missing types. Install the
|
5311
|
+
recommended type-* packages that resolve the issues. ([`a7371e1`](https://github.com/python-gitlab/python-gitlab/commit/a7371e19520325a725813e328004daecf9259dd2))
|
5176
5312
|
|
5177
5313
|
* chore: add type-hints to gitlab/v4/objects/projects.py
|
5178
5314
|
|
@@ -5188,14 +5324,16 @@ Adding type-hints to gitlab/v4/objects/projects.py ([`872dd6d`](https://github.c
|
|
5188
5324
|
|
5189
5325
|
### Feature
|
5190
5326
|
|
5327
|
+
* feat(api): add group hooks ([`4a7e9b8`](https://github.com/python-gitlab/python-gitlab/commit/4a7e9b86aa348b72925bce3af1e5d988b8ce3439))
|
5328
|
+
|
5191
5329
|
* feat(release): allow to update release
|
5192
5330
|
|
5193
5331
|
Release API now supports PUT. ([`b4c4787`](https://github.com/python-gitlab/python-gitlab/commit/b4c4787af54d9db6c1f9e61154be5db9d46de3dd))
|
5194
5332
|
|
5195
|
-
* feat(api): add group hooks ([`4a7e9b8`](https://github.com/python-gitlab/python-gitlab/commit/4a7e9b86aa348b72925bce3af1e5d988b8ce3439))
|
5196
|
-
|
5197
5333
|
* feat(api): remove responsibility for API inconsistencies for MR reviewers ([`3d985ee`](https://github.com/python-gitlab/python-gitlab/commit/3d985ee8cdd5d27585678f8fbb3eb549818a78eb))
|
5198
5334
|
|
5335
|
+
* feat(api): add support for creating/editing reviewers in project merge requests ([`676d1f6`](https://github.com/python-gitlab/python-gitlab/commit/676d1f6565617a28ee84eae20e945f23aaf3d86f))
|
5336
|
+
|
5199
5337
|
* feat(api): add MR pipeline manager in favor of pipelines() method ([`954357c`](https://github.com/python-gitlab/python-gitlab/commit/954357c49963ef51945c81c41fd4345002f9fb98))
|
5200
5338
|
|
5201
5339
|
### Test
|
@@ -5250,10 +5388,7 @@ chore: add new required type packages for mypy ([`5446423`](https://github.com/p
|
|
5250
5388
|
|
5251
5389
|
### Chore
|
5252
5390
|
|
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))
|
5391
|
+
* chore(ci): use admin PAT for release workflow ([`d175d41`](https://github.com/python-gitlab/python-gitlab/commit/d175d416d5d94f4806f4262e1f11cfee99fb0135))
|
5257
5392
|
|
5258
5393
|
* chore: sync create and update attributes for Projects
|
5259
5394
|
|
@@ -5270,7 +5405,11 @@ Closes: #1497 ([`0044bd2`](https://github.com/python-gitlab/python-gitlab/commit
|
|
5270
5405
|
|
5271
5406
|
* chore: add missing linters to pre-commit and pin versions ([`85bbd1a`](https://github.com/python-gitlab/python-gitlab/commit/85bbd1a5db5eff8a8cea63b2b192aae66030423d))
|
5272
5407
|
|
5273
|
-
* chore
|
5408
|
+
* chore: add type-hints to gitlab/v4/cli.py
|
5409
|
+
|
5410
|
+
* Add type-hints to gitlab/v4/cli.py
|
5411
|
+
* Add required type-hints to other files based on adding type-hints
|
5412
|
+
to gitlab/v4/cli.py ([`2673af0`](https://github.com/python-gitlab/python-gitlab/commit/2673af0c09a7c5669d8f62c3cc42f684a9693a0f))
|
5274
5413
|
|
5275
5414
|
* chore: add missing optional create parameter for approval_rules
|
5276
5415
|
|
@@ -5283,12 +5422,6 @@ https://docs.gitlab.com/ee/api/merge_request_approvals.html#create-project-level
|
|
5283
5422
|
|
5284
5423
|
Co-authored-by: John Villalovos <john@sodarock.com> ([`a11623b`](https://github.com/python-gitlab/python-gitlab/commit/a11623b1aa6998e6520f3975f0f3f2613ceee5fb))
|
5285
5424
|
|
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
5425
|
* chore(ci): ignore .python-version from pyenv ([`149953d`](https://github.com/python-gitlab/python-gitlab/commit/149953dc32c28fe413c9f3a0066575caeab12bc8))
|
5293
5426
|
|
5294
5427
|
* chore: apply suggestions ([`fe7d19d`](https://github.com/python-gitlab/python-gitlab/commit/fe7d19de5aeba675dcb06621cf36ab4169391158))
|
@@ -5310,13 +5443,13 @@ built-in function issubclass()
|
|
5310
5443
|
|
5311
5444
|
Switch to using issubclass() ([`81f6386`](https://github.com/python-gitlab/python-gitlab/commit/81f63866593a0486b03a4383d87ef7bc01f4e45f))
|
5312
5445
|
|
5313
|
-
* chore: correct a type-hint ([`046607c`](https://github.com/python-gitlab/python-gitlab/commit/046607cf7fd95c3d25f5af9383fdf10a5bba42c1))
|
5314
|
-
|
5315
5446
|
* chore: move 'gitlab/tests/' dir to 'tests/unit/'
|
5316
5447
|
|
5317
5448
|
Move the 'gitlab/tests/' directory to 'tests/unit/' so we have all the
|
5318
5449
|
tests located under the 'tests/' directory. ([`1ac0722`](https://github.com/python-gitlab/python-gitlab/commit/1ac0722bc086b18c070132a0eb53747bbdf2ce0a))
|
5319
5450
|
|
5451
|
+
* chore: correct a type-hint ([`046607c`](https://github.com/python-gitlab/python-gitlab/commit/046607cf7fd95c3d25f5af9383fdf10a5bba42c1))
|
5452
|
+
|
5320
5453
|
* chore: rename 'tools/functional/' to 'tests/functional/'
|
5321
5454
|
|
5322
5455
|
Rename the 'tools/functional/' directory to 'tests/functional/'
|
@@ -5373,9 +5506,18 @@ https://pycqa.github.io/isort/ ([`dda646e`](https://github.com/python-gitlab/pyt
|
|
5373
5506
|
|
5374
5507
|
* chore(deps): update dependency docker-compose to v1.29.2 ([`fc241e1`](https://github.com/python-gitlab/python-gitlab/commit/fc241e1ffa995417a969354e37d8fefc21bb4621))
|
5375
5508
|
|
5509
|
+
* chore(ci): automate releases ([`0ef497e`](https://github.com/python-gitlab/python-gitlab/commit/0ef497e458f98acee36529e8bda2b28b3310de69))
|
5510
|
+
|
5376
5511
|
* chore(ci): ignore debug and type_checking in coverage ([`885b608`](https://github.com/python-gitlab/python-gitlab/commit/885b608194a55bd60ef2a2ad180c5caa8f15f8d2))
|
5377
5512
|
|
5378
|
-
* chore
|
5513
|
+
* chore: mypy: Disallow untyped definitions
|
5514
|
+
|
5515
|
+
Be more strict and don't allow untyped definitions on the files we
|
5516
|
+
check.
|
5517
|
+
|
5518
|
+
Also this adds type-hints for two of the decorators so that now
|
5519
|
+
functions/methods decorated by them will have their types be revealed
|
5520
|
+
correctly. ([`6aef2da`](https://github.com/python-gitlab/python-gitlab/commit/6aef2dadf715e601ae9c302be0ad9958345a97f2))
|
5379
5521
|
|
5380
5522
|
* chore(docs): fix import order for readthedocs build ([`c3de1fb`](https://github.com/python-gitlab/python-gitlab/commit/c3de1fb8ec17f5f704a19df4a56a668570e6fe0a))
|
5381
5523
|
|
@@ -5393,16 +5535,15 @@ gitlab directory. ([`ab343ef`](https://github.com/python-gitlab/python-gitlab/co
|
|
5393
5535
|
|
5394
5536
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.2-ce.0 ([`434d15d`](https://github.com/python-gitlab/python-gitlab/commit/434d15d1295187d1970ebef01f4c8a44a33afa31))
|
5395
5537
|
|
5396
|
-
* chore:
|
5538
|
+
* chore: remove commented-out print ([`0357c37`](https://github.com/python-gitlab/python-gitlab/commit/0357c37fb40fb6aef175177fab98d0eadc26b667))
|
5397
5539
|
|
5398
|
-
|
5399
|
-
check.
|
5540
|
+
* chore: make Get.*Mixin._optional_get_attrs always present
|
5400
5541
|
|
5401
|
-
|
5402
|
-
|
5403
|
-
correctly. ([`6aef2da`](https://github.com/python-gitlab/python-gitlab/commit/6aef2dadf715e601ae9c302be0ad9958345a97f2))
|
5542
|
+
Always create GetMixin/GetWithoutIdMixin._optional_get_attrs attribute
|
5543
|
+
with a default value of tuple()
|
5404
5544
|
|
5405
|
-
|
5545
|
+
This way we don't need to use hasattr() and we will know the type of
|
5546
|
+
the attribute. ([`3c1a0b3`](https://github.com/python-gitlab/python-gitlab/commit/3c1a0b3ba1f529fab38829c9d355561fd36f4f5d))
|
5406
5547
|
|
5407
5548
|
### Documentation
|
5408
5549
|
|
@@ -5424,8 +5565,6 @@ feat(objects): add support for Group wikis ([`74f5e62`](https://github.com/pytho
|
|
5424
5565
|
|
5425
5566
|
* feat(objects): add support for generic packages API ([`79d88bd`](https://github.com/python-gitlab/python-gitlab/commit/79d88bde9e5e6c33029e4a9f26c97404e6a7a874))
|
5426
5567
|
|
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
5568
|
* feat(api): add deployment mergerequests interface ([`fbbc0d4`](https://github.com/python-gitlab/python-gitlab/commit/fbbc0d400015d7366952a66e4401215adff709f0))
|
5430
5569
|
|
5431
5570
|
* feat(objects): support all issues statistics endpoints ([`f731707`](https://github.com/python-gitlab/python-gitlab/commit/f731707f076264ebea65afc814e4aca798970953))
|
@@ -5451,6 +5590,15 @@ type-hints.
|
|
5451
5590
|
|
5452
5591
|
https://www.python.org/dev/peps/pep-0561/ ([`e4421ca`](https://github.com/python-gitlab/python-gitlab/commit/e4421caafeeb0236df19fe7b9233300727e1933b))
|
5453
5592
|
|
5593
|
+
* feat: add support for lists of integers to ListAttribute
|
5594
|
+
|
5595
|
+
Previously ListAttribute only support lists of integers. Now be more
|
5596
|
+
flexible and support lists of items which can be coerced into strings,
|
5597
|
+
for example integers.
|
5598
|
+
|
5599
|
+
This will help us fix issue #1407 by using ListAttribute for the
|
5600
|
+
'iids' field. ([`115938b`](https://github.com/python-gitlab/python-gitlab/commit/115938b3e5adf9a2fb5ecbfb34d9c92bf788035e))
|
5601
|
+
|
5454
5602
|
### Fix
|
5455
5603
|
|
5456
5604
|
* fix: catch invalid type used to initialize RESTObject
|
@@ -5489,12 +5637,12 @@ Related to: #1120 ([`cb6a3c6`](https://github.com/python-gitlab/python-gitlab/co
|
|
5489
5637
|
|
5490
5638
|
* fix(cli): fix parsing CLI objects to classnames ([`4252070`](https://github.com/python-gitlab/python-gitlab/commit/42520705a97289ac895a6b110d34d6c115e45500))
|
5491
5639
|
|
5640
|
+
* fix(objects): allow lists for filters for in all objects ([`603a351`](https://github.com/python-gitlab/python-gitlab/commit/603a351c71196a7f516367fbf90519f9452f3c55))
|
5641
|
+
|
5492
5642
|
* fix(objects): return server data in cancel/retry methods ([`9fed061`](https://github.com/python-gitlab/python-gitlab/commit/9fed06116bfe5df79e6ac5be86ae61017f9a2f57))
|
5493
5643
|
|
5494
5644
|
* fix(objects): add missing group attributes ([`d20ff4f`](https://github.com/python-gitlab/python-gitlab/commit/d20ff4ff7427519c8abccf53e3213e8929905441))
|
5495
5645
|
|
5496
|
-
* fix(objects): allow lists for filters for in all objects ([`603a351`](https://github.com/python-gitlab/python-gitlab/commit/603a351c71196a7f516367fbf90519f9452f3c55))
|
5497
|
-
|
5498
5646
|
* fix: iids not working as a list in projects.issues.list()
|
5499
5647
|
|
5500
5648
|
Set the 'iids' values as type ListAttribute so it will pass the list
|
@@ -5504,6 +5652,21 @@ Add a functional test.
|
|
5504
5652
|
|
5505
5653
|
Closes: #1407 ([`45f806c`](https://github.com/python-gitlab/python-gitlab/commit/45f806c7a7354592befe58a76b7e33a6d5d0fe6e))
|
5506
5654
|
|
5655
|
+
* fix: add a check to ensure the MRO is correct
|
5656
|
+
|
5657
|
+
Add a check to ensure the MRO (Method Resolution Order) is correct for classes in
|
5658
|
+
gitlab.v4.objects when doing type-checking.
|
5659
|
+
|
5660
|
+
An example of an incorrect definition:
|
5661
|
+
class ProjectPipeline(RESTObject, RefreshMixin, ObjectDeleteMixin):
|
5662
|
+
^^^^^^^^^^ This should be at the end.
|
5663
|
+
|
5664
|
+
Correct way would be:
|
5665
|
+
class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject):
|
5666
|
+
Correctly at the end ^^^^^^^^^^
|
5667
|
+
|
5668
|
+
Also fix classes which have the issue. ([`565d548`](https://github.com/python-gitlab/python-gitlab/commit/565d5488b779de19a720d7a904c6fc14c394a4b9))
|
5669
|
+
|
5507
5670
|
### Style
|
5508
5671
|
|
5509
5672
|
* style: clean up test run config ([`dfa40c1`](https://github.com/python-gitlab/python-gitlab/commit/dfa40c1ef85992e85c1160587037e56778ab49c0))
|
@@ -5539,10 +5702,10 @@ duplicate tokens with the same value. ([`4c475ab`](https://github.com/python-git
|
|
5539
5702
|
|
5540
5703
|
* test(cli): add more real class scenarios ([`8cf5031`](https://github.com/python-gitlab/python-gitlab/commit/8cf5031a2caf2f39ce920c5f80316cc774ba7a36))
|
5541
5704
|
|
5542
|
-
* test(functional): add test for skip_groups list filter ([`a014774`](https://github.com/python-gitlab/python-gitlab/commit/a014774a6a2523b73601a1930c44ac259d03a50e))
|
5543
|
-
|
5544
5705
|
* test(functional): start tracking functional test coverage ([`f875786`](https://github.com/python-gitlab/python-gitlab/commit/f875786ce338b329421f772b181e7183f0fcb333))
|
5545
5706
|
|
5707
|
+
* test(functional): add test for skip_groups list filter ([`a014774`](https://github.com/python-gitlab/python-gitlab/commit/a014774a6a2523b73601a1930c44ac259d03a50e))
|
5708
|
+
|
5546
5709
|
### Unknown
|
5547
5710
|
|
5548
5711
|
* Merge pull request #1487 from JohnVillalovos/jlvillal/check_attrs
|
@@ -5707,17 +5870,6 @@ chore: make Get.*Mixin._optional_get_attrs always present ([`5b81d7d`](https://g
|
|
5707
5870
|
|
5708
5871
|
## v2.7.1 (2021-04-26)
|
5709
5872
|
|
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
5873
|
### Fix
|
5722
5874
|
|
5723
5875
|
* fix(files): do not url-encode file paths twice ([`8e25cec`](https://github.com/python-gitlab/python-gitlab/commit/8e25cecce3c0a19884a8d231ee1a672b80e94398))
|
@@ -5732,19 +5884,9 @@ fix(files): do not url-encode filepaths twice ([`37af229`](https://github.com/py
|
|
5732
5884
|
|
5733
5885
|
### Chore
|
5734
5886
|
|
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))
|
5887
|
+
* chore: bump version to 2.7.0 ([`34c4052`](https://github.com/python-gitlab/python-gitlab/commit/34c4052327018279c9a75d6b849da74eccc8819b))
|
5738
5888
|
|
5739
|
-
* chore: make
|
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))
|
5746
|
-
|
5747
|
-
* chore: make ListMixin._list_filters always present
|
5889
|
+
* chore: make ListMixin._list_filters always present
|
5748
5890
|
|
5749
5891
|
Always create ListMixin._list_filters attribute with a default value
|
5750
5892
|
of tuple().
|
@@ -5760,17 +5902,11 @@ None.
|
|
5760
5902
|
This way we don't need to use hasattr() and we will know the type of
|
5761
5903
|
the attribute. ([`6d55120`](https://github.com/python-gitlab/python-gitlab/commit/6d551208f4bc68d091a16323ae0d267fbb6003b6))
|
5762
5904
|
|
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))
|
5905
|
+
* chore(objects): remove noisy deprecation warning for audit events
|
5768
5906
|
|
5769
|
-
|
5907
|
+
It's mostly an internal thing anyway and can be removed in 3.0.0 ([`2953642`](https://github.com/python-gitlab/python-gitlab/commit/29536423e3e8866eda7118527a49b120fefb4065))
|
5770
5908
|
|
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))
|
5909
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.1-ce.0 ([`3088714`](https://github.com/python-gitlab/python-gitlab/commit/308871496041232f555cf4cb055bf7f4aaa22b23))
|
5774
5910
|
|
5775
5911
|
* chore: fix F841 errors reported by flake8
|
5776
5912
|
|
@@ -5805,10 +5941,35 @@ Fixes to resolve errors for:
|
|
5805
5941
|
https://www.flake8rules.com/rules/E742.html
|
5806
5942
|
Do not define classes named 'I', 'O', or 'l' (E742) ([`380f227`](https://github.com/python-gitlab/python-gitlab/commit/380f227a1ecffd5e22ae7aefed95af3b5d830994))
|
5807
5943
|
|
5944
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.11.0-ce.0 ([`711896f`](https://github.com/python-gitlab/python-gitlab/commit/711896f20ff81826c58f1f86dfb29ad860e1d52a))
|
5945
|
+
|
5946
|
+
* chore: remove unused function sanitize_parameters()
|
5947
|
+
|
5948
|
+
The function sanitize_parameters() was used when the v3 API was in
|
5949
|
+
use. Since v3 API support has been removed there are no more users of
|
5950
|
+
this function. ([`443b934`](https://github.com/python-gitlab/python-gitlab/commit/443b93482e29fecc12fdbd2329427b37b05ba425))
|
5951
|
+
|
5808
5952
|
* chore: fix typo in mr events ([`c5e6fb3`](https://github.com/python-gitlab/python-gitlab/commit/c5e6fb3bc74c509f35f973e291a7551b2b64dba5))
|
5809
5953
|
|
5810
5954
|
* chore(config): allow simple commands without external script ([`91ffb8e`](https://github.com/python-gitlab/python-gitlab/commit/91ffb8e97e213d2f14340b952630875995ecedb2))
|
5811
5955
|
|
5956
|
+
* chore: make lint happy ([`7a7c9fd`](https://github.com/python-gitlab/python-gitlab/commit/7a7c9fd932def75a2f2c517482784e445d83881a))
|
5957
|
+
|
5958
|
+
* chore: make lint happy ([`b5f43c8`](https://github.com/python-gitlab/python-gitlab/commit/b5f43c83b25271f7aff917a9ce8826d39ff94034))
|
5959
|
+
|
5960
|
+
* chore: make lint happy ([`732e49c`](https://github.com/python-gitlab/python-gitlab/commit/732e49c6547c181de8cc56e93b30dc399e87091d))
|
5961
|
+
|
5962
|
+
* chore: add test ([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
|
5963
|
+
|
5964
|
+
* chore: remove usage of getattr()
|
5965
|
+
|
5966
|
+
Remove usage of getattr(self, "_update_uses_post", False)
|
5967
|
+
|
5968
|
+
Instead add it to class and set default value to False.
|
5969
|
+
|
5970
|
+
Add a tests that shows it is set to True for the
|
5971
|
+
ProjectMergeRequestApprovalManager and ProjectApprovalManager classes. ([`2afd18a`](https://github.com/python-gitlab/python-gitlab/commit/2afd18aa28742a3267742859a88be6912a803874))
|
5972
|
+
|
5812
5973
|
* chore: have _create_attrs & _update_attrs be a namedtuple
|
5813
5974
|
|
5814
5975
|
Convert _create_attrs and _update_attrs to use a NamedTuple
|
@@ -5817,27 +5978,20 @@ use the NamedTuple. ([`aee1f49`](https://github.com/python-gitlab/python-gitlab/
|
|
5817
5978
|
|
5818
5979
|
* chore(deps): update dependency docker-compose to v1.29.1 ([`a89ec43`](https://github.com/python-gitlab/python-gitlab/commit/a89ec43ee7a60aacd1ac16f0f1f51c4abeaaefef))
|
5819
5980
|
|
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
5981
|
* chore(deps): update dependency sphinx to v3.5.4 ([`a886d28`](https://github.com/python-gitlab/python-gitlab/commit/a886d28a893ac592b930ce54111d9ae4e90f458e))
|
5823
5982
|
|
5983
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.3-ce.0 ([`eabe091`](https://github.com/python-gitlab/python-gitlab/commit/eabe091945d3fe50472059431e599117165a815a))
|
5984
|
+
|
5824
5985
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.1-ce.0 ([`1995361`](https://github.com/python-gitlab/python-gitlab/commit/1995361d9a767ad5af5338f4555fa5a3914c7374))
|
5825
5986
|
|
5987
|
+
* chore: import audit events in objects ([`35a190c`](https://github.com/python-gitlab/python-gitlab/commit/35a190cfa0902d6a298aba0a3135c5a99edfe0fa))
|
5988
|
+
|
5826
5989
|
* chore(deps): update dependency docker-compose to v1.28.6 ([`46b05d5`](https://github.com/python-gitlab/python-gitlab/commit/46b05d525d0ade6f2aadb6db23fadc85ad48cd3d))
|
5827
5990
|
|
5828
5991
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.10.0-ce.0 ([`5221e33`](https://github.com/python-gitlab/python-gitlab/commit/5221e33768fe1e49456d5df09e3f50b46933c8a4))
|
5829
5992
|
|
5830
5993
|
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.4-ce.0 ([`939f769`](https://github.com/python-gitlab/python-gitlab/commit/939f769e7410738da2e1c5d502caa765f362efdd))
|
5831
5994
|
|
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
5995
|
* chore: fix package file test naming ([`8c80268`](https://github.com/python-gitlab/python-gitlab/commit/8c802680ae7d3bff13220a55efeed9ca79104b10))
|
5842
5996
|
|
5843
5997
|
* chore: add _create_attrs & _update_attrs to RESTManager
|
@@ -5859,14 +6013,6 @@ simpler. We no longer have to do:
|
|
5859
6013
|
|
5860
6014
|
And the type checker now understands the type. ([`924f83e`](https://github.com/python-gitlab/python-gitlab/commit/924f83eb4b5e160bd231efc38e2eea0231fa311f))
|
5861
6015
|
|
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
6016
|
* chore: add type-hints for gitlab/mixins.py
|
5871
6017
|
|
5872
6018
|
* Added type-hints for gitlab/mixins.py
|
@@ -5874,11 +6020,9 @@ And the type checker now understands the type. ([`924f83e`](https://github.com/p
|
|
5874
6020
|
list-comprehension. mypy was not able to understand the previous
|
5875
6021
|
code. Also list-comprehension is better :) ([`baea721`](https://github.com/python-gitlab/python-gitlab/commit/baea7215bbbe07c06b2ca0f97a1d3d482668d887))
|
5876
6022
|
|
5877
|
-
* chore
|
5878
|
-
|
5879
|
-
* chore: add test ([`f8cf1e1`](https://github.com/python-gitlab/python-gitlab/commit/f8cf1e110401dcc6b9b176beb8675513fc1c7d17))
|
6023
|
+
* chore: add type hints to gitlab/base.py:RESTManager
|
5880
6024
|
|
5881
|
-
|
6025
|
+
Add some additional type hints to gitlab/base.py ([`9c55593`](https://github.com/python-gitlab/python-gitlab/commit/9c55593ae6a7308176710665f8bec094d4cadc2e))
|
5882
6026
|
|
5883
6027
|
* chore: put assert statements inside 'if TYPE_CHECKING:'
|
5884
6028
|
|
@@ -5891,9 +6035,9 @@ that it is not a requests.Response object. Theoretically the JSON
|
|
5891
6035
|
could return as a list or dict, though at this time we are assuming a
|
5892
6036
|
dict. ([`b562458`](https://github.com/python-gitlab/python-gitlab/commit/b562458f063c6be970f58c733fe01ec786798549))
|
5893
6037
|
|
5894
|
-
* chore:
|
6038
|
+
* chore(deps): update dependency sphinx to v3.5.2 ([`9dee5c4`](https://github.com/python-gitlab/python-gitlab/commit/9dee5c420633bc27e1027344279c47862f7b16da))
|
5895
6039
|
|
5896
|
-
|
6040
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.2-ce.0 ([`933ba52`](https://github.com/python-gitlab/python-gitlab/commit/933ba52475e5dae4cf7c569d8283e60eebd5b7b6))
|
5897
6041
|
|
5898
6042
|
* chore: del 'import *' in gitlab/v4/objects/project_access_tokens.py
|
5899
6043
|
|
@@ -5912,6 +6056,10 @@ to Tuple[str, ...] ([`907634f`](https://github.com/python-gitlab/python-gitlab/c
|
|
5912
6056
|
|
5913
6057
|
* chore(api): move repository endpoints into separate module ([`1ed154c`](https://github.com/python-gitlab/python-gitlab/commit/1ed154c276fb2429d3b45058b9314d6391dbff02))
|
5914
6058
|
|
6059
|
+
* chore: add and fix some type-hints in gitlab/client.py
|
6060
|
+
|
6061
|
+
Was able to figure out better type-hints for gitlab/client.py ([`8837207`](https://github.com/python-gitlab/python-gitlab/commit/88372074a703910ba533237e6901e5af4c26c2bd))
|
6062
|
+
|
5915
6063
|
* chore: add additional type-hints for gitlab/base.py
|
5916
6064
|
|
5917
6065
|
Add type-hints for the variables which are set via self.__dict__
|
@@ -5919,9 +6067,9 @@ Add type-hints for the variables which are set via self.__dict__
|
|
5919
6067
|
mypy doesn't see them when they are assigned via self.__dict__. So
|
5920
6068
|
declare them in the class definition. ([`ad72ef3`](https://github.com/python-gitlab/python-gitlab/commit/ad72ef35707529058c7c680f334c285746b2f690))
|
5921
6069
|
|
5922
|
-
* chore: add
|
6070
|
+
* chore: add type-hints to gitlab/client.py
|
5923
6071
|
|
5924
|
-
|
6072
|
+
Adding some initial type-hints to gitlab/client.py ([`c9e5b4f`](https://github.com/python-gitlab/python-gitlab/commit/c9e5b4f6285ec94d467c7c10c45f4e2d5f656430))
|
5925
6073
|
|
5926
6074
|
* chore: remove import of gitlab.utils from __init__.py
|
5927
6075
|
|
@@ -5931,27 +6079,21 @@ remove this but functional tests failed.
|
|
5931
6079
|
Later we fixed the functional test that was failing, so now remove the
|
5932
6080
|
unneeded import. ([`39b9183`](https://github.com/python-gitlab/python-gitlab/commit/39b918374b771f1d417196ca74fa04fe3968c412))
|
5933
6081
|
|
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
6082
|
* chore: improve type-hints for gitlab/base.py
|
5939
6083
|
|
5940
6084
|
Determined the base class for obj_cls and adding type-hints for it. ([`cbd43d0`](https://github.com/python-gitlab/python-gitlab/commit/cbd43d0b4c95e46fc3f1cffddc6281eced45db4a))
|
5941
6085
|
|
5942
|
-
* chore(deps): update dependency docker-compose to v1.28.5 ([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
|
5943
|
-
|
5944
6086
|
* chore: add type-hints to gitlab/cli.py ([`10b7b83`](https://github.com/python-gitlab/python-gitlab/commit/10b7b836d31fbe36a7096454287004b46a7799dd))
|
5945
6087
|
|
5946
|
-
* chore:
|
6088
|
+
* chore(deps): update dependency docker-compose to v1.28.5 ([`f4ab558`](https://github.com/python-gitlab/python-gitlab/commit/f4ab558f2cd85fe716e24f3aa4ede5db5b06e7c4))
|
5947
6089
|
|
5948
|
-
* chore:
|
6090
|
+
* chore(deps): update wagoid/commitlint-github-action action to v3 ([`b3274cf`](https://github.com/python-gitlab/python-gitlab/commit/b3274cf93dfb8ae85e4a636a1ffbfa7c48f1c8f6))
|
5949
6091
|
|
5950
6092
|
* chore: add type-hints to gitlab/const.py ([`a10a777`](https://github.com/python-gitlab/python-gitlab/commit/a10a7777caabd6502d04f3947a317b5b0ac869f2))
|
5951
6093
|
|
5952
|
-
* chore
|
6094
|
+
* chore: add type hints to gitlab/utils.py ([`acd9294`](https://github.com/python-gitlab/python-gitlab/commit/acd9294fac52a636a016a7a3c14416b10573da28))
|
5953
6095
|
|
5954
|
-
* chore
|
6096
|
+
* chore: add type-hints to gitlab/config.py ([`213e563`](https://github.com/python-gitlab/python-gitlab/commit/213e5631b1efce11f8a1419cd77df5d9da7ec0ac))
|
5955
6097
|
|
5956
6098
|
* chore: remove usage of 'from ... import *'
|
5957
6099
|
|
@@ -5971,6 +6113,8 @@ After the change the output of:
|
|
5971
6113
|
Is empty. Before many messages about unable to determine if it was a
|
5972
6114
|
valid name. ([`c83eaf4`](https://github.com/python-gitlab/python-gitlab/commit/c83eaf4f395300471311a67be34d8d306c2b3861))
|
5973
6115
|
|
6116
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.1-ce.0 ([`f6fd995`](https://github.com/python-gitlab/python-gitlab/commit/f6fd99530d70f2a7626602fd9132b628bb968eab))
|
6117
|
+
|
5974
6118
|
* chore: remove unused function _construct_url()
|
5975
6119
|
|
5976
6120
|
The function _construct_url() was used by the v3 API. All usage of the
|
@@ -5995,8 +6139,6 @@ gitlab.exceptions
|
|
5995
6139
|
A flake8 run no longer lists any undefined variables. Before it listed
|
5996
6140
|
possible undefined variables. ([`bf0c8c5`](https://github.com/python-gitlab/python-gitlab/commit/bf0c8c5d123a7ad0587cb97c3aafd97ab2a9dabf))
|
5997
6141
|
|
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
6142
|
* chore: explicitly import gitlab.v4.objects/cli
|
6001
6143
|
|
6002
6144
|
As we only support the v4 Gitlab API, explicitly import
|
@@ -6014,17 +6156,17 @@ according to https://docs.gitlab.com/ee/api/,
|
|
6014
6156
|
"GraphQL co-exists with the current v4 REST API. If we have a v5 API, this
|
6015
6157
|
should be a compatibility layer on top of GraphQL." ([`233b79e`](https://github.com/python-gitlab/python-gitlab/commit/233b79ed442aac66faf9eb4b0087ea126d6dffc5))
|
6016
6158
|
|
6159
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.9.0-ce.0 ([`3aef19c`](https://github.com/python-gitlab/python-gitlab/commit/3aef19c51713bdc7ca0a84752da3ca22329fd4c4))
|
6160
|
+
|
6017
6161
|
* chore(objects): make Project refreshable
|
6018
6162
|
|
6019
6163
|
Helps getting the real state of the project from the server. ([`958a6aa`](https://github.com/python-gitlab/python-gitlab/commit/958a6aa83ead3fb6be6ec61bdd894ad78346e7bd))
|
6020
6164
|
|
6021
|
-
* chore(tests): remove unused URL segment ([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
|
6022
|
-
|
6023
6165
|
* chore(deps): update dependency docker-compose to v1.28.4 ([`8938484`](https://github.com/python-gitlab/python-gitlab/commit/89384846445be668ca6c861f295297d048cae914))
|
6024
6166
|
|
6025
|
-
* chore(
|
6167
|
+
* chore(tests): remove unused URL segment ([`66f0b6c`](https://github.com/python-gitlab/python-gitlab/commit/66f0b6c23396b849f8653850b099e664daa05eb4))
|
6026
6168
|
|
6027
|
-
* chore(deps): update dependency
|
6169
|
+
* chore(deps): update dependency docker-compose to v1.28.3 ([`2358d48`](https://github.com/python-gitlab/python-gitlab/commit/2358d48acbe1c378377fb852b41ec497217d2555))
|
6028
6170
|
|
6029
6171
|
* chore: remove unused ALLOWED_KEYSET_ENDPOINTS variable
|
6030
6172
|
|
@@ -6035,6 +6177,8 @@ Then most of that commit was removed in commit
|
|
6035
6177
|
e71fe16b47835aa4db2834e98c7ffc6bdec36723, but ALLOWED_KEYSET_ENDPOINTS
|
6036
6178
|
was missed. ([`3d5d5d8`](https://github.com/python-gitlab/python-gitlab/commit/3d5d5d8b13fc8405e9ef3e14be1fd8bd32235221))
|
6037
6179
|
|
6180
|
+
* chore(deps): update dependency sphinx to v3.5.1 ([`f916f09`](https://github.com/python-gitlab/python-gitlab/commit/f916f09d3a9cac07246035066d4c184103037026))
|
6181
|
+
|
6038
6182
|
* chore: remove Python 2 code
|
6039
6183
|
|
6040
6184
|
httplib is a Python 2 library. It was renamed to http.client in Python
|
@@ -6075,6 +6219,10 @@ already exists and is useful but very easy to miss. ([`6ff67e7`](https://github.
|
|
6075
6219
|
|
6076
6220
|
* feat(objects): add support for resource state events API ([`d4799c4`](https://github.com/python-gitlab/python-gitlab/commit/d4799c40bd12ed85d4bb834464fdb36c4dadcab6))
|
6077
6221
|
|
6222
|
+
* feat: option to add a helper to lookup token ([`8ecf559`](https://github.com/python-gitlab/python-gitlab/commit/8ecf55926f8e345960560e5c5dd6716199cfb0ec))
|
6223
|
+
|
6224
|
+
* feat(objects): add support for group audit events API ([`2a0fbdf`](https://github.com/python-gitlab/python-gitlab/commit/2a0fbdf9fe98da6c436230be47b0ddb198c7eca9))
|
6225
|
+
|
6078
6226
|
* feat: add ProjectPackageFile
|
6079
6227
|
|
6080
6228
|
Add ProjectPackageFile and the ability to list project package
|
@@ -6082,10 +6230,6 @@ package_files.
|
|
6082
6230
|
|
6083
6231
|
Fixes #1372 ([`b9d469b`](https://github.com/python-gitlab/python-gitlab/commit/b9d469bc4e847ae0301be28a0c70019a7f6ab8b6))
|
6084
6232
|
|
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
6233
|
* feat(users): add follow/unfollow API ([`e456869`](https://github.com/python-gitlab/python-gitlab/commit/e456869d98a1b7d07e6f878a0d6a9719c1b10fd4))
|
6090
6234
|
|
6091
6235
|
* feat(projects): add project access token api ([`1becef0`](https://github.com/python-gitlab/python-gitlab/commit/1becef0253804f119c8a4d0b8b1c53deb2f4d889))
|
@@ -6121,20 +6265,24 @@ to do this, but it is not exposed through this library.
|
|
6121
6265
|
|
6122
6266
|
### Fix
|
6123
6267
|
|
6124
|
-
* fix:
|
6268
|
+
* fix: only append kwargs as query parameters
|
6125
6269
|
|
6126
|
-
|
6127
|
-
|
6270
|
+
Some arguments to `http_request` were being read
|
6271
|
+
from kwargs, but kwargs is where this function
|
6272
|
+
creates query parameters from, by default. In
|
6273
|
+
the absence of a `query_parameters` param, the
|
6274
|
+
function would construct URLs with query
|
6275
|
+
parameters such as `retry_transient_errors=True`
|
6276
|
+
despite those parameters having no meaning to
|
6277
|
+
the API to which the request was sent.
|
6128
6278
|
|
6129
|
-
|
6130
|
-
|
6131
|
-
|
6279
|
+
This change names those arguments that are
|
6280
|
+
specific to `http_request` so that they do not
|
6281
|
+
end up as query parameters read from kwargs. ([`b9ecc9a`](https://github.com/python-gitlab/python-gitlab/commit/b9ecc9a8c5d958bd7247946c4e8d29c18163c578))
|
6132
6282
|
|
6133
|
-
|
6134
|
-
class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject):
|
6135
|
-
Correctly at the end ^^^^^^^^^^
|
6283
|
+
* fix: only add query_parameters to GitlabList once
|
6136
6284
|
|
6137
|
-
|
6285
|
+
Fixes #1386 ([`ca2c3c9`](https://github.com/python-gitlab/python-gitlab/commit/ca2c3c9dee5dc61ea12af5b39d51b1606da32f9c))
|
6138
6286
|
|
6139
6287
|
* fix: correct ProjectFile.decode() documentation
|
6140
6288
|
|
@@ -6157,11 +6305,7 @@ confirmation change (`skip_reconfirmation` = True), `MultipartEncoder`
|
|
6157
6305
|
will try to encode everything except None and bytes. So it tries to encode bools.
|
6158
6306
|
Casting bool's values to their stringified int representation fix it. ([`3ba27ff`](https://github.com/python-gitlab/python-gitlab/commit/3ba27ffb6ae995c27608f84eef0abe636e2e63da))
|
6159
6307
|
|
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))
|
6308
|
+
* fix(types): prevent __dir__ from producing duplicates ([`5bf7525`](https://github.com/python-gitlab/python-gitlab/commit/5bf7525d2d37968235514d1b93a403d037800652))
|
6165
6309
|
|
6166
6310
|
* fix: correct some type-hints in gitlab/mixins.py
|
6167
6311
|
|
@@ -6176,26 +6320,25 @@ Main error was using '=' instead of ':'. For example:
|
|
6176
6320
|
|
6177
6321
|
Resolved those issues. ([`8bd3124`](https://github.com/python-gitlab/python-gitlab/commit/8bd312404cf647674baea792547705ef1948043d))
|
6178
6322
|
|
6179
|
-
* fix:
|
6323
|
+
* fix: argument type was not a tuple as expected
|
6180
6324
|
|
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.
|
6325
|
+
While adding type-hints mypy flagged this as an issue. The third
|
6326
|
+
argument to register_custom_action is supposed to be a tuple. It was
|
6327
|
+
being passed as a string rather than a tuple of strings. ([`062f8f6`](https://github.com/python-gitlab/python-gitlab/commit/062f8f6a917abc037714129691a845c16b070ff6))
|
6189
6328
|
|
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))
|
6329
|
+
* fix: handling config value in _get_values_from_helper ([`9dfb4cd`](https://github.com/python-gitlab/python-gitlab/commit/9dfb4cd97e6eb5bbfc29935cbb190b70b739cf9f))
|
6193
6330
|
|
6194
|
-
* fix:
|
6331
|
+
* fix: update doc for token helper ([`3ac6fa1`](https://github.com/python-gitlab/python-gitlab/commit/3ac6fa12b37dd33610ef2206ef4ddc3b20d9fd3f))
|
6195
6332
|
|
6196
|
-
|
6333
|
+
* fix: let the homedir be expanded in path of helper ([`fc7387a`](https://github.com/python-gitlab/python-gitlab/commit/fc7387a0a6039bc58b2a741ac9b73d7068375be7))
|
6197
6334
|
|
6198
|
-
* fix
|
6335
|
+
* fix: make secret helper more user friendly ([`fc2798f`](https://github.com/python-gitlab/python-gitlab/commit/fc2798fc31a08997c049f609c19dd4ab8d75964e))
|
6336
|
+
|
6337
|
+
* fix: linting issues and test ([`b04dd2c`](https://github.com/python-gitlab/python-gitlab/commit/b04dd2c08b69619bb58832f40a4c4391e350a735))
|
6338
|
+
|
6339
|
+
* fix: better real life token lookup example ([`9ef8311`](https://github.com/python-gitlab/python-gitlab/commit/9ef83118efde3d0f35d73812ce8398be2c18ebff))
|
6340
|
+
|
6341
|
+
* fix(objects): add single get endpoint for instance audit events ([`c3f0a6f`](https://github.com/python-gitlab/python-gitlab/commit/c3f0a6f158fbc7d90544274b9bf09d5ac9ac0060))
|
6199
6342
|
|
6200
6343
|
* fix: checking if RESTManager._from_parent_attrs is set
|
6201
6344
|
|
@@ -6209,20 +6352,6 @@ So the checks using hasattr() were no longer valid.
|
|
6209
6352
|
Update the checks to check if RESTManager._from_parent_attrs has a
|
6210
6353
|
value. ([`8224b40`](https://github.com/python-gitlab/python-gitlab/commit/8224b4066e84720d7efed3b7891c47af73cc57ca))
|
6211
6354
|
|
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
6355
|
* fix: handle tags like debian/2%2.6-21 as identifiers
|
6227
6356
|
|
6228
6357
|
Git refnames are relatively free-form and can contain all sort for
|
@@ -6720,18 +6849,20 @@ This ensures python-dotenv with expected behavior for .env processing ([`1f7a2ab
|
|
6720
6849
|
|
6721
6850
|
There is no way to edit the raw commit ([`35e43c5`](https://github.com/python-gitlab/python-gitlab/commit/35e43c54cd282f06dde0d24326641646fc3fa29e))
|
6722
6851
|
|
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
6852
|
* chore(cli): remove python2 code ([`1030e0a`](https://github.com/python-gitlab/python-gitlab/commit/1030e0a7e13c4ec3fdc48b9010e9892833850db9))
|
6726
6853
|
|
6727
|
-
* chore:
|
6728
|
-
|
6729
|
-
* chore(deps): update python docker tag to v3.9 ([`1fc65e0`](https://github.com/python-gitlab/python-gitlab/commit/1fc65e072003a2d1ebc29d741e9cef1860b5ff78))
|
6854
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.4.3-ce.0 ([`bc17889`](https://github.com/python-gitlab/python-gitlab/commit/bc178898776d2d61477ff773248217adfac81f56))
|
6730
6855
|
|
6731
6856
|
* chore: simplified search scope constants ([`16fc048`](https://github.com/python-gitlab/python-gitlab/commit/16fc0489b2fe24e0356e9092c9878210b7330a72))
|
6732
6857
|
|
6733
6858
|
* chore: added docs for search scopes constants ([`7565bf0`](https://github.com/python-gitlab/python-gitlab/commit/7565bf059b240c9fffaf6959ee168a12d0fedd77))
|
6734
6859
|
|
6860
|
+
* chore: added constants for search API ([`8ef53d6`](https://github.com/python-gitlab/python-gitlab/commit/8ef53d6f6180440582d1cca305fd084c9eb70443))
|
6861
|
+
|
6862
|
+
* chore: apply suggestions ([`65ce026`](https://github.com/python-gitlab/python-gitlab/commit/65ce02675d9c9580860df91b41c3cf5e6bb8d318))
|
6863
|
+
|
6864
|
+
* chore(deps): update python docker tag to v3.9 ([`1fc65e0`](https://github.com/python-gitlab/python-gitlab/commit/1fc65e072003a2d1ebc29d741e9cef1860b5ff78))
|
6865
|
+
|
6735
6866
|
* chore: use helper fixtures for test directories ([`40ec2f5`](https://github.com/python-gitlab/python-gitlab/commit/40ec2f528b885290fbb3e2d7ef0f5f8615219326))
|
6736
6867
|
|
6737
6868
|
* chore: allow overriding docker-compose env vars for tag ([`27109ca`](https://github.com/python-gitlab/python-gitlab/commit/27109cad0d97114b187ce98ce77e4d7b0c7c3270))
|
@@ -6772,14 +6903,14 @@ work around this shortcoming. Until we know better. ([`f2cf467`](https://github.
|
|
6772
6903
|
|
6773
6904
|
* docs: add Project Merge Request approval rule documentation ([`449fc26`](https://github.com/python-gitlab/python-gitlab/commit/449fc26ffa98ef5703d019154f37a4959816f607))
|
6774
6905
|
|
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
6906
|
* docs(issues): add admin, project owner hint
|
6780
6907
|
|
6781
6908
|
Closes #1101 ([`609c03b`](https://github.com/python-gitlab/python-gitlab/commit/609c03b7139db8af5524ebeb741fd5b003e17038))
|
6782
6909
|
|
6910
|
+
* docs(readme): also add hint to delete gitlab-runner-test
|
6911
|
+
|
6912
|
+
Otherwise the whole testsuite will refuse to run ([`8894f2d`](https://github.com/python-gitlab/python-gitlab/commit/8894f2da81d885c1e788a3b21686212ad91d5bf2))
|
6913
|
+
|
6783
6914
|
* docs(projects): correct fork docs
|
6784
6915
|
|
6785
6916
|
Closes #1126 ([`54921db`](https://github.com/python-gitlab/python-gitlab/commit/54921dbcf117f6b939e0c467738399be0d661a00))
|
@@ -6792,20 +6923,20 @@ Closes #1126 ([`54921db`](https://github.com/python-gitlab/python-gitlab/commit/
|
|
6792
6923
|
|
6793
6924
|
* feat: support multipart uploads ([`2fa3004`](https://github.com/python-gitlab/python-gitlab/commit/2fa3004d9e34cc4b77fbd6bd89a15957898e1363))
|
6794
6925
|
|
6795
|
-
* feat(tests): test label getter ([`a41af90`](https://github.com/python-gitlab/python-gitlab/commit/a41af902675a07cd4772bb122c152547d6d570f7))
|
6796
|
-
|
6797
6926
|
* feat: add MINIMAL_ACCESS constant
|
6798
6927
|
|
6799
6928
|
A "minimal access" access level was
|
6800
6929
|
[introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/220203) in
|
6801
6930
|
GitLab 13.5. ([`49eb3ca`](https://github.com/python-gitlab/python-gitlab/commit/49eb3ca79172905bf49bab1486ecb91c593ea1d7))
|
6802
6931
|
|
6932
|
+
* feat(tests): test label getter ([`a41af90`](https://github.com/python-gitlab/python-gitlab/commit/a41af902675a07cd4772bb122c152547d6d570f7))
|
6933
|
+
|
6934
|
+
* feat: adds support for project merge request approval rules (#1199) ([`c6fbf39`](https://github.com/python-gitlab/python-gitlab/commit/c6fbf399ec5cbc92f995a5d61342f295be68bd79))
|
6935
|
+
|
6803
6936
|
* feat: unit tests added ([`f37ebf5`](https://github.com/python-gitlab/python-gitlab/commit/f37ebf5fd792c8e8a973443a1df386fa77d1248f))
|
6804
6937
|
|
6805
6938
|
* feat: added support for pipeline bridges ([`05cbdc2`](https://github.com/python-gitlab/python-gitlab/commit/05cbdc224007e9dda10fc2f6f7d63c82cf36dec0))
|
6806
6939
|
|
6807
|
-
* feat: adds support for project merge request approval rules (#1199) ([`c6fbf39`](https://github.com/python-gitlab/python-gitlab/commit/c6fbf399ec5cbc92f995a5d61342f295be68bd79))
|
6808
|
-
|
6809
6940
|
* feat(api): added wip filter param for merge requests ([`d6078f8`](https://github.com/python-gitlab/python-gitlab/commit/d6078f808bf19ef16cfebfaeabb09fbf70bfb4c7))
|
6810
6941
|
|
6811
6942
|
* feat(api): added wip filter param for merge requests ([`aa6e80d`](https://github.com/python-gitlab/python-gitlab/commit/aa6e80d58d765102892fadb89951ce29d08e1dab))
|
@@ -6827,12 +6958,12 @@ Fixes #1155 ([`e1e0d8c`](https://github.com/python-gitlab/python-gitlab/commit/e
|
|
6827
6958
|
|
6828
6959
|
* fix(cli): write binary data to stdout buffer ([`0733ec6`](https://github.com/python-gitlab/python-gitlab/commit/0733ec6cad5c11b470ce6bad5dc559018ff73b3c))
|
6829
6960
|
|
6830
|
-
* fix(cli): add missing args for project lists ([`c73e237`](https://github.com/python-gitlab/python-gitlab/commit/c73e23747d24ffef3c1a2a4e5f4ae24252762a71))
|
6831
|
-
|
6832
6961
|
* fix: docs changed using the consts ([`650b65c`](https://github.com/python-gitlab/python-gitlab/commit/650b65c389c686bcc9a9cef81b6ca2a509d8cad2))
|
6833
6962
|
|
6834
6963
|
* fix: typo ([`9baa905`](https://github.com/python-gitlab/python-gitlab/commit/9baa90535b5a8096600f9aec96e528f4d2ac7d74))
|
6835
6964
|
|
6965
|
+
* fix(cli): add missing args for project lists ([`c73e237`](https://github.com/python-gitlab/python-gitlab/commit/c73e23747d24ffef3c1a2a4e5f4ae24252762a71))
|
6966
|
+
|
6836
6967
|
* fix(api): add missing runner access_level param ([`92669f2`](https://github.com/python-gitlab/python-gitlab/commit/92669f2ef2af3cac1c5f06f9299975060cc5e64a))
|
6837
6968
|
|
6838
6969
|
### Refactor
|
@@ -7015,10 +7146,10 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
|
|
7015
7146
|
|
7016
7147
|
* chore(deps): update python docker tag to v3.8 ([`a8070f2`](https://github.com/python-gitlab/python-gitlab/commit/a8070f2d9a996e57104f29539069273774cf5493))
|
7017
7148
|
|
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
7149
|
* chore(test): use pathlib for paths ([`5a56b6b`](https://github.com/python-gitlab/python-gitlab/commit/5a56b6b55f761940f80491eddcdcf17d37215cfd))
|
7021
7150
|
|
7151
|
+
* chore(deps): update gitlab/gitlab-ce docker tag to v13.3.2-ce.0 ([`9fd778b`](https://github.com/python-gitlab/python-gitlab/commit/9fd778b4a7e92a7405ac2f05c855bafbc51dc6a8))
|
7152
|
+
|
7022
7153
|
* chore(ci): pin gitlab-ce version for renovate ([`cb79fb7`](https://github.com/python-gitlab/python-gitlab/commit/cb79fb72e899e65a1ad77ccd508f1a1baca30309))
|
7023
7154
|
|
7024
7155
|
* chore(env): add pre-commit and commit-msg hooks ([`82070b2`](https://github.com/python-gitlab/python-gitlab/commit/82070b2d2ed99189aebb1d595430ad5567306c4c))
|
@@ -7027,16 +7158,16 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
|
|
7027
7158
|
|
7028
7159
|
* chore: make latest black happy with existing code ([`6961479`](https://github.com/python-gitlab/python-gitlab/commit/696147922552a8e6ddda3a5b852ee2de6b983e37))
|
7029
7160
|
|
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
7161
|
* chore: update tools dir for latest black version ([`c2806d8`](https://github.com/python-gitlab/python-gitlab/commit/c2806d8c0454a83dfdafd1bdbf7e10bb28d205e0))
|
7035
7162
|
|
7036
7163
|
* chore: remove unnecessary import ([`f337b7a`](https://github.com/python-gitlab/python-gitlab/commit/f337b7ac43e49f9d3610235749b1e2a21731352d))
|
7037
7164
|
|
7038
7165
|
* chore: make latest black happy with existing code ([`4039c8c`](https://github.com/python-gitlab/python-gitlab/commit/4039c8cfc6c7783270f0da1e235ef5d70b420ba9))
|
7039
7166
|
|
7167
|
+
* chore: update tools dir for latest black version ([`f245ffb`](https://github.com/python-gitlab/python-gitlab/commit/f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa))
|
7168
|
+
|
7169
|
+
* chore: make latest black happy with existing code ([`d299753`](https://github.com/python-gitlab/python-gitlab/commit/d2997530bc3355048143bc29580ef32fc21dac3d))
|
7170
|
+
|
7040
7171
|
* chore: run unittest2pytest on all unit tests ([`11383e7`](https://github.com/python-gitlab/python-gitlab/commit/11383e70f74c70e6fe8a56f18b5b170db982f402))
|
7041
7172
|
|
7042
7173
|
* chore: remove remnants of python2 imports ([`402566a`](https://github.com/python-gitlab/python-gitlab/commit/402566a665dfdf0862f15a7e59e4d804d1301c77))
|
@@ -7045,10 +7176,10 @@ chore(deps): update gitlab/gitlab-ce docker tag to v13.3.3-ce.0 ([`769367c`](htt
|
|
7045
7176
|
|
7046
7177
|
* docs(variables): add docs for instance-level variables ([`ad4b87c`](https://github.com/python-gitlab/python-gitlab/commit/ad4b87cb3d6802deea971e6574ae9afe4f352e31))
|
7047
7178
|
|
7048
|
-
* docs(packages): add examples for Packages API and cli usage ([`a47dfcd`](https://github.com/python-gitlab/python-gitlab/commit/a47dfcd9ded3a0467e83396f21e6dcfa232dfdd7))
|
7049
|
-
|
7050
7179
|
* docs(api): add example for latest pipeline job artifacts ([`d20f022`](https://github.com/python-gitlab/python-gitlab/commit/d20f022a8fe29a6086d30aa7616aa1dac3e1bb17))
|
7051
7180
|
|
7181
|
+
* docs(packages): add examples for Packages API and cli usage ([`a47dfcd`](https://github.com/python-gitlab/python-gitlab/commit/a47dfcd9ded3a0467e83396f21e6dcfa232dfdd7))
|
7182
|
+
|
7052
7183
|
* docs(cli): add examples for group-project list ([`af86dcd`](https://github.com/python-gitlab/python-gitlab/commit/af86dcdd28ee1b16d590af31672c838597e3f3ec))
|
7053
7184
|
|
7054
7185
|
* docs: additional project file delete example
|
@@ -7059,14 +7190,14 @@ Showing how to delete without having to pull the file ([`9e94b75`](https://githu
|
|
7059
7190
|
|
7060
7191
|
* feat(api): add support for instance variables ([`4492fc4`](https://github.com/python-gitlab/python-gitlab/commit/4492fc42c9f6e0031dd3f3c6c99e4c58d4f472ff))
|
7061
7192
|
|
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
7193
|
* feat: add support to resource milestone events
|
7067
7194
|
|
7068
7195
|
Fixes #1154 ([`88f8cc7`](https://github.com/python-gitlab/python-gitlab/commit/88f8cc78f97156d5888a9600bdb8721720563120))
|
7069
7196
|
|
7197
|
+
* feat(api): add endpoint for latest ref artifacts ([`b7a07fc`](https://github.com/python-gitlab/python-gitlab/commit/b7a07fca775b278b1de7d5cb36c8421b7d9bebb7))
|
7198
|
+
|
7199
|
+
* feat(api): add support for Packages API ([`71495d1`](https://github.com/python-gitlab/python-gitlab/commit/71495d127d30d2f4c00285485adae5454a590584))
|
7200
|
+
|
7070
7201
|
* feat: add share/unshare group with group ([`7c6e541`](https://github.com/python-gitlab/python-gitlab/commit/7c6e541dc2642740a6ec2d7ed7921aca41446b37))
|
7071
7202
|
|
7072
7203
|
### Fix
|
@@ -7100,12 +7231,12 @@ Fixes #1146 ([`0078f89`](https://github.com/python-gitlab/python-gitlab/commit/0
|
|
7100
7231
|
|
7101
7232
|
* test(api): add tests for variables API ([`66d108d`](https://github.com/python-gitlab/python-gitlab/commit/66d108de9665055921123476426fb6716c602496))
|
7102
7233
|
|
7103
|
-
* test(packages): add tests for Packages API ([`7ea178b`](https://github.com/python-gitlab/python-gitlab/commit/7ea178bad398c8c2851a4584f4dca5b8adc89d29))
|
7104
|
-
|
7105
7234
|
* test: add unit tests for resource milestone events API
|
7106
7235
|
|
7107
7236
|
Fixes #1154 ([`1317f4b`](https://github.com/python-gitlab/python-gitlab/commit/1317f4b62afefcb2504472d5b5d8e24f39b0d86f))
|
7108
7237
|
|
7238
|
+
* test(packages): add tests for Packages API ([`7ea178b`](https://github.com/python-gitlab/python-gitlab/commit/7ea178bad398c8c2851a4584f4dca5b8adc89d29))
|
7239
|
+
|
7109
7240
|
### Unknown
|
7110
7241
|
|
7111
7242
|
* Merge pull request #1170 from python-gitlab/chore/bump-to-2-5-0
|
@@ -7144,7 +7275,9 @@ chore(ci): use fixed black version ([`28aa17e`](https://github.com/python-gitlab
|
|
7144
7275
|
|
7145
7276
|
Add support to resource milestone events ([`750f4ee`](https://github.com/python-gitlab/python-gitlab/commit/750f4ee6554381830e6add55583903919db2ba29))
|
7146
7277
|
|
7147
|
-
* Merge
|
7278
|
+
* Merge branch 'master' into issue-1154 ([`fa899d7`](https://github.com/python-gitlab/python-gitlab/commit/fa899d7a6e76acbe392f3debb5fd61d71bd88ed2))
|
7279
|
+
|
7280
|
+
* Merge pull request #1159 from python-gitlab/feat/project-artifacts
|
7148
7281
|
|
7149
7282
|
Feat: Project job artifacts for latest successful pipeline ([`26f95f3`](https://github.com/python-gitlab/python-gitlab/commit/26f95f30a5219243f33d505747c65f798ac6a486))
|
7150
7283
|
|
@@ -7152,8 +7285,6 @@ Feat: Project job artifacts for latest successful pipeline ([`26f95f3`](https://
|
|
7152
7285
|
|
7153
7286
|
Feat: Add support for packages API ([`0f42e32`](https://github.com/python-gitlab/python-gitlab/commit/0f42e32cb756766735c7e277f099030f6b3d8fc7))
|
7154
7287
|
|
7155
|
-
* Merge branch 'master' into issue-1154 ([`fa899d7`](https://github.com/python-gitlab/python-gitlab/commit/fa899d7a6e76acbe392f3debb5fd61d71bd88ed2))
|
7156
|
-
|
7157
7288
|
* Merge pull request #1156 from python-gitlab/docs/group-projects-list-cli
|
7158
7289
|
|
7159
7290
|
docs(cli): add examples for group-project list ([`a038e95`](https://github.com/python-gitlab/python-gitlab/commit/a038e9567fd16259e3ed360ab0defd779e9c3901))
|
@@ -7180,7 +7311,14 @@ docs: additional project file delete example ([`5b92de8`](https://github.com/pyt
|
|
7180
7311
|
|
7181
7312
|
* chore: bump version to 2.4.0 ([`1606310`](https://github.com/python-gitlab/python-gitlab/commit/1606310a880f8a8a2a370db27511b57732caf178))
|
7182
7313
|
|
7183
|
-
|
7314
|
+
### Documentation
|
7315
|
+
|
7316
|
+
* docs(pipelines): simplify download
|
7317
|
+
|
7318
|
+
This uses a context instead of inventing your own stream handler which
|
7319
|
+
makes the code simpler and should be fine for most use cases.
|
7320
|
+
|
7321
|
+
Signed-off-by: Paul Spooren <mail@aparcar.org> ([`9a068e0`](https://github.com/python-gitlab/python-gitlab/commit/9a068e00eba364eb121a2d7d4c839e2f4c7371c8))
|
7184
7322
|
|
7185
7323
|
### Feature
|
7186
7324
|
|
@@ -7194,8 +7332,6 @@ https://docs.gitlab.com/ee/api/protected_branches.html ([`dab4d0a`](https://gith
|
|
7194
7332
|
|
7195
7333
|
### Fix
|
7196
7334
|
|
7197
|
-
* fix: add masked parameter for variables command ([`b6339bf`](https://github.com/python-gitlab/python-gitlab/commit/b6339bf85f3ae11d31bf03c4132f6e7b7c343900))
|
7198
|
-
|
7199
7335
|
* fix: do not check if kwargs is none
|
7200
7336
|
|
7201
7337
|
Co-authored-by: Traian Nedelea <tron1point0@pm.me> ([`a349b90`](https://github.com/python-gitlab/python-gitlab/commit/a349b90ea6016ec8fbe91583f2bbd9832b41a368))
|
@@ -7204,6 +7340,8 @@ Co-authored-by: Traian Nedelea <tron1point0@pm.me> ([`a349b90`](https://gi
|
|
7204
7340
|
|
7205
7341
|
* fix: pass kwargs to subsequent queries in gitlab list ([`1d011ac`](https://github.com/python-gitlab/python-gitlab/commit/1d011ac72aeb18b5f31d10e42ffb49cf703c3e3a))
|
7206
7342
|
|
7343
|
+
* fix: add masked parameter for variables command ([`b6339bf`](https://github.com/python-gitlab/python-gitlab/commit/b6339bf85f3ae11d31bf03c4132f6e7b7c343900))
|
7344
|
+
|
7207
7345
|
* fix(merge): parse arguments as query_data ([`878098b`](https://github.com/python-gitlab/python-gitlab/commit/878098b74e216b4359e0ce012ff5cd6973043a0a))
|
7208
7346
|
|
7209
7347
|
### Unknown
|
@@ -7276,16 +7414,9 @@ Fix/keyset pagination revert ([`3f585ad`](https://github.com/python-gitlab/pytho
|
|
7276
7414
|
|
7277
7415
|
### Documentation
|
7278
7416
|
|
7279
|
-
* docs(remote_mirrors): fix create command ([`1bb4e42`](https://github.com/python-gitlab/python-gitlab/commit/1bb4e42858696c9ac8cbfc0f89fa703921b969f3))
|
7280
|
-
|
7281
7417
|
* docs(remote_mirrors): fix create command ([`bab91fe`](https://github.com/python-gitlab/python-gitlab/commit/bab91fe86fc8d23464027b1c3ab30619e520235e))
|
7282
7418
|
|
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))
|
7419
|
+
* docs(remote_mirrors): fix create command ([`1bb4e42`](https://github.com/python-gitlab/python-gitlab/commit/1bb4e42858696c9ac8cbfc0f89fa703921b969f3))
|
7289
7420
|
|
7290
7421
|
* docs: update authors ([`ac0c84d`](https://github.com/python-gitlab/python-gitlab/commit/ac0c84de02a237db350d3b21fe74d0c24d85a94e))
|
7291
7422
|
|
@@ -7307,6 +7438,11 @@ docs: add documentation for pipeline schedule play ([`07b9988`](https://github.c
|
|
7307
7438
|
|
7308
7439
|
* feat(api): added support in the GroupManager to upload Group avatars ([`28eb7ea`](https://github.com/python-gitlab/python-gitlab/commit/28eb7eab8fbe3750fb56e85967e8179b7025f441))
|
7309
7440
|
|
7441
|
+
* feat(services): add project service list API
|
7442
|
+
|
7443
|
+
Can be used to list available services
|
7444
|
+
It was introduced in GitLab 12.7 ([`fc52221`](https://github.com/python-gitlab/python-gitlab/commit/fc5222188ad096932fa89bb53f03f7118926898a))
|
7445
|
+
|
7310
7446
|
* feat: allow an environment variable to specify config location
|
7311
7447
|
|
7312
7448
|
It can be useful (especially in scripts) to specify a configuration
|
@@ -7315,11 +7451,6 @@ environment variable is defined, treat its value as the path to a
|
|
7315
7451
|
configuration file and include it in the set of default configuration
|
7316
7452
|
locations. ([`401e702`](https://github.com/python-gitlab/python-gitlab/commit/401e702a9ff14bf4cc33b3ed3acf16f3c60c6945))
|
7317
7453
|
|
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
7454
|
* feat(types): add __dir__ to RESTObject to expose attributes ([`cad134c`](https://github.com/python-gitlab/python-gitlab/commit/cad134c078573c009af18160652182e39ab5b114))
|
7324
7455
|
|
7325
7456
|
### Fix
|
@@ -7425,17 +7556,17 @@ fix(project): add missing project parameters ([`29fd95e`](https://github.com/pyt
|
|
7425
7556
|
|
7426
7557
|
* chore: bump to 2.2.0 ([`22d4b46`](https://github.com/python-gitlab/python-gitlab/commit/22d4b465c3217536cb444dafe5c25e9aaa3aa7be))
|
7427
7558
|
|
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))
|
7559
|
+
* chore: use raise..from for chained exceptions (#939) ([`79fef26`](https://github.com/python-gitlab/python-gitlab/commit/79fef262c3e05ff626981c891d9377abb1e18533))
|
7433
7560
|
|
7434
7561
|
* chore: rename ExportMixin to DownloadMixin ([`847da60`](https://github.com/python-gitlab/python-gitlab/commit/847da6063b4c63c8133e5e5b5b45e5b4f004bdc4))
|
7435
7562
|
|
7436
7563
|
* chore(mixins): factor out export download into ExportMixin ([`6ce5d1f`](https://github.com/python-gitlab/python-gitlab/commit/6ce5d1f14060a403f05993d77bf37720c25534ba))
|
7437
7564
|
|
7438
|
-
* chore:
|
7565
|
+
* chore(group): update group_manager attributes (#1062)
|
7566
|
+
|
7567
|
+
* chore(group): update group_manager attributes
|
7568
|
+
|
7569
|
+
Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`fa34f5e`](https://github.com/python-gitlab/python-gitlab/commit/fa34f5e20ecbd3f5d868df2fa9e399ac6559c5d5))
|
7439
7570
|
|
7440
7571
|
* chore: fix typo in allow_failures ([`265bbdd`](https://github.com/python-gitlab/python-gitlab/commit/265bbddacc25d709a8f13807ed04cae393d9802d))
|
7441
7572
|
|
@@ -7467,13 +7598,11 @@ Co-Authored-By: Nejc Habjan <hab.nejc@gmail.com> ([`ac6b2da`](https://gith
|
|
7467
7598
|
|
7468
7599
|
### Feature
|
7469
7600
|
|
7470
|
-
* feat(api): add support for remote mirrors API (#1056) ([`4cfaa2f`](https://github.com/python-gitlab/python-gitlab/commit/4cfaa2fd44b64459f6fc268a91d4469284c0e768))
|
7471
|
-
|
7472
7601
|
* feat(api): add support for Gitlab Deploy Token API ([`01de524`](https://github.com/python-gitlab/python-gitlab/commit/01de524ce39a67b549b3157bf4de827dd0568d6b))
|
7473
7602
|
|
7474
|
-
* feat(api): add support for
|
7603
|
+
* feat(api): add support for remote mirrors API (#1056) ([`4cfaa2f`](https://github.com/python-gitlab/python-gitlab/commit/4cfaa2fd44b64459f6fc268a91d4469284c0e768))
|
7475
7604
|
|
7476
|
-
* feat: add support for
|
7605
|
+
* feat(api): add support for Group Import/Export API (#1037) ([`6cb9d92`](https://github.com/python-gitlab/python-gitlab/commit/6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6))
|
7477
7606
|
|
7478
7607
|
* feat: add create from template args to ProjectManager
|
7479
7608
|
|
@@ -7481,6 +7610,8 @@ This commit adds the v4 Create project attributes necessary to create a
|
|
7481
7610
|
project from a project, instance, or group level template as documented
|
7482
7611
|
in https://docs.gitlab.com/ee/api/projects.html#create-project ([`f493b73`](https://github.com/python-gitlab/python-gitlab/commit/f493b73e1fbd3c3f1a187fed2de26030f00a89c9))
|
7483
7612
|
|
7613
|
+
* feat: add support for commit GPG signature API ([`da7a809`](https://github.com/python-gitlab/python-gitlab/commit/da7a809772233be27fa8e563925dd2e44e1ce058))
|
7614
|
+
|
7484
7615
|
### Fix
|
7485
7616
|
|
7486
7617
|
* fix(types): do not split single value string in ListAttribute ([`a26e585`](https://github.com/python-gitlab/python-gitlab/commit/a26e58585b3d82cf1a3e60a3b7b3bfd7f51d77e5))
|
@@ -7605,6 +7736,8 @@ Co-Authored-By: Mitar <mitar.git@tnode.com> ([`1609824`](https://github.co
|
|
7605
7736
|
|
7606
7737
|
* feat(api): add support for GitLab OAuth Applications API ([`4e12356`](https://github.com/python-gitlab/python-gitlab/commit/4e12356d6da58c9ef3d8bf9ae67e8aef8fafac0a))
|
7607
7738
|
|
7739
|
+
* feat: use keyset pagination by default for `all=True` ([`99b4484`](https://github.com/python-gitlab/python-gitlab/commit/99b4484da924f9378518a1a1194e1a3e75b48073))
|
7740
|
+
|
7608
7741
|
* feat: add support for user memberships API (#1009) ([`c313c2b`](https://github.com/python-gitlab/python-gitlab/commit/c313c2b01d796418539e42d578fed635f750cdc1))
|
7609
7742
|
|
7610
7743
|
* feat: add support for commit revert API (#991) ([`5298964`](https://github.com/python-gitlab/python-gitlab/commit/5298964ee7db8a610f23de2d69aad8467727ca97))
|
@@ -7615,17 +7748,33 @@ Co-Authored-By: Mitar <mitar.git@tnode.com> ([`1609824`](https://github.co
|
|
7615
7748
|
|
7616
7749
|
* fix(projects): correct copy-paste error ([`adc9101`](https://github.com/python-gitlab/python-gitlab/commit/adc91011e46dfce909b7798b1257819ec09d01bd))
|
7617
7750
|
|
7618
|
-
* fix:
|
7751
|
+
* fix(objects): add default name data and use http post
|
7619
7752
|
|
7620
|
-
|
7753
|
+
Updating approvers new api needs a POST call. Also It needs a name of the new rule, defaulting this to 'name'. ([`70c0cfb`](https://github.com/python-gitlab/python-gitlab/commit/70c0cfb686177bc17b796bf4d7eea8b784cf9651))
|
7754
|
+
|
7755
|
+
* fix: do not require empty data dict for create() ([`99d959f`](https://github.com/python-gitlab/python-gitlab/commit/99d959f74d06cca8df3f2d2b3a4709faba7799cb))
|
7621
7756
|
|
7622
7757
|
* fix(docs): fix typo in user memberships example ([`33889bc`](https://github.com/python-gitlab/python-gitlab/commit/33889bcbedb4aa421ea5bf83c13abe3168256c62))
|
7623
7758
|
|
7759
|
+
* fix: remove trailing slashes from base URL (#913) ([`2e396e4`](https://github.com/python-gitlab/python-gitlab/commit/2e396e4a84690c2ea2ea7035148b1a6038c03301))
|
7760
|
+
|
7624
7761
|
* fix: return response with commit data ([`b77b945`](https://github.com/python-gitlab/python-gitlab/commit/b77b945c7e0000fad4c422a5331c7e905e619a33))
|
7625
7762
|
|
7626
|
-
* fix(
|
7763
|
+
* fix(docs): update to new set approvers call for # of approvers
|
7627
7764
|
|
7628
|
-
|
7765
|
+
to set the # of approvers for an MR you need to use the same function as for setting the approvers id. ([`8e0c526`](https://github.com/python-gitlab/python-gitlab/commit/8e0c52620af47a9e2247eeb7dcc7a2e677822ff4))
|
7766
|
+
|
7767
|
+
* fix(objects): update set_approvers function call
|
7768
|
+
|
7769
|
+
Added a miss paramter update to the set_approvers function ([`65ecadc`](https://github.com/python-gitlab/python-gitlab/commit/65ecadcfc724a7086e5f84dbf1ecc9f7a02e5ed8))
|
7770
|
+
|
7771
|
+
* fix(docs and tests): update docs and tests for set_approvers
|
7772
|
+
|
7773
|
+
Updated the docs with the new set_approvers arguments, and updated tests with the arg as well. ([`2cf12c7`](https://github.com/python-gitlab/python-gitlab/commit/2cf12c7973e139c4932da1f31c33bb7658b132f7))
|
7774
|
+
|
7775
|
+
* fix(objects): update to new gitlab api for path, and args
|
7776
|
+
|
7777
|
+
Updated the gitlab path for set_approvers to approvers_rules, added default arg for rule type, and added arg for # of approvals required. ([`e512cdd`](https://github.com/python-gitlab/python-gitlab/commit/e512cddd30f3047230e8eedb79d98dc06e93a77b))
|
7629
7778
|
|
7630
7779
|
* fix: remove null values from features POST data, because it fails
|
7631
7780
|
with HTTP 500 ([`1ec1816`](https://github.com/python-gitlab/python-gitlab/commit/1ec1816d7c76ae079ad3b3e3b7a1bae70e0dd95b))
|
@@ -7720,28 +7869,6 @@ This also workarounds an GitLab issue, where private_profile, would reset to fal
|
|
7720
7869
|
|
7721
7870
|
* docs(auth): remove email/password auth ([`c9329bb`](https://github.com/python-gitlab/python-gitlab/commit/c9329bbf028c5e5ce175e99859c9e842ab8234bc))
|
7722
7871
|
|
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
7872
|
### Unknown
|
7746
7873
|
|
7747
7874
|
* Merge pull request #1007 from python-gitlab/chore/user-update
|
@@ -7898,18 +8025,6 @@ repositories into gitlab. ([`aa4d41b`](https://github.com/python-gitlab/python-g
|
|
7898
8025
|
|
7899
8026
|
* feat: nicer stacktrace ([`697cda2`](https://github.com/python-gitlab/python-gitlab/commit/697cda241509dd76adc1249b8029366cfc1d9d6e))
|
7900
8027
|
|
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
8028
|
* feat: add variable_type/protected to projects ci variables
|
7914
8029
|
|
7915
8030
|
This adds the ci variables types and protected flag for create/update
|
@@ -7925,6 +8040,18 @@ This adds the ci variables types for create/update requests.
|
|
7925
8040
|
See
|
7926
8041
|
https://docs.gitlab.com/ee/api/group_level_variables.html#create-variable ([`0986c93`](https://github.com/python-gitlab/python-gitlab/commit/0986c93177cde1f3be77d4f73314c37b14bba011))
|
7927
8042
|
|
8043
|
+
* feat: access project's issues statistics
|
8044
|
+
|
8045
|
+
Fixes #966 ([`482e57b`](https://github.com/python-gitlab/python-gitlab/commit/482e57ba716c21cd7b315e5803ecb3953c479b33))
|
8046
|
+
|
8047
|
+
* feat: adding project stats
|
8048
|
+
|
8049
|
+
Fixes #967 ([`db0b00a`](https://github.com/python-gitlab/python-gitlab/commit/db0b00a905c14d52eaca831fcc9243f33d2f092d))
|
8050
|
+
|
8051
|
+
* feat: retry transient HTTP errors
|
8052
|
+
|
8053
|
+
Fixes #970 ([`59fe271`](https://github.com/python-gitlab/python-gitlab/commit/59fe2714741133989a7beed613f1eeb67c18c54e))
|
8054
|
+
|
7928
8055
|
### Fix
|
7929
8056
|
|
7930
8057
|
* fix: ignore all parameter, when as_list=True
|
@@ -7999,6 +8126,8 @@ Fixes #954 ([`bbaa754`](https://github.com/python-gitlab/python-gitlab/commit/bb
|
|
7999
8126
|
|
8000
8127
|
* docs(changelog): add notice for release-notes on Github (#938) ([`de98e57`](https://github.com/python-gitlab/python-gitlab/commit/de98e572b003ee4cf2c1ef770a692f442c216247))
|
8001
8128
|
|
8129
|
+
* docs(pipelines_and_jobs): add pipeline custom variables usage example ([`b275eb0`](https://github.com/python-gitlab/python-gitlab/commit/b275eb03c5954ca24f249efad8125d1eacadd3ac))
|
8130
|
+
|
8002
8131
|
### Feature
|
8003
8132
|
|
8004
8133
|
* feat: add audit endpoint ([`2534020`](https://github.com/python-gitlab/python-gitlab/commit/2534020b1832f28339ef466d6dd3edc21a521260))
|
@@ -8102,8 +8231,6 @@ Closes #907 ([`3133ed7`](https://github.com/python-gitlab/python-gitlab/commit/3
|
|
8102
8231
|
|
8103
8232
|
### Documentation
|
8104
8233
|
|
8105
|
-
* docs(pipelines_and_jobs): add pipeline custom variables usage example ([`b275eb0`](https://github.com/python-gitlab/python-gitlab/commit/b275eb03c5954ca24f249efad8125d1eacadd3ac))
|
8106
|
-
|
8107
8234
|
* docs: projects get requires id
|
8108
8235
|
|
8109
8236
|
Also, add an example value for project_id to the other projects.get()
|
@@ -8129,10 +8256,10 @@ Fixes #917 ([`ca256a0`](https://github.com/python-gitlab/python-gitlab/commit/ca
|
|
8129
8256
|
|
8130
8257
|
* feat(test): unused unittest2, type -> isinstance ([`33b1801`](https://github.com/python-gitlab/python-gitlab/commit/33b180120f30515d0f76fcf635cb8c76045b1b42))
|
8131
8258
|
|
8132
|
-
* feat(doc): remove refs to api v3 in docs ([`6beeaa9`](https://github.com/python-gitlab/python-gitlab/commit/6beeaa993f8931d6b7fe682f1afed2bd4c8a4b73))
|
8133
|
-
|
8134
8259
|
* feat(auth): remove deprecated session auth ([`b751cdf`](https://github.com/python-gitlab/python-gitlab/commit/b751cdf424454d3859f3f038b58212e441faafaf))
|
8135
8260
|
|
8261
|
+
* feat(doc): remove refs to api v3 in docs ([`6beeaa9`](https://github.com/python-gitlab/python-gitlab/commit/6beeaa993f8931d6b7fe682f1afed2bd4c8a4b73))
|
8262
|
+
|
8136
8263
|
### Fix
|
8137
8264
|
|
8138
8265
|
* fix(projects): support `approval_rules` endpoint for projects
|
@@ -8417,10 +8544,10 @@ feat: Add grouplabel support with subscribable mixin ([`edb3359`](https://github
|
|
8417
8544
|
|
8418
8545
|
* chore(ci): update the GitLab version in the test image ([`c410699`](https://github.com/python-gitlab/python-gitlab/commit/c41069992de392747ccecf8c282ac0549932ccd1))
|
8419
8546
|
|
8420
|
-
* chore(ci): fix gitlab PyPI publish ([`3e37df1`](https://github.com/python-gitlab/python-gitlab/commit/3e37df16e2b6a8f1beffc3a595abcb06fd48a17c))
|
8421
|
-
|
8422
8547
|
* chore(ci): add automatic GitLab image pushes ([`95c9b6d`](https://github.com/python-gitlab/python-gitlab/commit/95c9b6dd489fc15c7dfceffca909917f4f3d4312))
|
8423
8548
|
|
8549
|
+
* chore(ci): fix gitlab PyPI publish ([`3e37df1`](https://github.com/python-gitlab/python-gitlab/commit/3e37df16e2b6a8f1beffc3a595abcb06fd48a17c))
|
8550
|
+
|
8424
8551
|
* chore: add a tox job to run black
|
8425
8552
|
|
8426
8553
|
Allow lines to be 88 chars long for flake8. ([`c27fa48`](https://github.com/python-gitlab/python-gitlab/commit/c27fa486698e441ebc16448ee93e5539cb885ced))
|
@@ -8478,14 +8605,14 @@ Fixes #660 ([`bed8e1b`](https://github.com/python-gitlab/python-gitlab/commit/be
|
|
8478
8605
|
|
8479
8606
|
* docs(setup): use proper readme on PyPI ([`6898097`](https://github.com/python-gitlab/python-gitlab/commit/6898097c45d53a3176882a3d9cb86c0015f8d491))
|
8480
8607
|
|
8481
|
-
* docs(groups): fix typo
|
8482
|
-
|
8483
|
-
Fixes #635 ([`ac2d65a`](https://github.com/python-gitlab/python-gitlab/commit/ac2d65aacba5c19eca857290c5b47ead6bb4356d))
|
8484
|
-
|
8485
8608
|
* docs(projects): fix typo in code sample
|
8486
8609
|
|
8487
8610
|
Fixes #630 ([`b93f2a9`](https://github.com/python-gitlab/python-gitlab/commit/b93f2a9ea9661521878ac45d70c7bd9a5a470548))
|
8488
8611
|
|
8612
|
+
* docs(groups): fix typo
|
8613
|
+
|
8614
|
+
Fixes #635 ([`ac2d65a`](https://github.com/python-gitlab/python-gitlab/commit/ac2d65aacba5c19eca857290c5b47ead6bb4356d))
|
8615
|
+
|
8489
8616
|
* docs(cli): add PyYAML requirement notice
|
8490
8617
|
|
8491
8618
|
Fixes #606 ([`d29a489`](https://github.com/python-gitlab/python-gitlab/commit/d29a48981b521bf31d6f0304b88f39a63185328a))
|
@@ -8575,14 +8702,14 @@ Fix #175 ([`ca014f8`](https://github.com/python-gitlab/python-gitlab/commit/ca01
|
|
8575
8702
|
|
8576
8703
|
* feat: get artifact by ref and job ([`cda1174`](https://github.com/python-gitlab/python-gitlab/commit/cda117456791977ad300a1dd26dec56009dac55e))
|
8577
8704
|
|
8578
|
-
* feat: add support for board update
|
8579
|
-
|
8580
|
-
Closes #801 ([`908d79f`](https://github.com/python-gitlab/python-gitlab/commit/908d79fa56965e7b3afcfa23236beef457cfa4b4))
|
8581
|
-
|
8582
8705
|
* feat: add support for issue.related_merge_requests
|
8583
8706
|
|
8584
8707
|
Closes #794 ([`90a3631`](https://github.com/python-gitlab/python-gitlab/commit/90a363154067bcf763043124d172eaf705c8fe90))
|
8585
8708
|
|
8709
|
+
* feat: add support for board update
|
8710
|
+
|
8711
|
+
Closes #801 ([`908d79f`](https://github.com/python-gitlab/python-gitlab/commit/908d79fa56965e7b3afcfa23236beef457cfa4b4))
|
8712
|
+
|
8586
8713
|
* feat: bump version to 1.9.0 ([`aaed448`](https://github.com/python-gitlab/python-gitlab/commit/aaed44837869bd2ce22b6f0d2e1196b1d0e626a6))
|
8587
8714
|
|
8588
8715
|
* feat: implement artifacts deletion
|
@@ -8896,13 +9023,13 @@ Revert "Custom cli actions fix" ([`ef32990`](https://github.com/python-g
|
|
8896
9023
|
|
8897
9024
|
Custom cli actions fix ([`e8823e9`](https://github.com/python-gitlab/python-gitlab/commit/e8823e91b04fd6cf3838ad256c02373db7029191))
|
8898
9025
|
|
8899
|
-
*
|
9026
|
+
* fix -/_ replacament for *Manager custom actions ([`6158fd2`](https://github.com/python-gitlab/python-gitlab/commit/6158fd23022b2e2643b6da7a39708b28ce59270a))
|
8900
9027
|
|
8901
|
-
|
9028
|
+
* dont ask for id attr if this is *Manager originating custom action ([`adb6305`](https://github.com/python-gitlab/python-gitlab/commit/adb63054add31e06cefec09982a02b1cd21c2cbd))
|
8902
9029
|
|
8903
|
-
* Merge pull request #
|
9030
|
+
* Merge pull request #759 from kkoralsky/registry_api
|
8904
9031
|
|
8905
|
-
|
9032
|
+
registry api implementation ([`84bcdc0`](https://github.com/python-gitlab/python-gitlab/commit/84bcdc0c452d2ada9a47aa9907d7551aeac23821))
|
8906
9033
|
|
8907
9034
|
* documentation fix ([`2d9078e`](https://github.com/python-gitlab/python-gitlab/commit/2d9078e8e785e3a17429623693f84bbf8526ee58))
|
8908
9035
|
|
@@ -8918,6 +9045,10 @@ chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/
|
|
8918
9045
|
|
8919
9046
|
* merged new release & registry apis ([`910c286`](https://github.com/python-gitlab/python-gitlab/commit/910c2861a3c895cca5aff0a0df1672bb7388c526))
|
8920
9047
|
|
9048
|
+
* Merge pull request #773 from python-gitlab/chore/ci-reliable-system
|
9049
|
+
|
9050
|
+
chore(ci): use reliable ci system ([`3dc6413`](https://github.com/python-gitlab/python-gitlab/commit/3dc64131eaec7d08b059039f446cc8d8c4b58c81))
|
9051
|
+
|
8921
9052
|
* Merge pull request #769 from python-gitlab/pep-fixes
|
8922
9053
|
|
8923
9054
|
fix: pep8 errors ([`a730598`](https://github.com/python-gitlab/python-gitlab/commit/a7305980ef4065a6518951fb166b11eec9003b4d))
|
@@ -8926,10 +9057,6 @@ fix: pep8 errors ([`a730598`](https://github.com/python-gitlab/python-gitlab/com
|
|
8926
9057
|
|
8927
9058
|
add project releases api ([`16de1b0`](https://github.com/python-gitlab/python-gitlab/commit/16de1b03fde3dbbe8f851614dd1d8c09de102fe5))
|
8928
9059
|
|
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
9060
|
* Use NoUpdateMixin for now ([`8e55a3c`](https://github.com/python-gitlab/python-gitlab/commit/8e55a3c85f3537e2be1032bf7d28080a4319ec89))
|
8934
9061
|
|
8935
9062
|
* add project releases api ([`3680545`](https://github.com/python-gitlab/python-gitlab/commit/3680545a01513ed044eb888151d2e2c635cea255))
|
@@ -8954,14 +9081,14 @@ Re-enable command specific help messages ([`a6e10f9`](https://github.com/python-
|
|
8954
9081
|
|
8955
9082
|
* Use sys.exit as in rest of code ([`6fe2988`](https://github.com/python-gitlab/python-gitlab/commit/6fe2988dd050c05b17556cacac4e283fbf5242a8))
|
8956
9083
|
|
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
9084
|
* Re-enable command specific help mesaages
|
8962
9085
|
|
8963
9086
|
This makes sure that the global help message wont be printed instead of the command spedific one unless we fail to read the configuration file ([`a8caddc`](https://github.com/python-gitlab/python-gitlab/commit/a8caddcb1e193c5472f5521dee0e18b1af32c89b))
|
8964
9087
|
|
9088
|
+
* Merge pull request #729 from xarx00/PR-bugfix-716
|
9089
|
+
|
9090
|
+
Fix for #716: %d replaced by %s ([`bc973d4`](https://github.com/python-gitlab/python-gitlab/commit/bc973d450114fcdb2fb8222ab598b5d932585064))
|
9091
|
+
|
8965
9092
|
* Fix for #716: %d replaced by %s ([`675f879`](https://github.com/python-gitlab/python-gitlab/commit/675f879c1ec6cf1c77cbf96d8b7b2cd51e1cbaad))
|
8966
9093
|
|
8967
9094
|
* Merge pull request #725 from python-gitlab/fix/699
|
@@ -8986,6 +9113,10 @@ chore(ci): don't try to publish existing release ([`39cb97d`](https://github
|
|
8986
9113
|
|
8987
9114
|
Implement __eq__ and __hash__ methods ([`a4ea0fe`](https://github.com/python-gitlab/python-gitlab/commit/a4ea0fe6b91d856b30d25c9f0f71ef9cae8f3f08))
|
8988
9115
|
|
9116
|
+
* Implement __eq__ and __hash__ methods
|
9117
|
+
|
9118
|
+
To ease lists and sets manipulations. ([`3d60850`](https://github.com/python-gitlab/python-gitlab/commit/3d60850aa42351a0bb0066ef579ade95df5a81ee))
|
9119
|
+
|
8989
9120
|
* Merge pull request #705 from python-gitlab/release-1.8.0
|
8990
9121
|
|
8991
9122
|
Release version 1.8.0 ([`57fa4e3`](https://github.com/python-gitlab/python-gitlab/commit/57fa4e37aaf6ccee0d75085520f96fd15752a3df))
|
@@ -8996,10 +9127,6 @@ Release version 1.8.0 ([`57fa4e3`](https://github.com/python-gitlab/python-gitla
|
|
8996
9127
|
|
8997
9128
|
Fix all kwarg behaviour ([`8ce4e9e`](https://github.com/python-gitlab/python-gitlab/commit/8ce4e9e07913d9b9bb916d079ff0a7c528830a2d))
|
8998
9129
|
|
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
9130
|
* Fix all kwarg behaviour
|
9004
9131
|
|
9005
9132
|
`all` kwarg is used to manage GitlabList generator behaviour.
|
@@ -9076,10 +9203,23 @@ fix: docker entry point argument passing ([`f945910`](https://github.com/python-
|
|
9076
9203
|
|
9077
9204
|
Improve error message handling in exceptions ([`7bd41cb`](https://github.com/python-gitlab/python-gitlab/commit/7bd41cbf88af87a31ad1943f58c5f7f8295d956b))
|
9078
9205
|
|
9206
|
+
* Improve error message handling in exceptions
|
9207
|
+
|
9208
|
+
* Depending on the request Gitlab has a 'message' or 'error' attribute
|
9209
|
+
in the json data, handle both
|
9210
|
+
* Add some consistency by converting messages to unicode or str for
|
9211
|
+
exceptions (depending on the python version)
|
9212
|
+
|
9213
|
+
Closes #616 ([`1fb1296`](https://github.com/python-gitlab/python-gitlab/commit/1fb1296c9191e57e109c4e5eb9504bce191a6ff1))
|
9214
|
+
|
9079
9215
|
* Merge pull request #625 from python-gitlab/fix/611/resource_label_event
|
9080
9216
|
|
9081
9217
|
Add support to resource label events ([`20eb7d8`](https://github.com/python-gitlab/python-gitlab/commit/20eb7d8900cdc24c3ea1e7ef2262dca9965a2884))
|
9082
9218
|
|
9219
|
+
* Add support to resource label events
|
9220
|
+
|
9221
|
+
Closes #611 ([`95d0d74`](https://github.com/python-gitlab/python-gitlab/commit/95d0d745d4bafe702c89c972f644b049d6c810ab))
|
9222
|
+
|
9083
9223
|
* Merge pull request #642 from python-gitlab/feature/589/member_all
|
9084
9224
|
|
9085
9225
|
[feature] Add support for members all() method ([`22536f3`](https://github.com/python-gitlab/python-gitlab/commit/22536f34d87e5df1a3400d3f474a988c93b9bfb1))
|
@@ -9088,34 +9228,21 @@ Add support to resource label events ([`20eb7d8`](https://github.com/python-gitl
|
|
9088
9228
|
|
9089
9229
|
Closes #589 ([`ef1523a`](https://github.com/python-gitlab/python-gitlab/commit/ef1523a23737db45d0f439badcd8be564bcb67fb))
|
9090
9230
|
|
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
9231
|
* Merge pull request #639 from python-gitlab/fix/628/doc_typo
|
9101
9232
|
|
9102
9233
|
[docs] Fix typo in custom attributes example ([`011274e`](https://github.com/python-gitlab/python-gitlab/commit/011274e7f94519d30dee59f5448215838d058e37))
|
9103
9234
|
|
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
9235
|
* [docs] Fix typo in custom attributes example
|
9109
9236
|
|
9110
9237
|
Closes #628 ([`bb251b8`](https://github.com/python-gitlab/python-gitlab/commit/bb251b8ef780216de03dde67912ad5fffbb30390))
|
9111
9238
|
|
9112
|
-
*
|
9239
|
+
* Merge pull request #638 from python-gitlab/fix/633/milestone_filter
|
9113
9240
|
|
9114
|
-
|
9241
|
+
[docs] Fix the milestone filetring doc (iid -> iids) ([`e6df9a8`](https://github.com/python-gitlab/python-gitlab/commit/e6df9a8b2f9c2397ea3ae67dfe19a2fa91f41c19))
|
9115
9242
|
|
9116
|
-
*
|
9243
|
+
* [docs] Fix the milestone filetring doc (iid -> iids)
|
9117
9244
|
|
9118
|
-
|
9245
|
+
Fixes #633 ([`0c9a00b`](https://github.com/python-gitlab/python-gitlab/commit/0c9a00bb154007a0a9f665ca38e6fec50d378eaf))
|
9119
9246
|
|
9120
9247
|
* Merge pull request #634 from python-gitlab/docs/project-typo
|
9121
9248
|
|
@@ -9137,27 +9264,27 @@ Fix 3 typos in docs ([`7f09666`](https://github.com/python-gitlab/python-gitlab/
|
|
9137
9264
|
|
9138
9265
|
Use the pythongitlab/test-python-gitlab docker image for tests ([`742243f`](https://github.com/python-gitlab/python-gitlab/commit/742243f4f43042d4b561e3875dc38e560bb71624))
|
9139
9266
|
|
9140
|
-
*
|
9141
|
-
|
9142
|
-
[docs] Add an example of pipeline schedule vars listing ([`fcce7a3`](https://github.com/python-gitlab/python-gitlab/commit/fcce7a316968a9aea7aa504730cea1734c2f897a))
|
9267
|
+
* Use the pythongitlab/test-python-gitlab docker image for tests
|
9143
9268
|
|
9144
|
-
|
9269
|
+
This images is updated to the latest GitLab CE.
|
9145
9270
|
|
9146
|
-
|
9271
|
+
Fix the diff() test to match the change in the API output. ([`2c6c929`](https://github.com/python-gitlab/python-gitlab/commit/2c6c929f78dfda92d5ae93235bb9065d289a68cc))
|
9147
9272
|
|
9148
|
-
*
|
9273
|
+
* Merge pull request #619 from python-gitlab/issue/595
|
9149
9274
|
|
9150
|
-
|
9275
|
+
[docs] Add an example of pipeline schedule vars listing ([`fcce7a3`](https://github.com/python-gitlab/python-gitlab/commit/fcce7a316968a9aea7aa504730cea1734c2f897a))
|
9151
9276
|
|
9152
9277
|
* [docs] Add an example of pipeline schedule vars listing
|
9153
9278
|
|
9154
9279
|
Closes #595 ([`f7fbfca`](https://github.com/python-gitlab/python-gitlab/commit/f7fbfca7e6a32a31dbf7ca8e1d4f83b34b7ac9db))
|
9155
9280
|
|
9156
|
-
*
|
9281
|
+
* Merge pull request #626 from python-gitlab/fix/596/maintainer_wanted
|
9157
9282
|
|
9158
|
-
|
9283
|
+
[README] Remove the "maintainer(s) wanted" notice ([`bc6ce04`](https://github.com/python-gitlab/python-gitlab/commit/bc6ce047959a57e58e8260b41556f29b3da27da4))
|
9159
9284
|
|
9160
|
-
|
9285
|
+
* [README] Remove the "maintainer(s) wanted" notice
|
9286
|
+
|
9287
|
+
Closes #596 ([`f51fa19`](https://github.com/python-gitlab/python-gitlab/commit/f51fa19dc4f78d036f18217436add00b7d94c39d))
|
9161
9288
|
|
9162
9289
|
* Merge pull request #620 from bittner/patch-1
|
9163
9290
|
|
@@ -9378,6 +9505,8 @@ Fixes #526 ([`617aa64`](https://github.com/python-gitlab/python-gitlab/commit/61
|
|
9378
9505
|
|
9379
9506
|
make as_list=False work for all=True queries ([`a6512f9`](https://github.com/python-gitlab/python-gitlab/commit/a6512f9efcf50db1354bbd903526b78d8e766ae1))
|
9380
9507
|
|
9508
|
+
* make as_list work for all queries ([`8e78761`](https://github.com/python-gitlab/python-gitlab/commit/8e787612fa77dc945a4c1327e9faa6eee10c48f2))
|
9509
|
+
|
9381
9510
|
* Add support for issue links (EE)
|
9382
9511
|
|
9383
9512
|
Fixes #422 ([`8873eda`](https://github.com/python-gitlab/python-gitlab/commit/8873edaeebd18d6b2ed08a8609c011ad29249b48))
|
@@ -9392,6 +9521,8 @@ Fixes #524 ([`39c8ad5`](https://github.com/python-gitlab/python-gitlab/commit/39
|
|
9392
9521
|
|
9393
9522
|
fix #521 change post_data default value to None ([`6dd8774`](https://github.com/python-gitlab/python-gitlab/commit/6dd8774e1fa62e6f29cd760509e0274f4205683f))
|
9394
9523
|
|
9524
|
+
* fix #521 change post_data default value to None ([`d4c1a8c`](https://github.com/python-gitlab/python-gitlab/commit/d4c1a8ce8f0b0a9d60922e22cdc044343fe24cd3))
|
9525
|
+
|
9395
9526
|
* Add basic testing forr EE endpoints
|
9396
9527
|
|
9397
9528
|
Today we don't have a solution for easily deploying an EE instance so
|
@@ -9402,10 +9533,6 @@ private EE instance. ([`c88333b`](https://github.com/python-gitlab/python-gitlab
|
|
9402
9533
|
|
9403
9534
|
* Add support for project-level MR approval configuration ([`473dc6f`](https://github.com/python-gitlab/python-gitlab/commit/473dc6f50d27b2e5349bb2e7c8bc07b48e9834d1))
|
9404
9535
|
|
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
9536
|
* Merge pull request #519 from jouve/silence
|
9410
9537
|
|
9411
9538
|
silence logs/warnings in unittests ([`bbefb99`](https://github.com/python-gitlab/python-gitlab/commit/bbefb9936a18909d28d0f81b6ce99d4981ab8148))
|
@@ -9450,6 +9577,8 @@ Fixes #469 ([`9412a5d`](https://github.com/python-gitlab/python-gitlab/commit/94
|
|
9450
9577
|
|
9451
9578
|
Add support for Project badges ([`01a41ef`](https://github.com/python-gitlab/python-gitlab/commit/01a41efd271dd08d4b5744473fb71a67d9f5dea5))
|
9452
9579
|
|
9580
|
+
* Add support for Project badges ([`e00cad4`](https://github.com/python-gitlab/python-gitlab/commit/e00cad4f73c43d28799ec6e79e32fd03e58e79b4))
|
9581
|
+
|
9453
9582
|
* Add support for the gitlab CI lint API ([`40b9f4d`](https://github.com/python-gitlab/python-gitlab/commit/40b9f4d62d5b9853bfd63317d8ad578b4525e665))
|
9454
9583
|
|
9455
9584
|
* Update the settings attributes ([`0cc9828`](https://github.com/python-gitlab/python-gitlab/commit/0cc9828fda25531a57010cb310f23d3c185e63a6))
|
@@ -9498,8 +9627,6 @@ Testing will be enable when GitLab 11.0 is available. ([`9be50be`](https://githu
|
|
9498
9627
|
|
9499
9628
|
Add a new UserAgentDetail mixin to avoid code duplication. ([`7025743`](https://github.com/python-gitlab/python-gitlab/commit/70257438044b793a42adce791037b9b86ae35d9b))
|
9500
9629
|
|
9501
|
-
* Add support for Project badges ([`e00cad4`](https://github.com/python-gitlab/python-gitlab/commit/e00cad4f73c43d28799ec6e79e32fd03e58e79b4))
|
9502
|
-
|
9503
9630
|
* Add support for merged branches deletion ([`590ea0d`](https://github.com/python-gitlab/python-gitlab/commit/590ea0da7e5617c42e705c62370d6e94ff46ea74))
|
9504
9631
|
|
9505
9632
|
* Add support for the discussions API
|
@@ -9595,11 +9722,13 @@ Fixes #491 ([`037585c`](https://github.com/python-gitlab/python-gitlab/commit/03
|
|
9595
9722
|
|
9596
9723
|
Change method for getting content of snippet ([`85f2388`](https://github.com/python-gitlab/python-gitlab/commit/85f238846071724c9323df06fdc757de2b453608))
|
9597
9724
|
|
9598
|
-
*
|
9725
|
+
* Add API v3 example ([`5c16c8d`](https://github.com/python-gitlab/python-gitlab/commit/5c16c8d03c39d4b6d87490a36102cdd4d2ad2160))
|
9599
9726
|
|
9600
|
-
|
9727
|
+
* Change method for getting content of snippet ([`505c749`](https://github.com/python-gitlab/python-gitlab/commit/505c74907fca52d315b273033e3d62643623425b))
|
9601
9728
|
|
9602
|
-
*
|
9729
|
+
* Fix URL encoding on branch methods
|
9730
|
+
|
9731
|
+
Fixes #493 ([`736fece`](https://github.com/python-gitlab/python-gitlab/commit/736fece2219658ff446ea31ee3c03dfe18ecaacb))
|
9603
9732
|
|
9604
9733
|
* Merge pull request #488 from siemens/feat/rate-limit
|
9605
9734
|
|
@@ -9613,8 +9742,6 @@ This reverts commit 32b399af0e506b38a10a2c625338848a03f0b35d. ([`25ed8e7`](https
|
|
9613
9742
|
|
9614
9743
|
Update projects.py documentation ([`2b9ae5c`](https://github.com/python-gitlab/python-gitlab/commit/2b9ae5ce1664b97414152dfb1acb50fbcd05f95e))
|
9615
9744
|
|
9616
|
-
* Change method for getting content of snippet ([`505c749`](https://github.com/python-gitlab/python-gitlab/commit/505c74907fca52d315b273033e3d62643623425b))
|
9617
|
-
|
9618
9745
|
* Update projects.py
|
9619
9746
|
|
9620
9747
|
Add missing attributes to file.create in order to make it work. ([`629b1e1`](https://github.com/python-gitlab/python-gitlab/commit/629b1e1c9488cea4bf853a42622dd7f182ee47ed))
|
@@ -9754,22 +9881,32 @@ Add documentation about labels update ([`0cbd9c6`](https://github.com/python-git
|
|
9754
9881
|
|
9755
9882
|
* Merge branch 'mlq-feature/pipeline-schedules' ([`39a0429`](https://github.com/python-gitlab/python-gitlab/commit/39a04297d2661f82980f1b1921a3aba1ab1feb32))
|
9756
9883
|
|
9884
|
+
* Update pipeline schedules code ([`6a87d38`](https://github.com/python-gitlab/python-gitlab/commit/6a87d38b0c5ffdfa9c78dcf5232ec78986010ce6))
|
9885
|
+
|
9886
|
+
* Project pipeline jobs ([`b861837`](https://github.com/python-gitlab/python-gitlab/commit/b861837b25bb45dbe40b035dff5f41898450e22b))
|
9887
|
+
|
9888
|
+
* Project pipeline schedules ([`34e32a0`](https://github.com/python-gitlab/python-gitlab/commit/34e32a0944b65583a57b97bf0124b8935ab49fa7))
|
9889
|
+
|
9757
9890
|
* Project pipeline jobs ([`fd726cd`](https://github.com/python-gitlab/python-gitlab/commit/fd726cdb61a78aafb780cae56a7909e7b648e4dc))
|
9758
9891
|
|
9759
9892
|
* Project pipeline schedules ([`31eb913`](https://github.com/python-gitlab/python-gitlab/commit/31eb913be34f8dea0c4b1f8396b74bb74b32a6f0))
|
9760
9893
|
|
9761
|
-
* Update pipeline schedules code ([`6a87d38`](https://github.com/python-gitlab/python-gitlab/commit/6a87d38b0c5ffdfa9c78dcf5232ec78986010ce6))
|
9762
|
-
|
9763
9894
|
* Merge pull request #420 from tardyp/patch-2
|
9764
9895
|
|
9765
9896
|
make trigger_pipeline return the pipeline ([`70c779c`](https://github.com/python-gitlab/python-gitlab/commit/70c779c4243d1807323cc1afc8cbc97918c3b8fc))
|
9766
9897
|
|
9898
|
+
* fix pep8 ([`8134f84`](https://github.com/python-gitlab/python-gitlab/commit/8134f84f96059dbde72359c414352e2dbe3535e0))
|
9899
|
+
|
9900
|
+
* make trigger_pipeline return the pipeline
|
9901
|
+
|
9902
|
+
Trigger_pipeline returns nothing, which makes it difficult to track the pipeline being trigger.
|
9903
|
+
|
9904
|
+
Next PR will be about updating a pipeline object to get latest status (not sure yet the best way to do it) ([`72ade19`](https://github.com/python-gitlab/python-gitlab/commit/72ade19046f47b35c1b5ad7333f11fee0dc1e56f))
|
9905
|
+
|
9767
9906
|
* Merge pull request #419 from tardyp/patch-1
|
9768
9907
|
|
9769
9908
|
Simplify the example for streamed artifacts ([`6ea7ab7`](https://github.com/python-gitlab/python-gitlab/commit/6ea7ab73eb6be20c4e8c092044bf0efe421ce4f5))
|
9770
9909
|
|
9771
|
-
* fix pep8 ([`8134f84`](https://github.com/python-gitlab/python-gitlab/commit/8134f84f96059dbde72359c414352e2dbe3535e0))
|
9772
|
-
|
9773
9910
|
* add a Simplified example for streamed artifacts
|
9774
9911
|
|
9775
9912
|
Going through an object adds a lot of complication.
|
@@ -9785,12 +9922,6 @@ Fixes #371 ([`b4f0317`](https://github.com/python-gitlab/python-gitlab/commit/b4
|
|
9785
9922
|
|
9786
9923
|
Fixes #421 ([`29bd813`](https://github.com/python-gitlab/python-gitlab/commit/29bd81336828b72a47673c76862cb4b532401766))
|
9787
9924
|
|
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
9925
|
* Add Gitlab and User events support
|
9795
9926
|
|
9796
9927
|
Closes #412 ([`1ca3080`](https://github.com/python-gitlab/python-gitlab/commit/1ca30807566ca3ac1bd295516a122cd75ba9031f))
|
@@ -9817,14 +9948,14 @@ Fixes #416 ([`e957817`](https://github.com/python-gitlab/python-gitlab/commit/e9
|
|
9817
9948
|
|
9818
9949
|
Adding the supported version badge ([`5149651`](https://github.com/python-gitlab/python-gitlab/commit/5149651fb4d21dabfde012238abad470bb0aa9b5))
|
9819
9950
|
|
9951
|
+
* Adding the supported version badge ([`9253661`](https://github.com/python-gitlab/python-gitlab/commit/9253661c381e9298643e689074c00b7fae831955))
|
9952
|
+
|
9820
9953
|
* Merge pull request #409 from movermeyer/patch-2
|
9821
9954
|
|
9822
9955
|
Clarifying what compatible means ([`8a953c2`](https://github.com/python-gitlab/python-gitlab/commit/8a953c2d3ede2bdd672323621b4e72a5f660f6f5))
|
9823
9956
|
|
9824
9957
|
* Clarifying what supports means ([`b980c9f`](https://github.com/python-gitlab/python-gitlab/commit/b980c9f7db97f8d55ed50d116a1d9fcf817ebf0d))
|
9825
9958
|
|
9826
|
-
* Adding the supported version badge ([`9253661`](https://github.com/python-gitlab/python-gitlab/commit/9253661c381e9298643e689074c00b7fae831955))
|
9827
|
-
|
9828
9959
|
* Prepare v1.2.0 ([`3a119cd`](https://github.com/python-gitlab/python-gitlab/commit/3a119cd6a4841fae5b2f116512830ed12b4b29f0))
|
9829
9960
|
|
9830
9961
|
* Respect content of REQUESTS_CA_BUNDLE and *_proxy envvars
|
@@ -9924,33 +10055,29 @@ Fixes #361 ([`b33265c`](https://github.com/python-gitlab/python-gitlab/commit/b3
|
|
9924
10055
|
|
9925
10056
|
Expected HTTP response for subscribe is 201 ([`f624d2e`](https://github.com/python-gitlab/python-gitlab/commit/f624d2e642e4ebabb8d330595f3fe0fc9882add7))
|
9926
10057
|
|
10058
|
+
* Expected HTTP response for subscribe is 201
|
10059
|
+
|
10060
|
+
It seems that the GitLab API gives HTTP response code 201 ("created") when
|
10061
|
+
successfully subscribing to an object, not 200. ([`0d5f275`](https://github.com/python-gitlab/python-gitlab/commit/0d5f275d9b23d20da45ac675da10bfd428327a2f))
|
10062
|
+
|
9927
10063
|
* Merge pull request #374 from benjamb/typos
|
9928
10064
|
|
9929
10065
|
Fix typos in docs ([`8f3b656`](https://github.com/python-gitlab/python-gitlab/commit/8f3b656d007c95fa2fa99389aaf326a2eb998e16))
|
9930
10066
|
|
10067
|
+
* Fix typos in docs ([`7c886de`](https://github.com/python-gitlab/python-gitlab/commit/7c886dea5e9c42c88be01ef077532202cbad65ea))
|
10068
|
+
|
10069
|
+
* Fix link to settings API ([`be386b8`](https://github.com/python-gitlab/python-gitlab/commit/be386b81049e84a4b9a0daeb6cbba15ddb4b041e))
|
10070
|
+
|
9931
10071
|
* Update pagination docs for ProjectCommit
|
9932
10072
|
|
9933
10073
|
In v3 pagination starts at page 0 instead of page 1.
|
9934
10074
|
|
9935
10075
|
Fixes: #377 ([`c6c0686`](https://github.com/python-gitlab/python-gitlab/commit/c6c068629273393eaf4f7063e1e01c5f0528c4ec))
|
9936
10076
|
|
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
10077
|
* Revert "Add unit tests for mixin exceptions"
|
9947
10078
|
|
9948
10079
|
This reverts commit 4ee139ad5c58006da1f9af93fdd4e70592e6daa0. ([`084b905`](https://github.com/python-gitlab/python-gitlab/commit/084b905f78046d894fc76d3ad545689312b94bb8))
|
9949
10080
|
|
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
10081
|
* Add support for project housekeeping
|
9955
10082
|
|
9956
10083
|
Closes #368 ([`9ede652`](https://github.com/python-gitlab/python-gitlab/commit/9ede6529884e850532758ae218465c1b7584c2d4))
|
@@ -10012,6 +10139,8 @@ Add docs and unit tests ([`e9b1583`](https://github.com/python-gitlab/python-git
|
|
10012
10139
|
|
10013
10140
|
Add mattermost service support ([`82897b7`](https://github.com/python-gitlab/python-gitlab/commit/82897b7c0461f069f5067de3ebf787466a6c4486))
|
10014
10141
|
|
10142
|
+
* Add mattermost service support ([`b5e6a46`](https://github.com/python-gitlab/python-gitlab/commit/b5e6a469e7e299dfa09bac730daee48432454075))
|
10143
|
+
|
10015
10144
|
* Add users custome attributes support ([`4fb2e43`](https://github.com/python-gitlab/python-gitlab/commit/4fb2e439803bd55868b91827a5fbaa448f1dff56))
|
10016
10145
|
|
10017
10146
|
* 1.1.0 release ([`32f7e17`](https://github.com/python-gitlab/python-gitlab/commit/32f7e17208987fa345670421c333e22ae6aced6a))
|
@@ -10102,8 +10231,6 @@ so let's drop the _constructor_types definitions. ([`32ea62a`](https://githu
|
|
10102
10231
|
|
10103
10232
|
Fixes #343 ([`dc504ab`](https://github.com/python-gitlab/python-gitlab/commit/dc504ab815cc9ad74a6a6beaf6faa88a5d99c293))
|
10104
10233
|
|
10105
|
-
* Add mattermost service support ([`b5e6a46`](https://github.com/python-gitlab/python-gitlab/commit/b5e6a469e7e299dfa09bac730daee48432454075))
|
10106
|
-
|
10107
10234
|
* ProjectFileManager.create: handle / in file paths
|
10108
10235
|
|
10109
10236
|
Replace / with %2F as is done in other methods.
|
@@ -10309,14 +10436,14 @@ Support SSL verification via internal CA bundle ([`0e70dd9`](https://github.com/
|
|
10309
10436
|
|
10310
10437
|
Docs: Add link to gitlab docs on obtaining a token ([`657f011`](https://github.com/python-gitlab/python-gitlab/commit/657f0119a3e13ceb07e4d0b17fa126260a4dafc7))
|
10311
10438
|
|
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
10439
|
* Docs: Add link to gitlab docs on obtaining a token
|
10317
10440
|
|
10318
10441
|
I find these sort of links very user friendly 😅 ([`9b8b806`](https://github.com/python-gitlab/python-gitlab/commit/9b8b8060a56465d8aade2368033172387e15527a))
|
10319
10442
|
|
10443
|
+
* update tox/travis test envs ([`759f6ed`](https://github.com/python-gitlab/python-gitlab/commit/759f6edaf71b456cc36e9de00157385c28e2e3e7))
|
10444
|
+
|
10445
|
+
* Merge branch 'rework_api' ([`3ccdec0`](https://github.com/python-gitlab/python-gitlab/commit/3ccdec04525456c906f26ee2e931607a5d0dcd20))
|
10446
|
+
|
10320
10447
|
* Make the project services work in v4 ([`2816c1a`](https://github.com/python-gitlab/python-gitlab/commit/2816c1ae51b01214012679b74aa14de1a6696eb5))
|
10321
10448
|
|
10322
10449
|
* Fix v3 tests ([`eee39a3`](https://github.com/python-gitlab/python-gitlab/commit/eee39a3a5f1ef3bccc45b0f23009531a9bf76801))
|
@@ -10343,42 +10470,12 @@ Match the exceptions raised in v3 for v4.
|
|
10343
10470
|
|
10344
10471
|
Also update the doc strings with correct information. ([`c15ba3b`](https://github.com/python-gitlab/python-gitlab/commit/c15ba3b61065973da983ff792a34268a3ba75e12))
|
10345
10472
|
|
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
10473
|
* Fix merge_when_build_succeeds attribute name
|
10353
10474
|
|
10354
10475
|
Fixes #285 ([`374a6c4`](https://github.com/python-gitlab/python-gitlab/commit/374a6c4544931a564221cccabb6abbda9e6bc558))
|
10355
10476
|
|
10356
|
-
* Fix merge_when_build_succeeds attribute name
|
10357
|
-
|
10358
|
-
Fixes #285 ([`67d9a89`](https://github.com/python-gitlab/python-gitlab/commit/67d9a8989b76af25fca1b5f0f82c4af5e81332eb))
|
10359
|
-
|
10360
10477
|
* Merge branch 'master' into rework_api ([`274b3bf`](https://github.com/python-gitlab/python-gitlab/commit/274b3bffc3365eca2fd3fa10c1e7e9b49990533e))
|
10361
10478
|
|
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
10479
|
* remove useless attributes ([`fe3a06c`](https://github.com/python-gitlab/python-gitlab/commit/fe3a06c2a6a9776c22ff9120c99b3654e02e5e50))
|
10383
10480
|
|
10384
10481
|
* Refactor the CLI
|
@@ -10396,20 +10493,12 @@ For now v4 isn't working at all. ([`e3d50b5`](https://github.com/python-gitl
|
|
10396
10493
|
|
10397
10494
|
* Fix GroupProject constructor ([`afe4b05`](https://github.com/python-gitlab/python-gitlab/commit/afe4b05de9833d450b9bb52f572be5663d8f4dd7))
|
10398
10495
|
|
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
10496
|
* minor doc updates ([`6e5a6ec`](https://github.com/python-gitlab/python-gitlab/commit/6e5a6ec1f7c2993697c359b2bcab0e1324e219bc))
|
10404
10497
|
|
10405
10498
|
* Fix changelog and release notes inclusion in sdist ([`1922cd5`](https://github.com/python-gitlab/python-gitlab/commit/1922cd5d9b182902586170927acb758f8a6f614c))
|
10406
10499
|
|
10407
10500
|
* Rework documentation ([`1a7f672`](https://github.com/python-gitlab/python-gitlab/commit/1a7f67274c9175f46a76c5ae0d8bde7ca2731014))
|
10408
10501
|
|
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
10502
|
* Remove unused future.division import
|
10414
10503
|
|
10415
10504
|
We don't do math. ([`2a0afc5`](https://github.com/python-gitlab/python-gitlab/commit/2a0afc50311c727ee3bef700553fb60924439ef4))
|
@@ -10422,8 +10511,6 @@ We don't do math. ([`2a0afc5`](https://github.com/python-gitlab/python-gitla
|
|
10422
10511
|
|
10423
10512
|
* 0.10 is old history: remove the upgrade doc ([`76e9b12`](https://github.com/python-gitlab/python-gitlab/commit/76e9b1211fd23a3565ab00be0b169d782a14dca7))
|
10424
10513
|
|
10425
|
-
* 0.21.2 release ([`19f1b1a`](https://github.com/python-gitlab/python-gitlab/commit/19f1b1a968aba7bd9604511c015e8930e5111324))
|
10426
|
-
|
10427
10514
|
* Add laziness to get()
|
10428
10515
|
|
10429
10516
|
The goal is to create empty objects (no API called) but give access to
|
@@ -10442,16 +10529,8 @@ gl.project_issue_notes) ([`61fba84`](https://github.com/python-gitlab/python-git
|
|
10442
10529
|
|
10443
10530
|
* Add new event types to ProjectHook ([`a0f215c`](https://github.com/python-gitlab/python-gitlab/commit/a0f215c2deb16ce5d9e96de5b36e4f360ac1b168))
|
10444
10531
|
|
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
10532
|
* Fix a few remaining methods ([`3488c5c`](https://github.com/python-gitlab/python-gitlab/commit/3488c5cf137b0dbe6e96a4412698bafaaa640143))
|
10450
10533
|
|
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
10534
|
* tests for objects mixins ([`68f4114`](https://github.com/python-gitlab/python-gitlab/commit/68f411478f0d693f7d37436a9280847cb610a15b))
|
10456
10535
|
|
10457
10536
|
* Add tests for managers mixins ([`b776c5e`](https://github.com/python-gitlab/python-gitlab/commit/b776c5ee66a84f89acd4126ea729c77196e07f66))
|
@@ -10464,30 +10543,28 @@ These are being returned in the live API, but can't set them. ([`1a58f7e`](h
|
|
10464
10543
|
|
10465
10544
|
* Merge branch 'rework_api' of github.com:python-gitlab/python-gitlab into rework_api ([`a5b39a5`](https://github.com/python-gitlab/python-gitlab/commit/a5b39a526035c1868a39f0533f019e5e24eeb4db))
|
10466
10545
|
|
10467
|
-
*
|
10468
|
-
|
10469
|
-
* Tests and fixes for the http_* methods ([`ff82c88`](https://github.com/python-gitlab/python-gitlab/commit/ff82c88df5794dbf0020989cfc52412cefc4c176))
|
10546
|
+
* Tests and fixes for the http_* methods ([`904c9fa`](https://github.com/python-gitlab/python-gitlab/commit/904c9fadaa892cb4a2dbd12e564841281aa86c51))
|
10470
10547
|
|
10471
|
-
* make the tests pass ([`
|
10548
|
+
* make the tests pass ([`d0a9334`](https://github.com/python-gitlab/python-gitlab/commit/d0a933404f4acec28956e1f07e9dcc3261fae87e))
|
10472
10549
|
|
10473
10550
|
* Migrate all v4 objects to new API
|
10474
10551
|
|
10475
10552
|
Some things are probably broken. Next step is writting unit and
|
10476
10553
|
functional tests.
|
10477
10554
|
|
10478
|
-
And fix. ([`
|
10555
|
+
And fix. ([`6be990c`](https://github.com/python-gitlab/python-gitlab/commit/6be990cef8725eca6954e9098f83ff8f4ad202a8))
|
10479
10556
|
|
10480
|
-
* Simplify SidekiqManager ([`
|
10557
|
+
* Simplify SidekiqManager ([`230b567`](https://github.com/python-gitlab/python-gitlab/commit/230b5679ee083dc8a5f3a8deb0bef2dab0fe12d6))
|
10481
10558
|
|
10482
|
-
* New API: handle gl.auth() and CurrentUser* classes ([`
|
10559
|
+
* New API: handle gl.auth() and CurrentUser* classes ([`7193034`](https://github.com/python-gitlab/python-gitlab/commit/71930345be5b7a1a89f7f823a563cb6cd4bd790b))
|
10483
10560
|
|
10484
10561
|
* Add support for managers in objects for new API
|
10485
10562
|
|
10486
|
-
Convert User* to the new REST* API. ([`
|
10563
|
+
Convert User* to the new REST* API. ([`5319d0d`](https://github.com/python-gitlab/python-gitlab/commit/5319d0de2fa13e6ed7c65b4d8e9dc26ccb6f18eb))
|
10487
10564
|
|
10488
|
-
* pep8 ([`
|
10565
|
+
* pep8 ([`29cb0e4`](https://github.com/python-gitlab/python-gitlab/commit/29cb0e42116ad066e6aabb39362785fd61c65924))
|
10489
10566
|
|
10490
|
-
* Move the mixins in their own module ([`
|
10567
|
+
* Move the mixins in their own module ([`0748c89`](https://github.com/python-gitlab/python-gitlab/commit/0748c8993f0afa6ca89836601a19c7aeeaaf8397))
|
10491
10568
|
|
10492
10569
|
* Rework the manager and object classes
|
10493
10570
|
|
@@ -10501,9 +10578,9 @@ Both ways (old and new) can be used together, migrate only a few v4
|
|
10501
10578
|
objects to the new method as a POC.
|
10502
10579
|
|
10503
10580
|
TODO: handle managers on generated objects (have to deal with attributes
|
10504
|
-
in the URLs). ([`
|
10581
|
+
in the URLs). ([`29e0bae`](https://github.com/python-gitlab/python-gitlab/commit/29e0baee39728472abd6b67822b04518c3985d97))
|
10505
10582
|
|
10506
|
-
* pep8 again ([`
|
10583
|
+
* pep8 again ([`b7298de`](https://github.com/python-gitlab/python-gitlab/commit/b7298dea19f37d3ae0dfb3e233f3bc7cf5bda10d))
|
10507
10584
|
|
10508
10585
|
* Add lower-level methods for Gitlab()
|
10509
10586
|
|
@@ -10515,36 +10592,30 @@ Multiple goals:
|
|
10515
10592
|
gitlab server.
|
10516
10593
|
* With this the objects gain control on how they should do requests.
|
10517
10594
|
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))
|
10595
|
+
object classes where they belong. ([`7ddbd5e`](https://github.com/python-gitlab/python-gitlab/commit/7ddbd5e5e124be1d93fbc77da7229fc80062b35f))
|
10525
10596
|
|
10526
|
-
* Tests and fixes for the http_* methods ([`
|
10597
|
+
* Tests and fixes for the http_* methods ([`ff82c88`](https://github.com/python-gitlab/python-gitlab/commit/ff82c88df5794dbf0020989cfc52412cefc4c176))
|
10527
10598
|
|
10528
|
-
* make the tests pass ([`
|
10599
|
+
* make the tests pass ([`f754f21`](https://github.com/python-gitlab/python-gitlab/commit/f754f21dd9138142b923cf3b919187a4638b674a))
|
10529
10600
|
|
10530
10601
|
* Migrate all v4 objects to new API
|
10531
10602
|
|
10532
10603
|
Some things are probably broken. Next step is writting unit and
|
10533
10604
|
functional tests.
|
10534
10605
|
|
10535
|
-
And fix. ([`
|
10606
|
+
And fix. ([`f418767`](https://github.com/python-gitlab/python-gitlab/commit/f418767ec94c430aabd132d189d1c5e9e2370e68))
|
10536
10607
|
|
10537
|
-
* Simplify SidekiqManager ([`
|
10608
|
+
* Simplify SidekiqManager ([`0467f77`](https://github.com/python-gitlab/python-gitlab/commit/0467f779eb1d2649f3626e3817531511d3397038))
|
10538
10609
|
|
10539
|
-
* New API: handle gl.auth() and CurrentUser* classes ([`
|
10610
|
+
* New API: handle gl.auth() and CurrentUser* classes ([`a1c9e2b`](https://github.com/python-gitlab/python-gitlab/commit/a1c9e2bce1d0df0eff0468fabad4919d0565f09f))
|
10540
10611
|
|
10541
10612
|
* Add support for managers in objects for new API
|
10542
10613
|
|
10543
|
-
Convert User* to the new REST* API. ([`
|
10614
|
+
Convert User* to the new REST* API. ([`a506902`](https://github.com/python-gitlab/python-gitlab/commit/a50690288f9c03ec37ff374839d1f465c74ecf0a))
|
10544
10615
|
|
10545
|
-
* pep8 ([`
|
10616
|
+
* pep8 ([`9fbdb94`](https://github.com/python-gitlab/python-gitlab/commit/9fbdb9461a660181a3a268cd398865cafd0b4a89))
|
10546
10617
|
|
10547
|
-
* Move the mixins in their own module ([`
|
10618
|
+
* Move the mixins in their own module ([`fb5782e`](https://github.com/python-gitlab/python-gitlab/commit/fb5782e691a11aad35e57f55af139ec4b951a225))
|
10548
10619
|
|
10549
10620
|
* Rework the manager and object classes
|
10550
10621
|
|
@@ -10558,9 +10629,9 @@ Both ways (old and new) can be used together, migrate only a few v4
|
|
10558
10629
|
objects to the new method as a POC.
|
10559
10630
|
|
10560
10631
|
TODO: handle managers on generated objects (have to deal with attributes
|
10561
|
-
in the URLs). ([`
|
10632
|
+
in the URLs). ([`993d576`](https://github.com/python-gitlab/python-gitlab/commit/993d576ba794a29aacd56a7610e79a331789773d))
|
10562
10633
|
|
10563
|
-
* pep8 again ([`
|
10634
|
+
* pep8 again ([`d809fef`](https://github.com/python-gitlab/python-gitlab/commit/d809fefaf5b382f13f8f9da344320741e553ced1))
|
10564
10635
|
|
10565
10636
|
* Add lower-level methods for Gitlab()
|
10566
10637
|
|
@@ -10572,7 +10643,63 @@ Multiple goals:
|
|
10572
10643
|
gitlab server.
|
10573
10644
|
* With this the objects gain control on how they should do requests.
|
10574
10645
|
The complexities of dealing with object specifics will be moved in the
|
10575
|
-
object classes where they belong. ([`
|
10646
|
+
object classes where they belong. ([`c5ad540`](https://github.com/python-gitlab/python-gitlab/commit/c5ad54062ad767c0d2882f64381ad15c034e8872))
|
10647
|
+
|
10648
|
+
* Merge pull request #282 from velvetz7/docs_typo
|
10649
|
+
|
10650
|
+
Fixed repository_compare examples ([`e87835f`](https://github.com/python-gitlab/python-gitlab/commit/e87835fe02aeb174c1b0355a1733733d89b2e404))
|
10651
|
+
|
10652
|
+
* Changed attribution reference ([`73be8f9`](https://github.com/python-gitlab/python-gitlab/commit/73be8f9a64b8a8db39f1a9d39b7bd677e1c68b0a))
|
10653
|
+
|
10654
|
+
* fixed repository_compare examples ([`261db17`](https://github.com/python-gitlab/python-gitlab/commit/261db178f2e91b68f45a6535009367b56af75769))
|
10655
|
+
|
10656
|
+
* Fix merge_when_build_succeeds attribute name
|
10657
|
+
|
10658
|
+
Fixes #285 ([`67d9a89`](https://github.com/python-gitlab/python-gitlab/commit/67d9a8989b76af25fca1b5f0f82c4af5e81332eb))
|
10659
|
+
|
10660
|
+
* Merge pull request #286 from jonafato/python3.6
|
10661
|
+
|
10662
|
+
Declare support for Python 3.6 ([`cb8c1a1`](https://github.com/python-gitlab/python-gitlab/commit/cb8c1a198276cc6aa2a3ddbf52bcc3866418e9fd))
|
10663
|
+
|
10664
|
+
* Declare support for Python 3.6
|
10665
|
+
|
10666
|
+
Add Python 3.6 environments to `tox.ini` and `.travis.yml`. ([`4c916b8`](https://github.com/python-gitlab/python-gitlab/commit/4c916b893e84993369d06dee5523cd00ea6b626a))
|
10667
|
+
|
10668
|
+
* Merge pull request #287 from guyzmo/features/dependency_injection
|
10669
|
+
|
10670
|
+
Added dependency injection support for Session ([`46b7f48`](https://github.com/python-gitlab/python-gitlab/commit/46b7f488c3dcd6f2e975f69fe1a378b920721b87))
|
10671
|
+
|
10672
|
+
* Added dependency injection support for Session
|
10673
|
+
|
10674
|
+
fixes #280
|
10675
|
+
|
10676
|
+
Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net> ([`116e3d4`](https://github.com/python-gitlab/python-gitlab/commit/116e3d42c9e94c6d23128533da6c25920ff04d0f))
|
10677
|
+
|
10678
|
+
* Merge pull request #276 from elisarver/patch-1
|
10679
|
+
|
10680
|
+
Missing expires_at in GroupMembers update ([`f19681f`](https://github.com/python-gitlab/python-gitlab/commit/f19681fc0d1aeb36f56c9c7f07aac83915a59497))
|
10681
|
+
|
10682
|
+
* Missing expires_at in GroupMembers update
|
10683
|
+
|
10684
|
+
CreateAttrs was set twice in GroupMember due to possible copy-paste error. ([`d41e972`](https://github.com/python-gitlab/python-gitlab/commit/d41e9728c0f583e031313419bcf998bfdfb8688a))
|
10685
|
+
|
10686
|
+
* 0.21.2 release ([`19f1b1a`](https://github.com/python-gitlab/python-gitlab/commit/19f1b1a968aba7bd9604511c015e8930e5111324))
|
10687
|
+
|
10688
|
+
* Merge pull request #272 from astronouth7303/patch-1
|
10689
|
+
|
10690
|
+
Add new event types to ProjectHook ([`4ce2794`](https://github.com/python-gitlab/python-gitlab/commit/4ce2794b284647283c861d28f77a6d63ba809bc9))
|
10691
|
+
|
10692
|
+
* Add new event types to ProjectHook
|
10693
|
+
|
10694
|
+
These are being returned in the live API, but can't set them. ([`1a58f7e`](https://github.com/python-gitlab/python-gitlab/commit/1a58f7e522bb4784e2127582b2d46d6991a8f2a9))
|
10695
|
+
|
10696
|
+
* Fixed spelling mistake (#269) ([`2b1e0f0`](https://github.com/python-gitlab/python-gitlab/commit/2b1e0f0041ae04134d38a5db47cc301aa757d7ea))
|
10697
|
+
|
10698
|
+
* import urlencode() from six.moves.urllib.parse instead of from urllib (#268)
|
10699
|
+
|
10700
|
+
Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
|
10701
|
+
|
10702
|
+
`six.moves.urllib.parse.urlencode()` is an py2.py3 compatible alias of `urllib.parse.urlencode()` on Python 3, and of `urllib.urlencode()` on Python 2. ([`88900e0`](https://github.com/python-gitlab/python-gitlab/commit/88900e06761794442716c115229bd1f780cfbcef))
|
10576
10703
|
|
10577
10704
|
* Prepare for v4 API testing ([`38bff3e`](https://github.com/python-gitlab/python-gitlab/commit/38bff3eb43ee6526b3e3b35c8207fac9ef9bc9d9))
|
10578
10705
|
|
@@ -10638,14 +10765,6 @@ Fixes #267 ([`a3b8858`](https://github.com/python-gitlab/python-gitlab/commit/a3
|
|
10638
10765
|
|
10639
10766
|
* [v4] Remove deprecated objects methods and classes ([`8e4b65f`](https://github.com/python-gitlab/python-gitlab/commit/8e4b65fc78f47a2be658b11ae30f84da66b13c2a))
|
10640
10767
|
|
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
10768
|
* pop8 fixes ([`441244b`](https://github.com/python-gitlab/python-gitlab/commit/441244b8d91ac0674195dbb2151570712d234d15))
|
10650
10769
|
|
10651
10770
|
* [v4] Users confirm attribute renamed skip_confirmation ([`cd98903`](https://github.com/python-gitlab/python-gitlab/commit/cd98903d6c1a2cbf21d533d6d6d4ea58917930b1))
|
@@ -10725,6 +10844,14 @@ some code duplication, but it should be maintainable. ([`e853a30`](https://githu
|
|
10725
10844
|
|
10726
10845
|
* Initial, non-functional v4 support ([`c02dabd`](https://github.com/python-gitlab/python-gitlab/commit/c02dabd25507a14d666e85c7f1ea7831c64d0394))
|
10727
10846
|
|
10847
|
+
* Deprecate parameter related methods in gitlab.Gitlab
|
10848
|
+
|
10849
|
+
These methods change the auth information and URL, and might have some
|
10850
|
+
unwanted side effects.
|
10851
|
+
|
10852
|
+
Users should create a new Gitlab instance to change the URL and
|
10853
|
+
authentication information. ([`7ac1e4c`](https://github.com/python-gitlab/python-gitlab/commit/7ac1e4c1fe4ccff8c8ee4a9ae212a227d5499bce))
|
10854
|
+
|
10728
10855
|
* Add 'search' attribute to projects.list()
|
10729
10856
|
|
10730
10857
|
projects.search() has been deprecated by Gitlab ([`ce3dd0d`](https://github.com/python-gitlab/python-gitlab/commit/ce3dd0d1ac3fbed3cf671720e273470fb1ccdbc6))
|
@@ -10781,6 +10908,10 @@ Add time_stats to ProjectMergeRequest ([`f05a24b`](https://github.com/python-git
|
|
10781
10908
|
|
10782
10909
|
Make GroupProject inherit from Project ([`20d6678`](https://github.com/python-gitlab/python-gitlab/commit/20d667840ab7097260d453e9a79b7377f216bc1c))
|
10783
10910
|
|
10911
|
+
* Make GroupProject inherit from Project
|
10912
|
+
|
10913
|
+
Fixes #209 ([`380bcc4`](https://github.com/python-gitlab/python-gitlab/commit/380bcc4cce66d7b2c080f258a1acb0d14a5a1fc3))
|
10914
|
+
|
10784
10915
|
* Stop listing if recursion limit is hit (#234) ([`989f3b7`](https://github.com/python-gitlab/python-gitlab/commit/989f3b706d97045f4ea6af69fd11233e2f54adbf))
|
10785
10916
|
|
10786
10917
|
* Provide API wrapper for cherry picking commits (#236) ([`22bf128`](https://github.com/python-gitlab/python-gitlab/commit/22bf12827387cb1719bacae6c0c745cd768eee6c))
|
@@ -10793,10 +10924,6 @@ Change to correct logic of functions ([`cc4fe78`](https://github.com/python-gitl
|
|
10793
10924
|
|
10794
10925
|
* Change to correct logic of functions ([`889bbe5`](https://github.com/python-gitlab/python-gitlab/commit/889bbe57d07966f1f146245db1e62accd5b23d93))
|
10795
10926
|
|
10796
|
-
* Make GroupProject inherit from Project
|
10797
|
-
|
10798
|
-
Fixes #209 ([`380bcc4`](https://github.com/python-gitlab/python-gitlab/commit/380bcc4cce66d7b2c080f258a1acb0d14a5a1fc3))
|
10799
|
-
|
10800
10927
|
* Implement pipeline creation API (#237) ([`8c27e70`](https://github.com/python-gitlab/python-gitlab/commit/8c27e70b821e02921dfec4f8e4c6b77b5b284009))
|
10801
10928
|
|
10802
10929
|
* Properly handle extra args when listing with all=True
|
@@ -10858,6 +10985,8 @@ This fixes the tests. ([`41ca449`](https://github.com/python-gitlab/python-gitla
|
|
10858
10985
|
|
10859
10986
|
added due_date attribute to ProjectIssue ([`1e0ae59`](https://github.com/python-gitlab/python-gitlab/commit/1e0ae591616b297739bb5f35db6697eee88909a3))
|
10860
10987
|
|
10988
|
+
* fixes gpocentek/python-gitlab#215 ([`58708b1`](https://github.com/python-gitlab/python-gitlab/commit/58708b186e71289427cbce8decfeab28fdf66ad6))
|
10989
|
+
|
10861
10990
|
* Merge pull request #220 from alexwidener/master
|
10862
10991
|
|
10863
10992
|
Added pipeline_events to ProjectHook attrs ([`19c7784`](https://github.com/python-gitlab/python-gitlab/commit/19c77845a2d69bed180f175f3a98761655631d0f))
|
@@ -10866,8 +10995,6 @@ Added pipeline_events to ProjectHook attrs ([`19c7784`](https://github.com/pytho
|
|
10866
10995
|
|
10867
10996
|
Ran tests, all passed. ([`3f98e03`](https://github.com/python-gitlab/python-gitlab/commit/3f98e0345c451a8ecb7d46d727acf7725ce73d80))
|
10868
10997
|
|
10869
|
-
* fixes gpocentek/python-gitlab#215 ([`58708b1`](https://github.com/python-gitlab/python-gitlab/commit/58708b186e71289427cbce8decfeab28fdf66ad6))
|
10870
|
-
|
10871
10998
|
* document the dynamic aspect of objects ([`2f274bc`](https://github.com/python-gitlab/python-gitlab/commit/2f274bcd0bfb9fef2a2682445843b7804980ecf6))
|
10872
10999
|
|
10873
11000
|
* Deploy keys: rework enable/disable
|
@@ -10953,6 +11080,12 @@ Rename the method to make what it does more explicit. ([`7453895`](https://githu
|
|
10953
11080
|
|
10954
11081
|
* Merge branch 'features/personal_snippets' of https://github.com/guyzmo/python-gitlab into guyzmo-features/personal_snippets ([`26c8a0f`](https://github.com/python-gitlab/python-gitlab/commit/26c8a0f25707dafdf772d1e7ed455ee065b7e277))
|
10955
11082
|
|
11083
|
+
* Added support for Snippets (new API in Gitlab 8.15)
|
11084
|
+
|
11085
|
+
cf [Gitlab-CE MR !6373](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6373)
|
11086
|
+
|
11087
|
+
Signed-off-by: Guyzmo <guyzmo+github@m0g.net> ([`6022dfe`](https://github.com/python-gitlab/python-gitlab/commit/6022dfec44c67f7f45b0c3274f5eef02e8ac93f0))
|
11088
|
+
|
10956
11089
|
* [CLI] Fix wrong use of arguments
|
10957
11090
|
|
10958
11091
|
The previous change removed undefined arguments from the args dict,
|
@@ -10975,12 +11108,6 @@ First page is page 1.
|
|
10975
11108
|
|
10976
11109
|
Fixes #197 ([`d86ca59`](https://github.com/python-gitlab/python-gitlab/commit/d86ca59dbe1d7f852416ec227a7d241d236424cf))
|
10977
11110
|
|
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
11111
|
* Merge pull request #192 from galet/gitlab-8.14-jira
|
10985
11112
|
|
10986
11113
|
Fix JIRA service editing for GitLab 8.14+ ([`15d3362`](https://github.com/python-gitlab/python-gitlab/commit/15d336256c0dca756e189fb9746ab60be2d3c886))
|
@@ -10999,13 +11126,13 @@ moved to optional section. ([`343c131`](https://github.com/python-gitlab/python-
|
|
10999
11126
|
|
11000
11127
|
Fix `should_remove_source_branch` ([`39288c8`](https://github.com/python-gitlab/python-gitlab/commit/39288c8fca774112ef1445c1281001a6190dd080))
|
11001
11128
|
|
11129
|
+
* Fix `should_remove_source_branch` ([`ac2bf24`](https://github.com/python-gitlab/python-gitlab/commit/ac2bf240510f26c477ea02eddb0425f2afb64fcc))
|
11130
|
+
|
11002
11131
|
* Rework requests arguments
|
11003
11132
|
|
11004
11133
|
* Factorize the code
|
11005
11134
|
* Don't send empty auth information to requests (Fixes #188) ([`6e5734b`](https://github.com/python-gitlab/python-gitlab/commit/6e5734bd910ef2d04122c162bac44c8843793312))
|
11006
11135
|
|
11007
|
-
* Fix `should_remove_source_branch` ([`ac2bf24`](https://github.com/python-gitlab/python-gitlab/commit/ac2bf240510f26c477ea02eddb0425f2afb64fcc))
|
11008
|
-
|
11009
11136
|
* Add support for triggering a new build
|
11010
11137
|
|
11011
11138
|
Fixes #184 ([`de05dae`](https://github.com/python-gitlab/python-gitlab/commit/de05daea0aa30e73c3a6f073bd173f23489c8339))
|
@@ -11024,12 +11151,12 @@ Please add these missing attrs ([`840cb89`](https://github.com/python-gitlab/pyt
|
|
11024
11151
|
|
11025
11152
|
Add attr 'updated_at' to ProjectIssue ([`f290b2b`](https://github.com/python-gitlab/python-gitlab/commit/f290b2b6e413604bc1b966266ab87f301cd0e32b))
|
11026
11153
|
|
11154
|
+
* Add attr 'updated_at' to ProjectIssue ([`a25fef5`](https://github.com/python-gitlab/python-gitlab/commit/a25fef5076286543a522b907c51f2c9060262867))
|
11155
|
+
|
11027
11156
|
* Merge pull request #1 from GregoryEAllen/GregoryEAllen-patch-1
|
11028
11157
|
|
11029
11158
|
Add attr 'created_at' to ProjectIssueNote ([`14e7ccd`](https://github.com/python-gitlab/python-gitlab/commit/14e7ccd10f04b2aa5b986580bca52f9361af4858))
|
11030
11159
|
|
11031
|
-
* Add attr 'updated_at' to ProjectIssue ([`a25fef5`](https://github.com/python-gitlab/python-gitlab/commit/a25fef5076286543a522b907c51f2c9060262867))
|
11032
|
-
|
11033
11160
|
* Add attr 'created_at' to ProjectIssueNote ([`5b24122`](https://github.com/python-gitlab/python-gitlab/commit/5b2412217481b6ddf654277e0748585135a4fe64))
|
11034
11161
|
|
11035
11162
|
* Add support for templates API
|
@@ -11091,12 +11218,6 @@ available on the object itself, not the manager. ([`c17ecc0`](https://github.com
|
|
11091
11218
|
|
11092
11219
|
* Merge branch 'master-project-deploy-keys' of https://github.com/Asher256/python-gitlab into Asher256-master-project-deploy-keys ([`0c1817f`](https://github.com/python-gitlab/python-gitlab/commit/0c1817f8be113a949218332a61655a1a835248c5))
|
11093
11220
|
|
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
11221
|
* Project deploy key response code = 201 ([`6bedfc3`](https://github.com/python-gitlab/python-gitlab/commit/6bedfc32e1f35e21ab3f1c6f0a2cf5c66b06a95e))
|
11101
11222
|
|
11102
11223
|
* Fixing the response and project_id argument ([`72d982b`](https://github.com/python-gitlab/python-gitlab/commit/72d982b70b00f4018de3c1cac3bbf1507283aa33))
|
@@ -11111,6 +11232,12 @@ Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f
|
|
11111
11232
|
|
11112
11233
|
* Feature: enable / disable the deploy key in a project ([`6310d71`](https://github.com/python-gitlab/python-gitlab/commit/6310d71c53558a201600bd48a174147623c99462))
|
11113
11234
|
|
11235
|
+
* add missing files in MANIFEST.in ([`12fca84`](https://github.com/python-gitlab/python-gitlab/commit/12fca8409156b910cab0240bf77726a0b0bca1e0))
|
11236
|
+
|
11237
|
+
* ProjectHook: support the token attribute
|
11238
|
+
|
11239
|
+
Fix #170 ([`cd5f849`](https://github.com/python-gitlab/python-gitlab/commit/cd5f84967444cc07cf9e7bdfd63324ad4890b370))
|
11240
|
+
|
11114
11241
|
* Merge pull request #178 from cgumpert/master
|
11115
11242
|
|
11116
11243
|
fix bug when retrieving changes for merge request ([`4689e73`](https://github.com/python-gitlab/python-gitlab/commit/4689e73b051fa985168cb648f49ee2dd6b6df523))
|
@@ -11214,10 +11341,6 @@ Fixes #156 ([`d09eaa0`](https://github.com/python-gitlab/python-gitlab/commit/d0
|
|
11214
11341
|
|
11215
11342
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`6f7e499`](https://github.com/python-gitlab/python-gitlab/commit/6f7e499a93b8e80181cb8c91a5b1d63ec76f1ba0))
|
11216
11343
|
|
11217
|
-
* Add support for --all in CLI
|
11218
|
-
|
11219
|
-
Fixes #153 ([`5860421`](https://github.com/python-gitlab/python-gitlab/commit/58604213efbe4d275be8da6615ed77d6f3510cbe))
|
11220
|
-
|
11221
11344
|
* Merge pull request #155 from rafaeleyng/add-only_allow_merge_if_build_succeeds
|
11222
11345
|
|
11223
11346
|
add only_allow_merge_if_build_succeeds option to project objects ([`26d97a7`](https://github.com/python-gitlab/python-gitlab/commit/26d97a736022c7f6828529920d2dbc88ecada18c))
|
@@ -11226,6 +11349,10 @@ add only_allow_merge_if_build_succeeds option to project objects ([`26d97a7`](ht
|
|
11226
11349
|
|
11227
11350
|
* add only_allow_merge_if_build_succeeds option to project objects ([`94932a0`](https://github.com/python-gitlab/python-gitlab/commit/94932a038bc6a862ecaaa1da87141b832b10ceda))
|
11228
11351
|
|
11352
|
+
* Add support for --all in CLI
|
11353
|
+
|
11354
|
+
Fixes #153 ([`5860421`](https://github.com/python-gitlab/python-gitlab/commit/58604213efbe4d275be8da6615ed77d6f3510cbe))
|
11355
|
+
|
11229
11356
|
* Merge pull request #154 from derek-austin/patch-1
|
11230
11357
|
|
11231
11358
|
Create a project in a group ([`4390afb`](https://github.com/python-gitlab/python-gitlab/commit/4390afbff39deb5a33b857342dae6ee494684ce7))
|
@@ -11371,12 +11498,12 @@ Fixes #132 ([`922041d`](https://github.com/python-gitlab/python-gitlab/commit/92
|
|
11371
11498
|
|
11372
11499
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`e3ac32f`](https://github.com/python-gitlab/python-gitlab/commit/e3ac32f76a54e06c9c465c5acd41398988154fe9))
|
11373
11500
|
|
11374
|
-
* add a contributing section in README ([`e6ffd69`](https://github.com/python-gitlab/python-gitlab/commit/e6ffd69bc745ce1a5b857fc248a3bef793e30138))
|
11375
|
-
|
11376
11501
|
* doc: replace incorrect archive call() ([`e1f5e15`](https://github.com/python-gitlab/python-gitlab/commit/e1f5e1560e53019d45b113a71916ad9a7695afeb))
|
11377
11502
|
|
11378
11503
|
* document namespaces API ([`1f52cd2`](https://github.com/python-gitlab/python-gitlab/commit/1f52cd2df35dab33dbf7429c8d514443278b549a))
|
11379
11504
|
|
11505
|
+
* add a contributing section in README ([`e6ffd69`](https://github.com/python-gitlab/python-gitlab/commit/e6ffd69bc745ce1a5b857fc248a3bef793e30138))
|
11506
|
+
|
11380
11507
|
* Merge pull request #131 from chrwen-omicron/enable_container_registry
|
11381
11508
|
|
11382
11509
|
Added a new project attribute to enable the container registry. ([`e0f2290`](https://github.com/python-gitlab/python-gitlab/commit/e0f2290fdbbb8d2ee4c9fcb9e531b04bb69232fa))
|
@@ -11487,12 +11614,16 @@ add `note_events` to project hooks attributes ([`c88c638`](https://github.com/py
|
|
11487
11614
|
|
11488
11615
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`2e0ac3f`](https://github.com/python-gitlab/python-gitlab/commit/2e0ac3fa4a66a63921b2aeee81dcc942a0849985))
|
11489
11616
|
|
11490
|
-
* issues: add optional listing parameters ([`c85276a`](https://github.com/python-gitlab/python-gitlab/commit/c85276a6e6c5088ea6f2ecb13059488c9779ea2c))
|
11491
|
-
|
11492
11617
|
* Merge pull request #125 from gpocentek/issue-122
|
11493
11618
|
|
11494
11619
|
Add support for build artifacts and trace ([`80a1908`](https://github.com/python-gitlab/python-gitlab/commit/80a190888028db4eb1df0c4f827938e89b20f8a1))
|
11495
11620
|
|
11621
|
+
* Add support for build artifacts and trace
|
11622
|
+
|
11623
|
+
Fixes #122 ([`b3e0974`](https://github.com/python-gitlab/python-gitlab/commit/b3e0974451b49ab64866dc131bff59e5471ea620))
|
11624
|
+
|
11625
|
+
* issues: add optional listing parameters ([`c85276a`](https://github.com/python-gitlab/python-gitlab/commit/c85276a6e6c5088ea6f2ecb13059488c9779ea2c))
|
11626
|
+
|
11496
11627
|
* Add support for commit comments
|
11497
11628
|
|
11498
11629
|
https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/commits.md ([`412e2bc`](https://github.com/python-gitlab/python-gitlab/commit/412e2bc7e00a5229974388f795caefa1f0896273))
|
@@ -11511,19 +11642,19 @@ https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/commits.md ([`412e2bc`]
|
|
11511
11642
|
|
11512
11643
|
* move into own class & create manager class ([`eb6c26f`](https://github.com/python-gitlab/python-gitlab/commit/eb6c26f51131fa171c71c19c28448e736f2f5243))
|
11513
11644
|
|
11645
|
+
* update docblock ([`cd13aff`](https://github.com/python-gitlab/python-gitlab/commit/cd13aff8a0df9136ba3e289fbccd85de3f159bb5))
|
11646
|
+
|
11647
|
+
* list projects under group ([`d4e2cd6`](https://github.com/python-gitlab/python-gitlab/commit/d4e2cd6c618d137df645c182271f67c5ae7e8ff5))
|
11648
|
+
|
11514
11649
|
* Merge pull request #124 from Condla/master
|
11515
11650
|
|
11516
11651
|
Fix: --title is required argument, when in reality optional ([`18de4ef`](https://github.com/python-gitlab/python-gitlab/commit/18de4ef22f5f801dd721d76d0721c5b4cd459c37))
|
11517
11652
|
|
11518
11653
|
* Fix --title is not a required argument anymore ([`899490b`](https://github.com/python-gitlab/python-gitlab/commit/899490b04055029196eff9e03b496131e2238e61))
|
11519
11654
|
|
11520
|
-
* Fix --title is not a required argument anymore ([`c24f0d9`](https://github.com/python-gitlab/python-gitlab/commit/c24f0d9a3664c025e3284e056d5b4c007dcf5435))
|
11521
|
-
|
11522
11655
|
* Fix that --title is a required argument, when trying to update a ProjectMilestone ([`bea8ea9`](https://github.com/python-gitlab/python-gitlab/commit/bea8ea9d0fa921cc5c4fdd1b948420f1f780770c))
|
11523
11656
|
|
11524
|
-
*
|
11525
|
-
|
11526
|
-
Fixes #122 ([`b3e0974`](https://github.com/python-gitlab/python-gitlab/commit/b3e0974451b49ab64866dc131bff59e5471ea620))
|
11657
|
+
* Fix --title is not a required argument anymore ([`c24f0d9`](https://github.com/python-gitlab/python-gitlab/commit/c24f0d9a3664c025e3284e056d5b4c007dcf5435))
|
11527
11658
|
|
11528
11659
|
* Merge pull request #121 from PeterMosmans/httpauthextended
|
11529
11660
|
|
@@ -11547,18 +11678,25 @@ Added support for HTTP basic authentication ([`11f1e2d`](https://github.com/pyth
|
|
11547
11678
|
|
11548
11679
|
Add support for subscribe and unsubscribe in issues ([`7bbbfbd`](https://github.com/python-gitlab/python-gitlab/commit/7bbbfbdc534a4d26aa61b1b4287911c9f7c6f8a5))
|
11549
11680
|
|
11550
|
-
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`b8f19ca`](https://github.com/python-gitlab/python-gitlab/commit/b8f19ca9f64b737296782e74816f4b0b88a05d2f))
|
11551
|
-
|
11552
11681
|
* Add support for subscribe and unsubscribe in issues ([`d42687d`](https://github.com/python-gitlab/python-gitlab/commit/d42687db9f0c58ea8a08532fbf6c524b0cc5ed17))
|
11553
11682
|
|
11554
|
-
*
|
11555
|
-
|
11556
|
-
* update changelog and authors ([`57936af`](https://github.com/python-gitlab/python-gitlab/commit/57936af70758f35ea28ad060c4ead2d916a3b47e))
|
11683
|
+
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`b8f19ca`](https://github.com/python-gitlab/python-gitlab/commit/b8f19ca9f64b737296782e74816f4b0b88a05d2f))
|
11557
11684
|
|
11558
11685
|
* Merge pull request #110 from chrwen-omicron/remove_next_url_from_cls_kwargs
|
11559
11686
|
|
11560
11687
|
Remove 'next_url' from kwargs before passing it to the cls constructor. ([`05dd8dc`](https://github.com/python-gitlab/python-gitlab/commit/05dd8dc353fb5ebcb04cad72db19a8e08e0f7c56))
|
11561
11688
|
|
11689
|
+
* Remove 'next_url' from kwargs before passing it to the cls constructor.
|
11690
|
+
|
11691
|
+
The 'next_url' argument causes problems in the _construct_url method if it
|
11692
|
+
doesn't belong there. E.g. if you list all projects, change an attribute
|
11693
|
+
of a project and then try to save it, the _construct_url will use the
|
11694
|
+
'next_url' from the list method and the save will fail. ([`c261875`](https://github.com/python-gitlab/python-gitlab/commit/c261875cf167e6858d052dc983fb0dcb03e3ea40))
|
11695
|
+
|
11696
|
+
* version bump ([`0535808`](https://github.com/python-gitlab/python-gitlab/commit/0535808d5a82ffbcd5a7ea23ecc4d0c22dad34a1))
|
11697
|
+
|
11698
|
+
* update changelog and authors ([`57936af`](https://github.com/python-gitlab/python-gitlab/commit/57936af70758f35ea28ad060c4ead2d916a3b47e))
|
11699
|
+
|
11562
11700
|
* Manage optional parameters for list() and get()
|
11563
11701
|
|
11564
11702
|
* List these elements in the API doc
|
@@ -11570,14 +11708,20 @@ Remove 'next_url' from kwargs before passing it to the cls constructor.
|
|
11570
11708
|
|
11571
11709
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`ee1620b`](https://github.com/python-gitlab/python-gitlab/commit/ee1620bcfe0533b70c9ceebb34968d3633e2613c))
|
11572
11710
|
|
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
11711
|
* Merge pull request #113 from adamreid/master
|
11578
11712
|
|
11579
11713
|
Enable updates on ProjectIssueNotes ([`f5c75cb`](https://github.com/python-gitlab/python-gitlab/commit/f5c75cbf05ded3a326db6050c11dbdf67b5eca99))
|
11580
11714
|
|
11715
|
+
* Merge branch 'master' of https://github.com/gpocentek/python-gitlab ([`8edd7f7`](https://github.com/python-gitlab/python-gitlab/commit/8edd7f79050559062ac119797329d0a8dba57a06))
|
11716
|
+
|
11717
|
+
* Remove unnecessary canUpdate property from ProjectIssuesNote ([`111b7d9`](https://github.com/python-gitlab/python-gitlab/commit/111b7d9a4ee60176714b950d7ed9da86c6051feb))
|
11718
|
+
|
11719
|
+
* Enable updates on ProjectIssueNotes ([`5fe7e27`](https://github.com/python-gitlab/python-gitlab/commit/5fe7e27bb16a06271f87bf19473b8604df92b4f7))
|
11720
|
+
|
11721
|
+
* implement star/unstar for projects ([`1de6b7e`](https://github.com/python-gitlab/python-gitlab/commit/1de6b7e7641f2c0cb101a82385cee569aa786e3f))
|
11722
|
+
|
11723
|
+
* Deprecate Project.archive() ([`24c283f`](https://github.com/python-gitlab/python-gitlab/commit/24c283f5861f21e51489afc815bd9f31bff58bee))
|
11724
|
+
|
11581
11725
|
* Rename some methods to better match the API URLs
|
11582
11726
|
|
11583
11727
|
Also deprecate the file_* methods in favor of the files manager. ([`45adb6e`](https://github.com/python-gitlab/python-gitlab/commit/45adb6e4dbe7667376639d68078754d6d72cb55c))
|
@@ -11606,10 +11750,6 @@ Fixes #96 ([`d204e66`](https://github.com/python-gitlab/python-gitlab/commit/d20
|
|
11606
11750
|
|
11607
11751
|
Fixes #116 ([`f12c732`](https://github.com/python-gitlab/python-gitlab/commit/f12c732f5e0dff7db1048adf50f54bfdd63ca6fc))
|
11608
11752
|
|
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
11753
|
* Drop the next_url attribute when listing
|
11614
11754
|
|
11615
11755
|
Fixes #106 ([`64af398`](https://github.com/python-gitlab/python-gitlab/commit/64af39818d02af1b40644d71fd047d6bc3f6e69e))
|
@@ -11626,19 +11766,6 @@ Fixes #112 ([`250f348`](https://github.com/python-gitlab/python-gitlab/commit/25
|
|
11626
11766
|
|
11627
11767
|
Adding a Session instance for all HTTP requests ([`23e8146`](https://github.com/python-gitlab/python-gitlab/commit/23e8146a391e4269e9b3d57a553148963d412179))
|
11628
11768
|
|
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
11769
|
* Adding a Session instance for all HTTP requests
|
11643
11770
|
|
11644
11771
|
The session instance will make it easier for setting up once headers, including
|
@@ -11680,8 +11807,6 @@ fixes #105 ([`43e8a2a`](https://github.com/python-gitlab/python-gitlab/commit/43
|
|
11680
11807
|
|
11681
11808
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`e46c188`](https://github.com/python-gitlab/python-gitlab/commit/e46c18898deb8579d4fee0e76bfc17abed12c512))
|
11682
11809
|
|
11683
|
-
* pep8 ignore H803 errors (git messages) ([`86ade4a`](https://github.com/python-gitlab/python-gitlab/commit/86ade4ac78fd14cc8f12be39c74ff60688a2fcf7))
|
11684
|
-
|
11685
11810
|
* Merge pull request #98 from Asher256/fix-unicode-syntax-py3
|
11686
11811
|
|
11687
11812
|
Fix the 'invalid syntax' on Python 3.2, because of u'password' ([`aea678b`](https://github.com/python-gitlab/python-gitlab/commit/aea678b9398f87b6943f005ff207755aa8a982a4))
|
@@ -11712,6 +11837,8 @@ It is a recent change:
|
|
11712
11837
|
|
11713
11838
|
To solve the issue, 'u' was removed. ([`7ed84a7`](https://github.com/python-gitlab/python-gitlab/commit/7ed84a7b4ca73d1b0cc6be7db0c43958ff9f4c47))
|
11714
11839
|
|
11840
|
+
* pep8 ignore H803 errors (git messages) ([`86ade4a`](https://github.com/python-gitlab/python-gitlab/commit/86ade4ac78fd14cc8f12be39c74ff60688a2fcf7))
|
11841
|
+
|
11715
11842
|
* Re-implement _custom_list in the Gitlab class
|
11716
11843
|
|
11717
11844
|
Rename the method _raw_list. This adds support for the ``all=True``
|
@@ -11749,6 +11876,18 @@ get_by_username(). ([`b79af1d`](https://github.com/python-gitlab/python-gitlab/c
|
|
11749
11876
|
|
11750
11877
|
Adding new `ProjectHook` attributes: ([`81be3cf`](https://github.com/python-gitlab/python-gitlab/commit/81be3cf181f5e49ef20c2824eb8c48785f4ab922))
|
11751
11878
|
|
11879
|
+
* Added missing comma ([`1f81c2d`](https://github.com/python-gitlab/python-gitlab/commit/1f81c2d7a93cc7c719bf8bda627020946aa975d3))
|
11880
|
+
|
11881
|
+
* Adding new `ProjectHook` attributes:
|
11882
|
+
|
11883
|
+
* `build_events`
|
11884
|
+
* `enable_ssl_verification`
|
11885
|
+
|
11886
|
+
See the two links below:
|
11887
|
+
|
11888
|
+
* https://github.com/gitlabhq/gitlabhq/blob/master/doc/api/projects.md#add-project-hook
|
11889
|
+
* https://github.com/pyapi-gitlab/pyapi-gitlab/pull/173 ([`db9bbf6`](https://github.com/python-gitlab/python-gitlab/commit/db9bbf6528e792976e80f870b2013199569a0021))
|
11890
|
+
|
11752
11891
|
* Add a coverage tox env ([`2e1f84e`](https://github.com/python-gitlab/python-gitlab/commit/2e1f84ede56b73c5b6857515d24d061a60b509fb))
|
11753
11892
|
|
11754
11893
|
* Add some unit tests for CLI
|
@@ -11767,18 +11906,6 @@ fix GitlabObject creation in _custom_list ([`f5ca0eb`](https://github.com/python
|
|
11767
11906
|
|
11768
11907
|
* Add support for user block/unblock ([`e387de5`](https://github.com/python-gitlab/python-gitlab/commit/e387de528ad21766747b91bb7e1cd91f6e4642b5))
|
11769
11908
|
|
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
11909
|
* bump version to cleanup my mess on pypi ([`942468d`](https://github.com/python-gitlab/python-gitlab/commit/942468d344eac2a70f73ed69a43c27a87baf78db))
|
11783
11910
|
|
11784
11911
|
* Update ChangeLog and AUTHORS ([`74d82d4`](https://github.com/python-gitlab/python-gitlab/commit/74d82d4109e65d541707638fc9d3efc110c6ef32))
|
@@ -11815,10 +11942,6 @@ is very abrupt.) ([`c56fc47`](https://github.com/python-gitlab/python-gitlab/com
|
|
11815
11942
|
|
11816
11943
|
* fix usage error message ([`bc7332f`](https://github.com/python-gitlab/python-gitlab/commit/bc7332f3462295320bf76e056a5ab6206ffa4d6b))
|
11817
11944
|
|
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
11945
|
* improve error handling
|
11823
11946
|
|
11824
11947
|
Break up pipelines and check the exit status of non-basic commands to
|
@@ -11869,15 +11992,19 @@ it easy to prefix all log messages if desired. ([`867fe2f`](https://github.com/p
|
|
11869
11992
|
Note that build_test_env.sh now creates and prepares the Python
|
11870
11993
|
virtualenv (it didn't before). ([`26999bf`](https://github.com/python-gitlab/python-gitlab/commit/26999bf0132eeac7e5b78094c54e6436964007ef))
|
11871
11994
|
|
11995
|
+
* wrap long lines
|
11996
|
+
|
11997
|
+
Use line continuations to keep lines shorter than 80 columns. ([`6df844a`](https://github.com/python-gitlab/python-gitlab/commit/6df844a49c2631fd38940db4679ab1cba760e4ab))
|
11998
|
+
|
11999
|
+
* Add docstrings to some methods ([`1b5c8f1`](https://github.com/python-gitlab/python-gitlab/commit/1b5c8f1b0bf9766ea09ef864b9bf4c1dc313f168))
|
12000
|
+
|
12001
|
+
* Fix the RTD requirements ([`2e5476e`](https://github.com/python-gitlab/python-gitlab/commit/2e5476e5cb465680b2e48308d92109c408b9f1ef))
|
12002
|
+
|
11872
12003
|
* Automatic doc generation for BaseManager classes
|
11873
12004
|
|
11874
12005
|
Provide a sphinx extension that parses the required/optioanl attributes
|
11875
12006
|
and add infoo to the class docstring. ([`a2eca72`](https://github.com/python-gitlab/python-gitlab/commit/a2eca72246ab40a0d96f6389c99e3a0b54e9342e))
|
11876
12007
|
|
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
12008
|
* travis lacks py35 support without tricks ([`770dd4b`](https://github.com/python-gitlab/python-gitlab/commit/770dd4b3fee1fe9f4e40a144777afb6030992149))
|
11882
12009
|
|
11883
12010
|
* add python 3.5 test env ([`920d248`](https://github.com/python-gitlab/python-gitlab/commit/920d24823c3d7381097e1f30e34c3be8cec45627))
|
@@ -11951,8 +12078,6 @@ Also add unit tests and fix pep8 test ([`d7271b1`](https://github.com/python-git
|
|
11951
12078
|
|
11952
12079
|
* Merge branch 'fix-json' of https://github.com/rhansen/python-gitlab into rhansen-fix-json ([`26d73e2`](https://github.com/python-gitlab/python-gitlab/commit/26d73e2828db89f9464c291de7607b7e78c58ca4))
|
11953
12080
|
|
11954
|
-
* use a custom docker image for tests ([`3f38689`](https://github.com/python-gitlab/python-gitlab/commit/3f386891ecf15ac4f0da34bdda59cf8e8d2f6ff0))
|
11955
|
-
|
11956
12081
|
* skip BaseManager attributes when encoding to JSON
|
11957
12082
|
|
11958
12083
|
This fixes the following exception when calling User.json():
|
@@ -11964,6 +12089,8 @@ This fixes the following exception when calling User.json():
|
|
11964
12089
|
Add the import inside the function rather than at the top of the file
|
11965
12090
|
because otherwise it would introduce a circular dependency. ([`c95b3c3`](https://github.com/python-gitlab/python-gitlab/commit/c95b3c3b54c412cd5cc77c4d58816139363fb2d1))
|
11966
12091
|
|
12092
|
+
* use a custom docker image for tests ([`3f38689`](https://github.com/python-gitlab/python-gitlab/commit/3f386891ecf15ac4f0da34bdda59cf8e8d2f6ff0))
|
12093
|
+
|
11967
12094
|
* Add an initial set of API tests ([`7e4e1a3`](https://github.com/python-gitlab/python-gitlab/commit/7e4e1a32ec2481453475a5da5186d187e704cf19))
|
11968
12095
|
|
11969
12096
|
* include the docs in the tarball ([`bbcccaa`](https://github.com/python-gitlab/python-gitlab/commit/bbcccaa5407fa9d281f8b1268a653b6dff29d050))
|
@@ -12064,12 +12191,12 @@ Unit tests have been added. ([`689ecae`](https://github.com/python-gitlab/python
|
|
12064
12191
|
|
12065
12192
|
* Merge branch 'add_fork_support' of https://github.com/fgouteroux/python-gitlab into fgouteroux-add_fork_support ([`77d34b3`](https://github.com/python-gitlab/python-gitlab/commit/77d34b353a1dfb1892de316a58b461c26eead66b))
|
12066
12193
|
|
12194
|
+
* add fork project support ([`cedf080`](https://github.com/python-gitlab/python-gitlab/commit/cedf080ff8553b6ef5cd7995f5ab3608aaeb3793))
|
12195
|
+
|
12067
12196
|
* Deprecate the "old" Gitlab methods
|
12068
12197
|
|
12069
12198
|
Update the associated unit tests. ([`2bf9794`](https://github.com/python-gitlab/python-gitlab/commit/2bf9794c81487883c346850a79d6b7db1295fd95))
|
12070
12199
|
|
12071
|
-
* add fork project support ([`cedf080`](https://github.com/python-gitlab/python-gitlab/commit/cedf080ff8553b6ef5cd7995f5ab3608aaeb3793))
|
12072
|
-
|
12073
12200
|
* README update ([`dc0099d`](https://github.com/python-gitlab/python-gitlab/commit/dc0099d7901bd381fabadb8be77b93e7258454b3))
|
12074
12201
|
|
12075
12202
|
* Provide a getting started doc for the API ([`2237d85`](https://github.com/python-gitlab/python-gitlab/commit/2237d854f3c83f176b03392debf9785c53b0738b))
|
@@ -12141,10 +12268,6 @@ Closes #73 ([`99c4710`](https://github.com/python-gitlab/python-gitlab/commit/99
|
|
12141
12268
|
|
12142
12269
|
* Merge branch 'master' of github.com:gpocentek/python-gitlab ([`45becb9`](https://github.com/python-gitlab/python-gitlab/commit/45becb92f47c74cb6433cdb644da5e2052a337e8))
|
12143
12270
|
|
12144
|
-
* Sanitize the id used to construct URLs
|
12145
|
-
|
12146
|
-
Closes #28 ([`5d88f68`](https://github.com/python-gitlab/python-gitlab/commit/5d88f68ddadddf98c42940a713817487058f8c17))
|
12147
|
-
|
12148
12271
|
* Merge pull request #78 from cdbennett/fix_python3_sort_types
|
12149
12272
|
|
12150
12273
|
Use name as sort key to fix Python 3 TypeError ([`6f1fd7e`](https://github.com/python-gitlab/python-gitlab/commit/6f1fd7ea8d203b771e32393b5270a6af490b37a8))
|
@@ -12158,6 +12281,10 @@ The call to sort() on cli.py line 259 produced the error:
|
|
12158
12281
|
|
12159
12282
|
TypeError: unorderable types: type() < type() ([`363b75e`](https://github.com/python-gitlab/python-gitlab/commit/363b75e73c2b66ab625811accdb9d639fb068675))
|
12160
12283
|
|
12284
|
+
* Sanitize the id used to construct URLs
|
12285
|
+
|
12286
|
+
Closes #28 ([`5d88f68`](https://github.com/python-gitlab/python-gitlab/commit/5d88f68ddadddf98c42940a713817487058f8c17))
|
12287
|
+
|
12161
12288
|
* try to fix the RTD build ([`acc1511`](https://github.com/python-gitlab/python-gitlab/commit/acc151190e32ddaf9198a10c5b816af2d36c0f19))
|
12162
12289
|
|
12163
12290
|
* Merge pull request #72 from pa4373/newuser-confirm-fix
|
@@ -12197,6 +12324,12 @@ just like the CLI does. ([`fef8c7f`](https://github.com/python-gitlab/python-git
|
|
12197
12324
|
|
12198
12325
|
python-gitlab Issue #63 - implement pagination for list() ([`24d5035`](https://github.com/python-gitlab/python-gitlab/commit/24d5035558dec227d2a497d7bf5be3bbaafc0c00))
|
12199
12326
|
|
12327
|
+
* issue #63 add unit tests for 'next' link handling in list() ([`719526d`](https://github.com/python-gitlab/python-gitlab/commit/719526dc8b0fb7d577f0a5ffa80d8f0ca31a95c6))
|
12328
|
+
|
12329
|
+
* issue #63 - revert logging additions ([`f9654cd`](https://github.com/python-gitlab/python-gitlab/commit/f9654cd1c0dca5b75a2ae78634b06feea7cc3b62))
|
12330
|
+
|
12331
|
+
* python-gitlab Issue #63 - implement pagination for list() ([`33ceed6`](https://github.com/python-gitlab/python-gitlab/commit/33ceed61759e1eb5197154d16cd81030e138921d))
|
12332
|
+
|
12200
12333
|
* Merge pull request #66 from stefanklug/master
|
12201
12334
|
|
12202
12335
|
Fix error when fetching single MergeRequests ([`adbe0a4`](https://github.com/python-gitlab/python-gitlab/commit/adbe0a4391f1e3b4d615ef7966dfa66e75b9a6fa))
|
@@ -12205,12 +12338,6 @@ Fix error when fetching single MergeRequests ([`adbe0a4`](https://github.com/pyt
|
|
12205
12338
|
|
12206
12339
|
* fix url when fetching a single MergeRequest ([`227f71c`](https://github.com/python-gitlab/python-gitlab/commit/227f71ce49cc3e0a3537a52dd2fac1d8045110f4))
|
12207
12340
|
|
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
12341
|
* Fix the update/delete CLI subcommands
|
12215
12342
|
|
12216
12343
|
Also update the testing tool to test these features.
|
@@ -12290,6 +12417,11 @@ closes #31 ([`8b42559`](https://github.com/python-gitlab/python-gitlab/commit/8b
|
|
12290
12417
|
Conflicts:
|
12291
12418
|
setup.py ([`0443256`](https://github.com/python-gitlab/python-gitlab/commit/04432561cb0e1a7e658cf771fd530835b4f463c8))
|
12292
12419
|
|
12420
|
+
* Added tests.
|
12421
|
+
|
12422
|
+
Uses httmock library to abstract away requests-library.
|
12423
|
+
Uses nose to actually run tests. ([`f458522`](https://github.com/python-gitlab/python-gitlab/commit/f45852205397d84a3ca2b9554ffaacae153791cc))
|
12424
|
+
|
12293
12425
|
* Deprecate some Gitlab object methods
|
12294
12426
|
|
12295
12427
|
raw* methods should never have been exposed; replace them with _raw_*
|
@@ -12408,73 +12540,68 @@ Changed Gitlab-class to use GitlabObject-class version of _getListOrObject ([`90
|
|
12408
12540
|
|
12409
12541
|
Classes for ProjectLabels and ProjectFiles ([`928b9f0`](https://github.com/python-gitlab/python-gitlab/commit/928b9f09291a45283ed371b931288b1caddb5b1c))
|
12410
12542
|
|
12543
|
+
* Classes for ProjectLabels and ProjectFiles ([`ad63e17`](https://github.com/python-gitlab/python-gitlab/commit/ad63e17ce7b6fd8c8eef993a44a1b18cc73fc4be))
|
12544
|
+
|
12411
12545
|
* Merge pull request #44 from mjmaenpaa/noid_objects
|
12412
12546
|
|
12413
12547
|
Support api-objects which don't have id in api response. ([`afe0ab4`](https://github.com/python-gitlab/python-gitlab/commit/afe0ab4b7ecf9a37b88a3d8f77a2c17d95e571d3))
|
12414
12548
|
|
12549
|
+
* Fixed object creation in list ([`134fc7a`](https://github.com/python-gitlab/python-gitlab/commit/134fc7ac024aa96b1d22cc421a081df6cd2724f3))
|
12550
|
+
|
12551
|
+
* Support api-objects which don't have id in api response. ([`c3ab869`](https://github.com/python-gitlab/python-gitlab/commit/c3ab869711276522fe2997ba6e6332704a059d22))
|
12552
|
+
|
12415
12553
|
* Merge pull request #43 from mjmaenpaa/url_delete_attrs
|
12416
12554
|
|
12417
12555
|
Moved url attributes to separate list. Added list for delete attributes. ([`f7dfad3`](https://github.com/python-gitlab/python-gitlab/commit/f7dfad38877f9886d891ed19a21188de61e5c5bc))
|
12418
12556
|
|
12557
|
+
* Moved url attributes to separate list. Added list for delete attributes. ([`ea4c099`](https://github.com/python-gitlab/python-gitlab/commit/ea4c099532993cdb3ea547fcbd931127c03fdffa))
|
12558
|
+
|
12419
12559
|
* Merge pull request #40 from mjmaenpaa/py3
|
12420
12560
|
|
12421
12561
|
Python3 compatibility ([`1eccc3b`](https://github.com/python-gitlab/python-gitlab/commit/1eccc3b38bdb6d0b53d76b6a5099db89dcb53871))
|
12422
12562
|
|
12423
|
-
*
|
12424
|
-
|
12425
|
-
* Classes for ProjectLabels and ProjectFiles ([`ad63e17`](https://github.com/python-gitlab/python-gitlab/commit/ad63e17ce7b6fd8c8eef993a44a1b18cc73fc4be))
|
12563
|
+
* Py3 compatibility with six ([`431e4bd`](https://github.com/python-gitlab/python-gitlab/commit/431e4bdf089354534f6877d39631ff23038e8866))
|
12426
12564
|
|
12427
|
-
*
|
12565
|
+
* Python 3 compatibility for cli-program ([`d714c4d`](https://github.com/python-gitlab/python-gitlab/commit/d714c4d35bc627d9113a4925f843c54d6123e621))
|
12428
12566
|
|
12429
|
-
*
|
12567
|
+
* Python3 compatibility ([`15c0da5`](https://github.com/python-gitlab/python-gitlab/commit/15c0da5552aa57340d25946bb41d0cd079ec495d))
|
12430
12568
|
|
12431
12569
|
* Merge pull request #42 from mjmaenpaa/constructUrl
|
12432
12570
|
|
12433
12571
|
Moved url-construction to separate function ([`221f418`](https://github.com/python-gitlab/python-gitlab/commit/221f41806d0dad67adada158a9352aa9e2f2036f))
|
12434
12572
|
|
12573
|
+
* Moved url-construction to separate function ([`e14e3bf`](https://github.com/python-gitlab/python-gitlab/commit/e14e3bf0f675c54930af53c832ccd7ab98df89f3))
|
12574
|
+
|
12435
12575
|
* Merge pull request #41 from mjmaenpaa/gitlab_get_exception
|
12436
12576
|
|
12437
12577
|
Gitlab.get() raised GitlabListError instead of GitlabGetError ([`9736e0b`](https://github.com/python-gitlab/python-gitlab/commit/9736e0b0893e298712d1ad356e3f8341852ef0f7))
|
12438
12578
|
|
12439
|
-
* Moved url-construction to separate function ([`e14e3bf`](https://github.com/python-gitlab/python-gitlab/commit/e14e3bf0f675c54930af53c832ccd7ab98df89f3))
|
12440
|
-
|
12441
12579
|
* Gitlab.get() raised GitlabListError instead of GitlabGetError ([`ee54b3e`](https://github.com/python-gitlab/python-gitlab/commit/ee54b3e6927f6c8d3b5f9bcbec0e67b94be8566d))
|
12442
12580
|
|
12443
|
-
* Py3 compatibility with six ([`431e4bd`](https://github.com/python-gitlab/python-gitlab/commit/431e4bdf089354534f6877d39631ff23038e8866))
|
12444
|
-
|
12445
12581
|
* Merge pull request #39 from mjmaenpaa/timeout
|
12446
12582
|
|
12447
12583
|
Timeout support ([`9f134fc`](https://github.com/python-gitlab/python-gitlab/commit/9f134fcaf41594e2e37bf24f20cde128bd21364b))
|
12448
12584
|
|
12449
|
-
* Python 3 compatibility for cli-program ([`d714c4d`](https://github.com/python-gitlab/python-gitlab/commit/d714c4d35bc627d9113a4925f843c54d6123e621))
|
12450
|
-
|
12451
12585
|
* Timeout support ([`d2e591e`](https://github.com/python-gitlab/python-gitlab/commit/d2e591ec75aec916f3b37192ddcdc2163d558995))
|
12452
12586
|
|
12453
|
-
* Python3 compatibility ([`15c0da5`](https://github.com/python-gitlab/python-gitlab/commit/15c0da5552aa57340d25946bb41d0cd079ec495d))
|
12454
|
-
|
12455
12587
|
* Merge pull request #38 from mjmaenpaa/currentuser_key
|
12456
12588
|
|
12457
12589
|
Changed CurrentUser.Key to use _getListOrObject-method like all other functions ([`4664ebd`](https://github.com/python-gitlab/python-gitlab/commit/4664ebd9125d4eb07ee2add768b89362c6902f81))
|
12458
12590
|
|
12591
|
+
* CurrentUser.Key uses _getListOrObject-method ([`afcf1c2`](https://github.com/python-gitlab/python-gitlab/commit/afcf1c23c36a7aa0f65392892ca4abb973e35b43))
|
12592
|
+
|
12459
12593
|
* Merge pull request #37 from mjmaenpaa/list_kwargs
|
12460
12594
|
|
12461
12595
|
No reason to add kwargs to object in Gitlab.list()-method ([`2c86085`](https://github.com/python-gitlab/python-gitlab/commit/2c860856689bac90bbda44d4812a27d5b22144c0))
|
12462
12596
|
|
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
12597
|
* No reason to add kwargs to object in Gitlab.list()-method because GitlabObject
|
12470
12598
|
constructor can handle them. ([`40ce81e`](https://github.com/python-gitlab/python-gitlab/commit/40ce81e9b9cea0dd75c712ccac887afd37416996))
|
12471
12599
|
|
12472
|
-
*
|
12600
|
+
* Merge pull request #36 from mjmaenpaa/setFromDict
|
12473
12601
|
|
12474
|
-
|
12602
|
+
_setFromDict thinks False is None ([`4c5c39d`](https://github.com/python-gitlab/python-gitlab/commit/4c5c39de41221696fa1d63de13ec61ae88f85f9f))
|
12475
12603
|
|
12476
|
-
|
12477
|
-
Uses nose to actually run tests. ([`f458522`](https://github.com/python-gitlab/python-gitlab/commit/f45852205397d84a3ca2b9554ffaacae153791cc))
|
12604
|
+
* _setFromDict thinks False is None ([`3cf35ce`](https://github.com/python-gitlab/python-gitlab/commit/3cf35cedfff4784af9e7b882b85f71b22ec93c25))
|
12478
12605
|
|
12479
12606
|
* Merge pull request #34 from tekacs/master
|
12480
12607
|
|
@@ -12515,16 +12642,6 @@ Closes #28 ([`34d6952`](https://github.com/python-gitlab/python-gitlab/commit/34
|
|
12515
12642
|
|
12516
12643
|
Fix encoding errors on display and update with redirected output ([`2b5ea46`](https://github.com/python-gitlab/python-gitlab/commit/2b5ea468c68058a2d9141ecafda02263dd1845ca))
|
12517
12644
|
|
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
12645
|
* Fix encoding error when updating with redirected output
|
12529
12646
|
|
12530
12647
|
When output is redirected sys.stdout.encoding is None. Fix this by
|
@@ -12536,6 +12653,16 @@ used by the local system is irrelevant here. ([`ec185cf`](https://github.com/pyt
|
|
12536
12653
|
When redirecting output to a file sys.stdout.encoding is None, so use
|
12537
12654
|
sys.getdefaultencoding() instead. ([`e236fd9`](https://github.com/python-gitlab/python-gitlab/commit/e236fd94c48b949bbbc8e0dc2d55ebfaa1ef0069))
|
12538
12655
|
|
12656
|
+
* Support state_event in ProjectMilestone
|
12657
|
+
|
12658
|
+
Closes #30 ([`2281283`](https://github.com/python-gitlab/python-gitlab/commit/22812832021911dccdd93ced0ef1088441e3d227))
|
12659
|
+
|
12660
|
+
* add support for branches creation and deletion ([`97e2689`](https://github.com/python-gitlab/python-gitlab/commit/97e26896a7c2916b0f0d2c64934f280d4c9e5dc7))
|
12661
|
+
|
12662
|
+
* add support for UserKey listing and deletion ([`09e4a64`](https://github.com/python-gitlab/python-gitlab/commit/09e4a64cda0531f7dd45984625cf5e1c90bb430f))
|
12663
|
+
|
12664
|
+
* drop the module shebang ([`01335f3`](https://github.com/python-gitlab/python-gitlab/commit/01335f3b904a7ea4c1fee2d5b7f84f6420577834))
|
12665
|
+
|
12539
12666
|
* Merge pull request #16 from locke105/master
|
12540
12667
|
|
12541
12668
|
Fix license classifier in setup.py ([`8ce3e30`](https://github.com/python-gitlab/python-gitlab/commit/8ce3e30ba1fd3f9c587746dbe050a528bc6e952a))
|
@@ -12552,16 +12679,16 @@ Update Changelog and AUTHORS ([`1fe783d`](https://github.com/python-gitlab/pytho
|
|
12552
12679
|
|
12553
12680
|
Add support for extra parameters when listing all projects (Refs #12) ([`4b882b7`](https://github.com/python-gitlab/python-gitlab/commit/4b882b7b6b4b303fc18c428a3da2a26e1001e5c2))
|
12554
12681
|
|
12682
|
+
* Add support for extra parameters when listing all projects (Refs #12)
|
12683
|
+
|
12684
|
+
Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c595`](https://github.com/python-gitlab/python-gitlab/commit/1b6c5952f06fe1236e1e75ae68f9c2325e78d372))
|
12685
|
+
|
12555
12686
|
* ProjectMember: constructor should not create a User object ([`1c21423`](https://github.com/python-gitlab/python-gitlab/commit/1c214233360524fae06c9f6946e0956843a000f3))
|
12556
12687
|
|
12557
12688
|
* ids can be unicode
|
12558
12689
|
|
12559
12690
|
Fixes #15 ([`c6e371e`](https://github.com/python-gitlab/python-gitlab/commit/c6e371e7b2e2e499e32dd11feb81c013b8ab32c4))
|
12560
12691
|
|
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
12692
|
* version bump ([`04574f3`](https://github.com/python-gitlab/python-gitlab/commit/04574f381d3d50afa86ec890681105f8f5a2a31e))
|
12566
12693
|
|
12567
12694
|
* support creation of projects for users ([`dc2bf5e`](https://github.com/python-gitlab/python-gitlab/commit/dc2bf5ea5ae827178e1e7a058e39b491ddebc01a))
|
@@ -12584,6 +12711,10 @@ Signed-off-by: Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br> ([`1b6c59
|
|
12584
12711
|
|
12585
12712
|
* Merge remote-tracking branch 'github-mrts/master' ([`7fb7c47`](https://github.com/python-gitlab/python-gitlab/commit/7fb7c473c58cc2b4e7567d444ffff3b3ecdb3243))
|
12586
12713
|
|
12714
|
+
* Add support for project events. ([`32d4224`](https://github.com/python-gitlab/python-gitlab/commit/32d422445388766e7cc4913a51bf8890487d4ce5))
|
12715
|
+
|
12716
|
+
* Fix comments. ([`6705928`](https://github.com/python-gitlab/python-gitlab/commit/6705928406667ee010f448e41c14cfa63c263178))
|
12717
|
+
|
12587
12718
|
* add a Key() method for User objects ([`1969abb`](https://github.com/python-gitlab/python-gitlab/commit/1969abb3bbb61c4cbb8499496be9f48bd74cf558))
|
12588
12719
|
|
12589
12720
|
* Merge pull request #10 from ksmets/master
|
@@ -12592,10 +12723,6 @@ Add SSH key for user ([`e31bb9e`](https://github.com/python-gitlab/python-gitlab
|
|
12592
12723
|
|
12593
12724
|
* Add SSH key for user ([`909c10e`](https://github.com/python-gitlab/python-gitlab/commit/909c10e0d155b0fcfcd63129e2f5921a11d9c017))
|
12594
12725
|
|
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
12726
|
* Merge pull request #8 from Itxaka/master
|
12600
12727
|
|
12601
12728
|
fixed the requirements auto install from setup.py ([`37e6648`](https://github.com/python-gitlab/python-gitlab/commit/37e6648fe4127a51601a9456a03bbaf8ff674c10))
|
@@ -12627,6 +12754,8 @@ fixed the requirements auto install from setup.py ([`37e6648`](https://github.co
|
|
12627
12754
|
|
12628
12755
|
* Merge branch 'header-private-token' of https://github.com/dekimsey/python-gitlab into token_in_header ([`9adb4fa`](https://github.com/python-gitlab/python-gitlab/commit/9adb4fae912279b7635820029fe0b12013e6332e))
|
12629
12756
|
|
12757
|
+
* Use PRIVATE-TOKEN header for passing the auth token ([`d39c471`](https://github.com/python-gitlab/python-gitlab/commit/d39c471b188ad1302f0ef6c5f7eac4c6e0d1b742))
|
12758
|
+
|
12630
12759
|
* provide a ChangeLog ([`2d5342b`](https://github.com/python-gitlab/python-gitlab/commit/2d5342b54f723f621ada53acdfc5ff5d8b1b8b8b))
|
12631
12760
|
|
12632
12761
|
* provide a AUTHORS file ([`7c85fb7`](https://github.com/python-gitlab/python-gitlab/commit/7c85fb7e865a648b49494add224f286e2343e9ff))
|
@@ -12662,9 +12791,9 @@ Addded API for team access. ([`8f65cf8`](https://github.com/python-gitlab/python
|
|
12662
12791
|
Conflicts:
|
12663
12792
|
gitlab.py ([`cb5b754`](https://github.com/python-gitlab/python-gitlab/commit/cb5b7542edde926f73be6e7a2ab55f944ccbca00))
|
12664
12793
|
|
12665
|
-
*
|
12794
|
+
* Basic team support. ([`5388d19`](https://github.com/python-gitlab/python-gitlab/commit/5388d19f8885d3ca2f93c5e07ed58a1b84a87475))
|
12666
12795
|
|
12667
|
-
*
|
12796
|
+
* Addded API for team access. ([`8a22958`](https://github.com/python-gitlab/python-gitlab/commit/8a22958e20a622400daecb288135793544ad01ad))
|
12668
12797
|
|
12669
12798
|
* improve pretty_print() ([`05ab473`](https://github.com/python-gitlab/python-gitlab/commit/05ab4732ceaee7d6d6c1f162b5925602b7c9ad44))
|
12670
12799
|
|
@@ -12748,8 +12877,6 @@ We can use a more common syntax (-- prefix for options) this way. ([`a8072d9`](h
|
|
12748
12877
|
|
12749
12878
|
* Allow creation of objects using the "hidden API" ([`1d55e67`](https://github.com/python-gitlab/python-gitlab/commit/1d55e67b7335926435cb2298b675698cec1873d0))
|
12750
12879
|
|
12751
|
-
* Basic team support. ([`5388d19`](https://github.com/python-gitlab/python-gitlab/commit/5388d19f8885d3ca2f93c5e07ed58a1b84a87475))
|
12752
|
-
|
12753
12880
|
* Check the needed attributes to create objects
|
12754
12881
|
|
12755
12882
|
Provide a required and optional arguments lists for each object that can
|