Skip to content
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

Add Change note for Nov 2020 Update #328

Merged
merged 3 commits into from
Dec 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ celerybeat.pid

# ignore for testing/custom settings
**/node_modules
node_modules
.vscode/*
*.pyc
.vscode.env
Expand Down
2 changes: 1 addition & 1 deletion datahub/server/lib/change_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_change_log_list(limit=None, date_after=None):

change_logs_list = []
for change_log in islice(change_logs, 0, limit):
if date_after is not None and change_log["date"] < date_after:
if date_after is not None and change_log["date"] <= date_after:
break
change_logs_list.append(change_log)
return change_logs_list
Expand Down
1 change: 0 additions & 1 deletion docs/changelog/2020-05-27.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
id: may_2020_2_3_0
title: May 2020 (version 2.3.0)
sidebar_label: May 2020 (2.3.0)
slug: /changelog
---

Welcome to the second release of DataHub this year 🎉.
Expand Down
33 changes: 33 additions & 0 deletions docs/changelog/2020-11-30.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
id: nov_2020_2_4_2
title: Nov 2020 (version 2.4.2)
sidebar_label: Nov 2020 (2.4.2)
slug: /changelog
---

Welcome to the last release of DataHub for 2020.

_DataHub 2.4_ builds on top of the previous version by further polishing the user experience and doubling down on features for data quality.

### Main Features

- **Smart Columns!** Convert image_signatures to images, format numbers to dollars, links to sites, and more with a single click!
- **Sidebar 2.0!** A new much more powerful sidebar with lists, recent, and favorites all in a single view, with drag and drop support.
- **Table Tags!** You can now easily add tags to tables and retrieve all tables with a certain tag through search.
- **GDoc Style Access Requests!** You can now request and grant access to any given DataDoc directly in the UI.
- **Table Stats!** Add customized table stats such as daily query run to enrich your table's metadata.
- **Column Search!** Narrow down your search to only columns, descriptions, or table names.
- **Sample Queries!** Quickly see sample queries of a given table to kickstart your analysis.
- **Table Warnings!** Found a table with incorrect data? Easily add table warnings and errors that will then show up in the query editor.
- **Frequent query users!** See at a glance the top users of a given table and reach out to them for questions and doubts.
- **Table Ownership Editing!** With a single click you can add yourself as the owner of a table.

### Opensource Friendly Features

- Revamped the documentation site
- Added Snowflake integration
- Home page view can now be customized via the web plugin
- Table search/autosuggest ranking can now be altered by boost score

DataHub Team<br/>
🚀
6 changes: 5 additions & 1 deletion docs_website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
"developer_guide/add_notifier",
"developer_guide/add_query_result_transform"
],
"Changelog": ["changelog/may_2020_2_3_0", "changelog/jan_2020_2_1_0"],
"Changelog": [
"changelog/nov_2020_2_4_2",
"changelog/may_2020_2_3_0",
"changelog/jan_2020_2_1_0"
],
"Contributing": ["contributing/overview"],
"User Guide": ["user_guide/api_token"]
}
Expand Down