From cf3959765493ad84873dd27b2d05538721369889 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:59:53 -0400 Subject: [PATCH] Bump sqlfluff from 2.3.5 to 3.0.2 (#343) * Bump sqlfluff from 2.3.5 to 3.0.2 Bumps [sqlfluff](https://github.com/sqlfluff/sqlfluff) from 2.3.5 to 3.0.2. - [Release notes](https://github.com/sqlfluff/sqlfluff/releases) - [Changelog](https://github.com/sqlfluff/sqlfluff/blob/main/CHANGELOG.md) - [Commits](https://github.com/sqlfluff/sqlfluff/compare/2.3.5...3.0.2) --- updated-dependencies: - dependency-name: sqlfluff dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * edit html template for fluff 3.x --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nolan Conaway --- requirements.txt | 2 +- src/app/templates/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index aeec703..8425282 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -sqlfluff==2.3.5 +sqlfluff==3.0.2 Flask==3.0.2 Flask_Limiter==3.5.1 flask-talisman==1.1.0 diff --git a/src/app/templates/index.html b/src/app/templates/index.html index 1196352..0a46c71 100644 --- a/src/app/templates/index.html +++ b/src/app/templates/index.html @@ -52,7 +52,7 @@

SQLFluff's Fixed SQL

{% for violation in lint_errors %} {{violation['code']}} - {{violation['line_no']}} / {{violation['line_pos']}} + {{violation['start_line_no']}} / {{violation['start_line_pos']}}
{{violation['description'].replace('\\n','\n')}}
{% endfor %}