Skip to content

Commit

Permalink
Bump sqlfluff from 2.3.5 to 3.0.2 (#343)
Browse files Browse the repository at this point in the history
* 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](sqlfluff/sqlfluff@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] <[email protected]>

* edit html template for fluff 3.x

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nolan Conaway <[email protected]>
  • Loading branch information
dependabot[bot] and nolanbconaway authored Mar 18, 2024
1 parent bf08fb9 commit cf39597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/app/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h2>SQLFluff's Fixed SQL</h2>
{% for violation in lint_errors %}
<tr>
<th scope="row">{{violation['code']}}</th>
<td>{{violation['line_no']}} / {{violation['line_pos']}}</td>
<td>{{violation['start_line_no']}} / {{violation['start_line_pos']}}</td>
<td><pre>{{violation['description'].replace('\\n','\n')}}</pre></td>
</tr>
{% endfor %}
Expand Down

0 comments on commit cf39597

Please sign in to comment.