You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API: add support for the following parameters in the SearchDao#2556@tati@wslulciuc This PR updates the search endpoint to enforce YYYY-MM-DD for query params, use YYYY-MM-DD as LocalDate, and support the following query params:
namespace - matches jobs or datasets within the given namespace.
before - matches jobs or datasets before YYYY-MM-DD.
after - matches jobs or datasets after YYYY-MM-DD.
Web: add paging on jobs and datasets #2614@phixme Adds paging to jobs and datasets just like we already have on the lineage events page.
Web: add tag descriptions to tooltips #2612@davidsharp7 Get the tag descriptions from the tags endpoint and when a column has a tag display the corresponding description on hover over. Context can be found here.
Web: add available column-level tags #2606@davidsharp7 Adds a new column called "tags" to the dataset column view along with the tags associated with the dataset column.
Web: add HTML Tool Tip #2601@davidsharp7 Adds a Tool Tip to display basic node details.
Fixed
Web: fix dataset saga for paging #2615@phixme Updates the saga, changes the default page size.
API: perf/improve jobdao query #2609@algorithmy1 Optimizes the query to make use of Common Table Expressions to fetch the required data more efficiently and before the join, fixing a significant bottleneck.
Changed
Docker: Postgres 14#2607@wslulciuc Bumps the recommended version of Postgres to 14. When deploying locally, you might need to run ./docker/down.sh to clean existing volumes.
Removed
Client: tolerate null transformation attrs in field model #2600@davidjgoss Removes the @NonNull annotation from the client class and the @NotNull from the model class.