Skip to content

Commit eaa4450

Browse files
author
Gauvain Pocentek
committed
Prepare the 1.5.0 release
1 parent d5289fe commit eaa4450

File tree

4 files changed

+64
-2
lines changed

4 files changed

+64
-2
lines changed

AUTHORS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Mika Mäenpää <[email protected]>
66

77
Contributors
88
------------
9-
109
Adam Reid <[email protected]>
1110
Alexander Skiba <[email protected]>
1211
Alex Widener <[email protected]>
@@ -26,6 +25,7 @@ Christian Wenk <[email protected]>
2625
Colin D Bennett <[email protected]>
2726
Cosimo Lupo <[email protected]>
2827
Crestez Dan Leonard <[email protected]>
28+
Cyril Jouve <[email protected]>
2929
Daniel Kimsey <[email protected]>
3030
derek-austin <[email protected]>
3131
Diego Giovane Pasqualin <[email protected]>
@@ -55,13 +55,15 @@ Jon Banafato <[email protected]>
5555
Keith Wansbrough <[email protected]>
5656
Koen Smets <[email protected]>
5757
Kris Gambirazzi <[email protected]>
58+
5859
Lyudmil Nenov <[email protected]>
5960
Mart Sõmermaa <[email protected]>
6061
massimone88 <[email protected]>
6162
Matej Zerovnik <[email protected]>
6263
Matt Odden <[email protected]>
6364
Matus Ferech <[email protected]>
6465
Maura Hausman <[email protected]>
66+
Maxime Guyot <[email protected]>
6567
Max Wittig <[email protected]>
6668
Michael Overmeyer <[email protected]>
6769
Michal Galet <[email protected]>
@@ -87,6 +89,7 @@ Richard Hansen <[email protected]>
8789
Robert Lu <[email protected]>
8890
8991
92+
Stefan Crain <[email protected]>
9093
Stefan K. Dunkler <[email protected]>
9194
Stefan Klug <[email protected]>
9295
Stefano Mandruzzato <[email protected]>

ChangeLog.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,59 @@
11
ChangeLog
22
=========
33

4+
Version 1.5.0_ - 2018-06-22
5+
---------------------------
6+
7+
* Drop API v3 support
8+
* Drop GetFromListMixin
9+
* Update the sphinx extension for v4 objects
10+
* Add support for user avatar upload
11+
* Add support for project import/export
12+
* Add support for the search API
13+
* Add a global per_page config option
14+
* Add support for the discussions API
15+
* Add support for merged branches deletion
16+
* Add support for Project badges
17+
* Implement user_agent_detail for snippets
18+
* Implement commit.refs()
19+
* Add commit.merge_requests() support
20+
* Deployment: add list filters
21+
* Deploy key: add missing attributes
22+
* Add support for environment stop()
23+
* Add feature flags deletion support
24+
* Update some group attributes
25+
* Issues: add missing attributes and methods
26+
* Fix the participants() decorator
27+
* Add support for group boards
28+
* Implement the markdown rendering API
29+
* Update MR attributes
30+
* Add pipeline listing filters
31+
* Add missing project attributes
32+
* Implement runner jobs listing
33+
* Runners can be created (registered)
34+
* Implement runner token validation
35+
* Update the settings attributes
36+
* Add support for the gitlab CI lint API
37+
* Add support for group badges
38+
* Fix the IssueManager path to avoid redirections
39+
* time_stats(): use an existing attribute if available
40+
* Make ProjectCommitStatus.create work with CLI
41+
* Tests: default to python 3
42+
* ProjectPipelineJob was defined twice
43+
* Silence logs/warnings in unittests
44+
* Add support for MR approval configuration (EE)
45+
* Change post_data default value to None
46+
* Add geo nodes API support (EE)
47+
* Add support for issue links (EE)
48+
* Add support for LDAP groups (EE)
49+
* Add support for board creation/deletion (EE)
50+
* Add support for Project.pull_mirror (EE)
51+
* Add project push rules configuration (EE)
52+
* Add support for the EE license API
53+
* Add support for the LDAP groups API (EE)
54+
* Add support for epics API (EE)
55+
* Fix the non-verbose output of ProjectCommitComment
56+
457
Version 1.4.0_ - 2018-05-19
558
---------------------------
659

@@ -585,6 +638,7 @@ Version 0.1 - 2013-07-08
585638

586639
* Initial release
587640

641+
.. _1.5.0: https://github.com/python-gitlab/python-gitlab/compare/1.4.0...1.5.0
588642
.. _1.4.0: https://github.com/python-gitlab/python-gitlab/compare/1.3.0...1.4.0
589643
.. _1.3.0: https://github.com/python-gitlab/python-gitlab/compare/1.2.0...1.3.0
590644
.. _1.2.0: https://github.com/python-gitlab/python-gitlab/compare/1.1.0...1.2.0

RELEASE_NOTES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Changes from 1.4 to 1.5
99

1010
* APIv3 support has been removed. Use the 1.4 release/branch if you need v3
1111
support.
12+
* GitLab EE features are now supported: Geo nodes, issue links, LDAP groups,
13+
project/group boards, project mirror pulling, project push rules, EE license
14+
configuration, epics.
1215
* The ``GetFromListMixin`` class has been removed. The ``get()`` method is not
1316
available anymore for the following managers:
1417
- UserKeyManager
@@ -24,6 +27,8 @@ Changes from 1.4 to 1.5
2427
- ProjectPipelineJobManager
2528
- ProjectAccessRequestManager
2629
- TodoManager
30+
* ``ProjectPipelineJob`` do not heritate from ``ProjectJob`` anymore and thus
31+
can only be listed.
2732

2833
Changes from 1.3 to 1.4
2934
=======================

gitlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from gitlab.exceptions import * # noqa
3131

3232
__title__ = 'python-gitlab'
33-
__version__ = '1.4.0'
33+
__version__ = '1.5.0'
3434
__author__ = 'Gauvain Pocentek'
3535
__email__ = '[email protected]'
3636
__license__ = 'LGPL3'

0 commit comments

Comments
 (0)