File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ Changes from 1.4 to 1.5
14
14
configuration, epics.
15
15
* The ``GetFromListMixin `` class has been removed. The ``get() `` method is not
16
16
available anymore for the following managers:
17
+
17
18
- UserKeyManager
18
19
- DeployKeyManager
19
20
- GroupAccessRequestManager
@@ -27,6 +28,7 @@ Changes from 1.4 to 1.5
27
28
- ProjectPipelineJobManager
28
29
- ProjectAccessRequestManager
29
30
- TodoManager
31
+
30
32
* ``ProjectPipelineJob `` do not heritate from ``ProjectJob `` anymore and thus
31
33
can only be listed.
32
34
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ python-gitlab supports both GitLab v3 and v4 APIs. To use the v3 make sure to
7
7
.. note ::
8
8
9
9
To use the v3 make sure to install python-gitlab 1.4. Only the v4 API is
10
- documented here. See the documentation of earlier version for the v3 API.
10
+ documented here. See the documentation of earlier versions for the v3 API.
11
11
12
12
``gitlab.Gitlab `` class
13
13
=======================
@@ -88,7 +88,7 @@ Examples:
88
88
You can list the mandatory and optional attributes for object creation and
89
89
update with the manager's ``get_create_attrs() `` and ``get_update_attrs() ``
90
90
methods. They return 2 tuples, the first one is the list of mandatory
91
- attributes, the second one the list of optional attribute:
91
+ attributes, the second one is the list of optional attribute:
92
92
93
93
.. code-block :: python
94
94
@@ -206,7 +206,7 @@ through a large number of items:
206
206
for item in items:
207
207
print (item.attributes)
208
208
209
- The generator exposes extra listing information as received by the server:
209
+ The generator exposes extra listing information as received from the server:
210
210
211
211
* ``current_page ``: current page number (first page is 1)
212
212
* ``prev_page ``: if ``None `` the current page is the first one
@@ -249,7 +249,7 @@ properly closed when you exit a ``with`` block:
249
249
.. warning ::
250
250
251
251
The context manager will also close the custom ``Session `` object you might
252
- have used to build a ``Gitlab `` instance.
252
+ have used to build the ``Gitlab `` instance.
253
253
254
254
Proxy configuration
255
255
-------------------
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ Reference
85
85
86
86
+ :class: `gitlab.v4.objects.ProjectCommitComment `
87
87
+ :class: `gitlab.v4.objects.ProjectCommitCommentManager `
88
- + :attr: `gitlab.v4.objects.Commit .comments `
88
+ + :attr: `gitlab.v4.objects.ProjectCommit .comments `
89
89
90
90
* GitLab API: https://docs.gitlab.com/ce/api/commits.html
91
91
@@ -116,7 +116,7 @@ Reference
116
116
117
117
+ :class: `gitlab.v4.objects.ProjectCommitStatus `
118
118
+ :class: `gitlab.v4.objects.ProjectCommitStatusManager `
119
- + :attr: `gitlab.v4.objects.Commit .statuses `
119
+ + :attr: `gitlab.v4.objects.ProjectCommit .statuses `
120
120
121
121
* GitLab API: https://docs.gitlab.com/ce/api/commits.html
122
122
Original file line number Diff line number Diff line change
1
+ .. _issues_examples :
2
+
1
3
######
2
4
Issues
3
5
######
Original file line number Diff line number Diff line change
1
+ .. _merge_requests_examples :
2
+
1
3
##############
2
4
Merge requests
3
5
##############
You can’t perform that action at this time.
0 commit comments