- Notifications
You must be signed in to change notification settings - Fork 448
v0.33 - Add GroupSets#1444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.33 - Add GroupSets #1444
Uh oh!
There was an error while loading. Please reload this page.
Conversation
jacalata commented Aug 21, 2024 • edited
Loading Uh oh!
There was an error while loading. Please reload this page.
edited
Uh oh!
There was an error while loading. Please reload this page.
Updating this list which had become quite old. Also including a simple script for updating the list periodically. TODO: Improve the script to include the user's name as well. (Will require using a Github token to avoid being rate limited.)
Update contributors
Add workbook and datasource name attributes to JobItem Model
chore: make auth endpoint imports absolute
chore: make imports for flows absolute
feat: group bulk edit
Add __str__() and __repr__() to DatabaseItem
feat: add support for groupsets
Pager Protocols were missing the generic flags. Added those in so the Pager correctly passes through the typing information. Also removes the kwargs from the function signature of the Endpoint.get protocol to make the Workbook endpoint match. Adding a return annotation of `None` to the tests is very important because it is what enables static type checkers, like mypy, to inspect those functions. With these annotations now in place, users of TSC should more transparently be able to carry through typing information when using the Pager.
jorwoods commented Aug 29, 2024
chore: typing decorators
fix: JobItem repr
Merge pull request #1429 from jorwoods/jorwoods/virtual_connections
jacalata commented Sep 2, 2024
I should have been squashing all these merges - I went back and re-did the virtual connections, I'll do the tagging change as well, and leave the others as is. |
jorwoods commented Sep 6, 2024
And one more, #1454. Without it, if a user queries permissions on an object that has a groupSet element, the call will error. |
bcantoni commented Sep 13, 2024
bcantoni commented Sep 17, 2024
Okay I think we have all the PRs that @jorwoods and I were waiting for included now. |
Previously we just handled monthly schedules which repeated on a day (1-31) or 'LastDay'. Tableau Server has since added more options such as "first Monday". This change catches up the interval validation to match what might be received from the server. Fixes#1358 * Add failing test for "monthly on first Monday" schedule * Add support for all monthly schedule variations * Unrelated fix for debug logging of API responses and add a small warning
Features:
Bugfix:
#1447
#1449