Skip to content

Commit

Permalink
Add Change note for Nov 2020 Update (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
czgu committed Dec 1, 2020
1 parent 4f052e2 commit 3b1c558
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 3 deletions.
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

0 comments on commit 3b1c558

Please sign in to comment.