Skip to content

1.0.9 New Features, UI Changes, & Bug Fixes

Compare
Choose a tag to compare
@danwom danwom released this 02 Oct 18:29
· 490 commits to master since this release
dfb6d21

New Features

MarkDown Editing (#298) (#299)(#303)

Table and column descriptions now support markdown editing. The character limits for these fields is also configurable in the application configuration with editableText.tableDescLength and editableText.columnDescLength.

UI Changes

Column Type Truncation (#297)

For column type strings that represent nested types and start with either array, map, or struct, these strings will be truncated and the full type is available upon hover.

image

Bug Fixes

Removed use of Flask's render_template for generating feedback emails (#293)

We've experienced the feedback feature failing intermittently when running Amundsen with gunicorn. The failure occurred when render_template() was called. We have moved away from user render_template() to generate the feedback email content.

Fixed error handling of preview request failures (#283)

Our previous support of handling errors from preview request failures contained a bug that did not account for the fact that e.response.data for an AxiosError can be type any.