The Add connection form for Athena has been modified so that connections to Athena now use role-based authorization.
This fix enables realtime updates for insight view and edit tabs in the workspace. It also inadvertently fixes a lot of insight editor weirdness that has been happening when users try to create new or edit existing insights while switching between simple and markdown editors.
This fixes an issue where it was possible to pick and add two tags from the the dropdown tag recommendations simultaneously. Previously when using both the mouse and the arrow keys at the same time it was possible to highlight and add two tags. Now it's back to one at a time.
Fixed an issue where Business Terms with a / in the name were not being properly encoded.
Sample queries generated when a dataset or project is created have been disabled. All existing sample queries have been removed from the platform.
Based on customer feedback, we're adding back in the counts of existing tags in the tags dropdown.

When there weren't any tags showing, the input field was slightly out of alignment. Now, it's better. Similarly, when there were lots of tags in the field, the tag icon moved. Now, it's also better.
Brought commands and behavior between the previous version of the tag picker and the current version back into line. Fix includes automatically formatting tags to lower case on entry.
There was a strange hover effect on the workspace and overview pages in Safari whereby the item highlighted jigged and distanced itself from its neighbors. Now everything stays where it should:
Before

After

Adds a settings tab to catalog pages for users with write access. The tab contains:
A Shared with section that links back to the home page of the organization
A section to manage the transfer of ownership or deletion of the asset

The tooltip that appears when you hover over a tab in a workspace has been modified to show the entire name and not to include the icon. Previously the text would have been cut off:
Before

After

This change updates the styles to better promote hierarchy of text in editing and viewing text from rich text editor, as well as in posts. Consistency between Markdown and the RTE was enforced to differentiate between header types (H1, H2, H3, etc.)
We made some stylistic changes to the discussion email templates regarding colors used and indent indicators, and modified the workflow to use links rather than buttons.
The interface for selecting tags for datasets and projects has been modified so that the chosen tags are displayed in the selection field and can be edited from inside the field:

Live connections have been enabled for Denodo. It is now possible to create a virtual connection to a Denodo data source to use in a data.world dataset.
There was a slight horizontal scroll on the dataset overview page that has bee removed, and the number shown for bookmarks has been formatted with commas:

Current Problem: When files are being added to data.world they haven't been processed yet on the backend and given a name. So the ingest dialog displays the full name of the file which can be hard to read and unpleasant to look at. This fix formats the file names in the UI when they are being added to make the experience smoother.
Details:
Ex input: SNOWFLAKE_SAMPLE_DATA.WEATHER.DAILY_14_TOTAL.a73b0f27-3077-47df-9c2c-8b8d73a49d68
Ex input: DAILY_14_TOTAL.csv
The formatter will drop whatever is after the last period. The formatter will also switch out the . with a separator / and lower case all the words
Ex output: snowflake_sample_data / weather / daily_14_total
Ex output: daily_14_total
If an optional parameter called onlyTableName
is passed in (default value false
), then only the table name will be used vs the full file name. This is used for the project page which wouldn't have enough space to display the full formatted name. If the file doesn't have any periods, it will just lower case all the words.