tableau_api 4.0.0 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -1
- data/README.md +1 -1
- data/lib/tableau_api/resources/workbooks.rb +2 -2
- data/lib/tableau_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a147139944855ed7147760ceae5d65bcd5f6fb1c
|
4
|
+
data.tar.gz: ea08dc0b70183fc30620959fa255e041e6c318ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b60cbc7aec82d7a36868faadbe38f775786a67b84c809c2803e384424c877d6c22116b1da652d0634f57d731b0d99a2b3e69123d746499390e7e2a2c34d71a63
|
7
|
+
data.tar.gz: f36628abb279e8ca26aee9747a9fafb0ab29e41268b6787e2da9a90d2d4a116d3f18fd7d7ca6557481340a72aaf6a6306cb95f5ce6caf83a4ab274b2df17b994
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,15 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## upcoming
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
|
10
|
+
## [4.1.0] - 2022-04-13
|
11
|
+
|
12
|
+
- Specify major version number of ruby in Docker testing command in README
|
13
|
+
- Add support for CreateRefreshMetrics and RunExplainData workbook capabilities
|
14
|
+
|
6
15
|
## [4.0.0] - 2020-11-30
|
7
16
|
|
8
17
|
### Changed/Fixed
|
@@ -25,7 +34,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
25
34
|
### Changed
|
26
35
|
|
27
36
|
- Updated to API version 3.1
|
28
|
-
- This is a breaking change for site roles:
|
37
|
+
- This is a breaking change for site roles:
|
29
38
|
https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_new_site_roles.htm
|
30
39
|
- Include full error detail in TableauError message
|
31
40
|
|
data/README.md
CHANGED
@@ -54,7 +54,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
54
54
|
### Docker
|
55
55
|
|
56
56
|
```
|
57
|
-
docker run -it -d -v $(pwd):/src ruby /bin/bash
|
57
|
+
docker run -it -d -v $(pwd):/src ruby:2 /bin/bash
|
58
58
|
docker exec -it CONTAINER_ID /bin/bash -c "cd /src && bundle && rake"
|
59
59
|
```
|
60
60
|
|
@@ -49,8 +49,8 @@ module TableauApi
|
|
49
49
|
# rubocop:enable Metrics/ParameterLists
|
50
50
|
|
51
51
|
CAPABILITIES = %w[
|
52
|
-
AddComment ChangeHierarchy ChangePermissions Delete ExportData ExportImage
|
53
|
-
Filter Read ShareView ViewComments ViewUnderlyingData WebAuthoring Write
|
52
|
+
AddComment ChangeHierarchy ChangePermissions CreateRefreshMetrics Delete ExportData ExportImage
|
53
|
+
ExportXml Filter Read RunExplainData ShareView ViewComments ViewUnderlyingData WebAuthoring Write
|
54
54
|
].freeze
|
55
55
|
|
56
56
|
CAPABILITY_MODES = %w[ALLOW DENY].freeze
|
data/lib/tableau_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tableau_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Manning
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-04-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: httparty
|