Skip to content

Commit 0326b59

Browse files
authored
chore: bump version to 1.5.0 (#537)
1 parent 241e163 commit 0326b59

File tree

4 files changed

+38
-4
lines changed

4 files changed

+38
-4
lines changed

docs/release_note/changelog.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22
Changelog
33
*********
44

5+
v1.5.0
6+
======
7+
:Date: January 7, 2024
8+
9+
Great thanks to liznzn for contributing on MetaData-awareness lineage. Now we're able to generate more accurate
10+
column lineage result for `select *` or select unqualified columns in case of table join through a unified
11+
MetaDataProvider interface.
12+
13+
Also a breaking change is made to make ansi the default dialect in v1.5.x release as we target ultimately deprecating
14+
non-validating dialect in v1.6.x release.
15+
16+
Breaking Change
17+
---------------
18+
* Make ansi the Default Dialect (`#518 <https://github.com/reata/sqllineage/issues/518>`_)
19+
20+
Feature
21+
-------------
22+
* Metadata Provider to Assist Column Lineage Analysis (`#477 <https://github.com/reata/sqllineage/issues/302>`_)
23+
24+
Enhancement
25+
-------------
26+
* Add a Configuration for Default Schema (`#523 <https://github.com/reata/sqllineage/issues/523>`_)
27+
* Silent Mode Option to Suppress UnsupportedStatementException (`#513 <https://github.com/reata/sqllineage/issues/513>`_)
28+
* Support Lateral Column Alias Reference Analyzing (`#507 <https://github.com/reata/sqllineage/issues/507>`_)
29+
* Skip Lineage Analysis for SparkSQL Function Related Statement (`#500 <https://github.com/reata/sqllineage/issues/500>`_)
30+
* update statement column lineage (`#487 <https://github.com/reata/sqllineage/issues/487>`_)
31+
32+
Bugfix
33+
-------------
34+
* subquery mistake alias as table name in visualization (`#512 <https://github.com/reata/sqllineage/issues/512>`_)
35+
* InvalidSyntaxException When SQL Statement Ends with Multiple Semicolons (`#502 <https://github.com/reata/sqllineage/issues/502>`_)
36+
* Misidentify Binary Operator * As Wildcard (`#485 <https://github.com/reata/sqllineage/issues/485>`_)
37+
* adding type cast operator produces different results for redshift dialect (`#455 <https://github.com/reata/sqllineage/issues/455>`_)
38+
539
v1.4.9
640
======
741
:Date: December 10, 2023

sqllineage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = "sqllineage"
2-
VERSION = "1.4.9"
2+
VERSION = "1.5.0"
33
DEFAULT_LOGGING = {
44
"version": 1,
55
"disable_existing_loggers": False,

sqllineagejs/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sqllineagejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqllineagejs",
3-
"version": "1.4.9",
3+
"version": "1.5.0",
44
"private": true,
55
"dependencies": {
66
"@material-ui/core": "^4.11.2",

0 commit comments

Comments
 (0)