Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3a119cd

Browse files
author
Gauvain Pocentek
committed
Prepare v1.2.0
1 parent6f50447 commit3a119cd

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

‎AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ Andrew Austin <aaustin@terremark.com>
1717
Armin Weihbold <armin.weihbold@gmail.com>
1818
Aron Pammer <info@aronpammer.me>
1919
Asher256 <Asher256@users.noreply.github.com>
20+
Bancarel Valentin <bancarel.valentin@gmail.com>
21+
Ben Brown <ben.brown@codethink.co.uk>
2022
Carlo Mion <mion00@users.noreply.github.com>
23+
Carlos Soriano <csoriano@gnome.org>
2124
Christian <cgumpert@users.noreply.github.com>
2225
Christian Wenk <christian.wenk@omicronenergy.com>
2326
Colin D Bennett <colin.bennett@harman.com>
@@ -28,6 +31,7 @@ derek-austin <derek.austin35@mailinator.com>
2831
Diego Giovane Pasqualin <dpasqualin@c3sl.ufpr.br>
2932
Dmytro Litvinov <litvinov.do.it@gmail.com>
3033
Eli Sarver <eli.sarver@gmail.com>
34+
Eric L Frederich <eric.frederich@siemens.com>
3135
Erik Weatherwax <erik.weatherwax@xls.xerox.com>
3236
fgouteroux <francois.gouteroux@d2-si.eu>
3337
Greg Allen <GregoryEAllen@users.noreply.github.com>
@@ -61,12 +65,14 @@ Mikhail Lopotkov <ms.lopotkov@tensor.ru>
6165
Missionrulz <missionrulz@gmail.com>
6266
Mond WAN <mondwan@users.noreply.github.com>
6367
Nathan Giesbrecht <NathanGiesbrecht@users.noreply.github.com>
68+
Nathan Schmidt <nathan@cascade-softworks.com>
6469
pa4373 <pa4373@gmail.com>
6570
Patrick Miller <patrick@velocitywebworks.com>
6671
Pavel Savchenko <asfaltboy@gmail.com>
6772
Peng Xiao <xiaoquwl@gmail.com>
6873
Pete Browne <pete.browne@localmed.com>
6974
Peter Mosmans <support@go-forward.net>
75+
P. F. Chimento <philip.chimento@gmail.com>
7076
Philipp Busch <philipp.busch@momox.biz>
7177
Rafael Eyng <rafaeleyng@gmail.com>
7278
Richard Hansen <rhansen@rhansen.org>
@@ -76,6 +82,7 @@ savenger <github@smahmood.de>
7682
Stefan K. Dunkler <stefan.dun@gmail.com>
7783
Stefan Klug <klug.stefan@gmx.de>
7884
Stefano Mandruzzato <stefano.mandruzzato@gmail.com>
85+
THEBAULT Julien <julien@thebault.co>
7986
Tim Neumann <mail@timnn.me>
8087
Will Starms <vilhelmen@gmail.com>
8188
Yosi Zelensky <yosyos04@gmail.com>

‎ChangeLog.rst

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

4+
Version1.2.0_ - 2018-01-01
5+
---------------------------
6+
7+
* Add mattermost service support
8+
* Add users custom attributes support
9+
* [doc] Fix project.triggers.create example with v4 API
10+
* Oauth token support
11+
* Remove deprecated objects/methods
12+
* Rework authentication args handling
13+
* Add support for oauth and anonymous auth in config/CLI
14+
* Add support for impersonation tokens API
15+
* Add support for user activities
16+
* Update user docs with gitlab URLs
17+
* [docs] Bad arguments in projetcs file documentation
18+
* Add support for user_agent_detail (issues)
19+
* Add a SetMixin
20+
* Add support for project housekeeping
21+
* Expected HTTP response for subscribe is 201
22+
* Update pagination docs for ProjectCommit
23+
* Add doc to get issue from iid
24+
* Make todo() raise GitlabTodoError on error
25+
* Add support for award emojis
26+
* Update project services docs for v4
27+
* Avoid sending empty update data to issue.save
28+
* [docstrings] Explicitly document pagination arguments
29+
* [docs] Add a note about password auth being removed from GitLab
30+
* Submanagers: allow having undefined parameters
31+
* ProjectFile.create(): don't modify the input data
32+
* Update testing tools for /session removal
33+
* Update groups tests
34+
* Allow per_page to be used with generators
35+
* Add groups listing attributes
36+
* Add support for subgroups listing
37+
* Add supported python versions in setup.py
38+
* Add support for pagesdomains
39+
* Add support for features flags
40+
* Add support for project and group custom variables
41+
* Add support for user/group/project filter by custom attribute
42+
* Respect content of REQUESTS_CA_BUNDLE and *_proxy envvars
43+
444
Version1.1.0_ - 2017-11-03
545
---------------------------
646

@@ -495,6 +535,7 @@ Version 0.1 - 2013-07-08
495535

496536
* Initial release
497537

538+
.. _1.2.0:https://github.com/python-gitlab/python-gitlab/compare/1.1.0...1.2.0
498539
.. _1.1.0:https://github.com/python-gitlab/python-gitlab/compare/1.0.2...1.1.0
499540
.. _1.0.2:https://github.com/python-gitlab/python-gitlab/compare/1.0.1...1.0.2
500541
.. _1.0.1:https://github.com/python-gitlab/python-gitlab/compare/1.0.0...1.0.1

‎gitlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
fromgitlab.v3.objectsimport*# noqa
3535

3636
__title__='python-gitlab'
37-
__version__='1.1.0'
37+
__version__='1.2.0'
3838
__author__='Gauvain Pocentek'
3939
__email__='gauvain@pocentek.net'
4040
__license__='LGPL3'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp