Skip to content

Commit b88d11e

Browse files
Bump sqlfluff from 4.0.4 to 4.1.0 in /src (#4448)
* Bump sqlfluff from 4.0.4 to 4.1.0 in /src Bumps [sqlfluff](https://github.com/sqlfluff/sqlfluff) from 4.0.4 to 4.1.0. - [Release notes](https://github.com/sqlfluff/sqlfluff/releases) - [Changelog](https://github.com/sqlfluff/sqlfluff/blob/main/CHANGELOG.md) - [Commits](sqlfluff/sqlfluff@4.0.4...4.1.0) --- updated-dependencies: - dependency-name: sqlfluff dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update sqlfluff configuration: set max_parse_depth to 1000 and rename allow_implicit_indents to implicit_indents * Update GitHub Actions to use AUTO_MERGE_PAT for token authentication --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com>
1 parent 0761422 commit b88d11e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/lintsql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ jobs:
6666
run: gh pr merge --admin --squash "$PR_URL"
6767
env:
6868
PR_URL: ${{github.event.pull_request.html_url}}
69-
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
69+
GH_TOKEN: ${{secrets.AUTO_MERGE_PAT}}

.github/workflows/test_website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ jobs:
9898
run: gh pr merge --squash --auto "$PR_URL"
9999
env:
100100
PR_URL: ${{github.event.pull_request.html_url}}
101-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
101+
GITHUB_TOKEN: ${{ secrets.AUTO_MERGE_PAT }}

sql/.sqlfluff

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ exclude_rules = AL01,AL04,AL07,AL09,AM03,AM05,AM08,CP02,CP03,CV02,CV12,LT05,LT09
2929
# ST11 - Doesn't consider wildcards in SELECT. Issue: https://github.com/sqlfluff/sqlfluff/issues/6511
3030

3131
large_file_skip_byte_limit = 1120000
32+
max_parse_depth = 1000
3233
# CPU processes to use while linting.
3334
# If positive, just implies number of processes.
3435
# If negative or zero, implies number_of_cpus - specifed_number.
@@ -39,7 +40,7 @@ processes = -1
3940
# See https://docs.sqlfluff.com/en/stable/layout.html#configuring-indent-locations
4041
indented_using_on = False
4142
tab_space_size = 2
42-
allow_implicit_indents = True
43+
implicit_indents = allow
4344

4445
[sqlfluff:layout:type:binary_operator]
4546
line_position = trailing

src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ gunicorn==25.3.0
44
pytest==9.0.2
55
pytest-watch==4.2.0
66
pytest-cov==7.1.0
7-
sqlfluff==4.0.4
7+
sqlfluff==4.1.0

0 commit comments

Comments
 (0)