Skip to content

Commit 1099327

Browse files
authored
chore: bump version to 1.4.8 (#471)
1 parent 3aa0a07 commit 1099327

File tree

5 files changed

+64
-31
lines changed

5 files changed

+64
-31
lines changed

docs/release_note/changelog.rst

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

5+
v1.4.8
6+
======
7+
:Date: October 16, 2023
8+
9+
Enhancement
10+
-------------
11+
* Support Python 3.12 (`#469 <https://github.com/reata/sqllineage/issues/469>`_)
12+
* programmatically list supported dialects (`#462 <https://github.com/reata/sqllineage/issues/462>`_)
13+
* add versioning of package to cli (`#457 <https://github.com/reata/sqllineage/issues/457>`_)
14+
* Add Support of DROP VIEW statements (`#456 <https://github.com/reata/sqllineage/issues/456>`_)
15+
* support split SQL statements without semicolon in tsql (`#384 <https://github.com/reata/sqllineage/issues/384>`_)
16+
17+
Bugfix
18+
-------------
19+
* SqlFluff RuntimeError Triggers Server Error 500 in Frontend (`#467 <https://github.com/reata/sqllineage/issues/467>`_)
20+
* ignore lineage for analyze statement (`#459 <https://github.com/reata/sqllineage/issues/459>`_)
21+
522
v1.4.7
623
======
724
:Date: August 27, 2023

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run(self) -> None:
6868
install_requires=[
6969
"sqlparse>=0.4.4",
7070
"networkx>=2.4",
71-
"sqlfluff==2.3.2",
71+
"sqlfluff==2.3.3",
7272
],
7373
entry_points={"console_scripts": ["sqllineage = sqllineage.cli:main"]},
7474
extras_require={

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.7"
2+
VERSION = "1.4.8"
33
DEFAULT_LOGGING = {
44
"version": 1,
55
"disable_existing_loggers": False,

sqllineagejs/package-lock.json

Lines changed: 44 additions & 28 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.7",
3+
"version": "1.4.8",
44
"private": true,
55
"dependencies": {
66
"@material-ui/core": "^4.11.2",

0 commit comments

Comments
 (0)