15
0
forked from pool/python-jira

- update to 2.0.0:

* fix pypi classifiers (#634)
  * ResultList class to support the iterator interface
  * Async improvement: Allow setting the number of worker threads for JIRA.\_fetch\_pages
  * Add Group resource
  * Changed fields type checks into single if/elif block following PR feedback
  * Create copy of fields list in JIRA.search\_issues to prevent mutating the original list
  * update pyyaml dependency
  * build: cleanup
  * Update Travis badge to travis.com
  * avoid pycrypto dependency
  * travis: fix deploy
  * build: chore
  * travis: publish workaround
  * group\_members should return sorted user keys (#611)
  * api: py37 support and rename async to async\_ (#604)
  * Fix spelling error
  * Passthrough states as a csv string
  * Remove the email\_user method as it is obsolete
  * Remove support for renaming users in Jira versions less than 6.0.0
  * travis: remove test pypi server
  * travis fixes (#608)
  * fix travis
  * Update README.rst
  * Update README to reflect branch model
  * travis fixes
  * Adopt pre-commit hooks
  * Add Bug and Feature Request Templates
  * Fix cspell problems
  * remove ordereddict requirement

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jira?expand=0&rev=6
This commit is contained in:
2018-12-06 15:50:45 +00:00
committed by Git OBS Bridge
parent 5ffc3b1486
commit 76b8c94976
4 changed files with 56 additions and 4 deletions

View File

@@ -1,3 +1,54 @@
-------------------------------------------------------------------
Thu Dec 6 15:47:15 UTC 2018 - Thomas Bechtold <tbechtold@suse.com>
- update to 2.0.0:
* fix pypi classifiers (#634)
* ResultList class to support the iterator interface
* Async improvement: Allow setting the number of worker threads for JIRA.\_fetch\_pages
* Add Group resource
* Changed fields type checks into single if/elif block following PR feedback
* Create copy of fields list in JIRA.search\_issues to prevent mutating the original list
* update pyyaml dependency
* build: cleanup
* Update Travis badge to travis.com
* avoid pycrypto dependency
* travis: fix deploy
* build: chore
* travis: publish workaround
* group\_members should return sorted user keys (#611)
* api: py37 support and rename async to async\_ (#604)
* Fix spelling error
* Passthrough states as a csv string
* Remove the email\_user method as it is obsolete
* Remove support for renaming users in Jira versions less than 6.0.0
* travis: remove test pypi server
* travis fixes (#608)
* fix travis
* Update README.rst
* Update README to reflect branch model
* travis fixes
* Adopt pre-commit hooks
* Add Bug and Feature Request Templates
* Fix cspell problems
* remove ordereddict requirement
* enabled cspell check
* Enable Attachment Test
* Add posargs to tox.ini
* Add Test for delete\_component
* add a function that can delete component by id
* added per dbaxa recommendations in PR #440
* Add Linux compatibility to Makefile
* decrease maximum version for external argparse
* Missing package on setting up Sphinx
* Fixes add\_worklog started time
* Update docs of assign\_issue()
* Updated docs of add\_issues\_to\_sprint()
* Added documentation of Issue class
* Updated doc string of search\_issue()
* Updated doc string of sprint()
* Remove flake8 exceptions
* Updated doc's types for sprints()
-------------------------------------------------------------------
Tue Dec 4 12:49:31 UTC 2018 - Matej Cepl <mcepl@suse.com>