forked from pool/python-tableauserverclient
Accepting request 970981 from home:pgajdos:python
- version update to 0.18.0 ## 0.18.0 (6 April 2022) * Switched to using defused_xml for xml attack protection * added linting and type hints * improve experience with self-signed certificates/invalid ssl * updated samples * new item types: metrics, revisions for datasources and workbooks * features: support adding flows to schedules, exporting workbooks to powerpoint * fixes: delete extracts ## 0.17.0 (20 October 2021) * Added support for accepting parameters for post request of the metadata api (#850) * Fixed jobs.get_by_id(job_id) example & reference docs (#867, #868) * Fixed handling for workbooks in personal spaces which do not have projectID or Name (#875) * Updated links to Data Source Methods page in REST API docs (#879) * Unified arguments of sample scripts (#889) * Updated docs for - links to Datasource API (#879) , sample scripts (#892) & metadata query (#896) * Added support for scheduling DataUpdate Jobs (#891) * Exposed the fileuploads API endpoint (#894) * Added a new sample & documentation for metadata API (#895, #896) * Added support to the package for getting flow run status, as well as the ability to cancel flow runs. (#884) * Added jobs.wait_for_job method (#903) * Added description support for datasources item (#912) * Dropped support for Python 3.5 (#911) ## 0.16.0 (15 July 2021) * Documentation updates (#800, #818, #839, #842) * Fixed data alert repr in subscription item (#821) * Added support for Data Quality Warning (#836) * Added support for renaming datasources (#843) * Improved Datasource tests (#843) * Updated catalog obfuscation field (#844) OBS-URL: https://build.opensuse.org/request/show/970981 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tableauserverclient?expand=0&rev=5
This commit is contained in:
@@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 20 07:01:35 UTC 2022 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- version update to 0.18.0
|
||||||
|
## 0.18.0 (6 April 2022)
|
||||||
|
* Switched to using defused_xml for xml attack protection
|
||||||
|
* added linting and type hints
|
||||||
|
* improve experience with self-signed certificates/invalid ssl
|
||||||
|
* updated samples
|
||||||
|
* new item types: metrics, revisions for datasources and workbooks
|
||||||
|
* features: support adding flows to schedules, exporting workbooks to powerpoint
|
||||||
|
* fixes: delete extracts
|
||||||
|
## 0.17.0 (20 October 2021)
|
||||||
|
* Added support for accepting parameters for post request of the metadata api (#850)
|
||||||
|
* Fixed jobs.get_by_id(job_id) example & reference docs (#867, #868)
|
||||||
|
* Fixed handling for workbooks in personal spaces which do not have projectID or Name (#875)
|
||||||
|
* Updated links to Data Source Methods page in REST API docs (#879)
|
||||||
|
* Unified arguments of sample scripts (#889)
|
||||||
|
* Updated docs for - links to Datasource API (#879) , sample scripts (#892) & metadata query (#896)
|
||||||
|
* Added support for scheduling DataUpdate Jobs (#891)
|
||||||
|
* Exposed the fileuploads API endpoint (#894)
|
||||||
|
* Added a new sample & documentation for metadata API (#895, #896)
|
||||||
|
* Added support to the package for getting flow run status, as well as the ability to cancel flow runs. (#884)
|
||||||
|
* Added jobs.wait_for_job method (#903)
|
||||||
|
* Added description support for datasources item (#912)
|
||||||
|
* Dropped support for Python 3.5 (#911)
|
||||||
|
## 0.16.0 (15 July 2021)
|
||||||
|
* Documentation updates (#800, #818, #839, #842)
|
||||||
|
* Fixed data alert repr in subscription item (#821)
|
||||||
|
* Added support for Data Quality Warning (#836)
|
||||||
|
* Added support for renaming datasources (#843)
|
||||||
|
* Improved Datasource tests (#843)
|
||||||
|
* Updated catalog obfuscation field (#844)
|
||||||
|
* Fixed revision limit field in site_item.py file (#847)
|
||||||
|
* Added the Missing content permission field- LockedToProjectWithoutNested (#856)
|
||||||
|
- python-mock is not required for build
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 18 00:59:35 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
Thu Feb 18 00:59:35 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-tableauserverclient
|
# spec file for package python-tableauserverclient
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-tableauserverclient
|
Name: python-tableauserverclient
|
||||||
Version: 0.15.0
|
Version: 0.18.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python library for working with the Tableau Server REST API
|
Summary: Python library for working with the Tableau Server REST API
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -31,7 +31,6 @@ BuildRequires: python-rpm-macros
|
|||||||
Requires: python-requests >= 2.11
|
Requires: python-requests >= 2.11
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module mock}
|
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module requests >= 2.11}
|
BuildRequires: %{python_module requests >= 2.11}
|
||||||
BuildRequires: %{python_module requests-mock >= 1.0}
|
BuildRequires: %{python_module requests-mock >= 1.0}
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:09bef236fa62c30fa45a1308dda1730da56055d8e24ca0391abc770f782482fc
|
|
||||||
size 824079
|
|
3
tableauserverclient-0.18.0.tar.gz
Normal file
3
tableauserverclient-0.18.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:57be902e04b6343ce6ec9b9868be619ea1cf32efb0b8053b8ef5af0ed6ecf2b2
|
||||||
|
size 1927977
|
Reference in New Issue
Block a user