Skip to content

Commit 0107370

Browse files
Merge branch 'main' into western-wombat
2 parents efb6508 + b88d11e commit 0107370

File tree

10 files changed

+131
-139
lines changed

10 files changed

+131
-139
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ updates:
33
- package-ecosystem: "npm"
44
directory: "/src/"
55
schedule:
6-
interval: "daily"
6+
interval: "monthly"
77
ignore:
88
- dependency-name: "prettier"
99
update-types: ["version-update:semver-patch"]
1010
- package-ecosystem: "pip"
1111
directory: "/src/"
1212
schedule:
13-
interval: "daily"
13+
interval: "monthly"
1414
- package-ecosystem: "github-actions"
1515
directory: "/"
1616
schedule:
17-
interval: "daily"
17+
interval: "monthly"

.github/workflows/add-to-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
if: github.repository == 'HTTPArchive/almanac.httparchive.org'
1717
steps:
1818
- name: Update release notes
19-
uses: release-drafter/release-drafter@v6.4.0
19+
uses: release-drafter/release-drafter@v7.1.1
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.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

sql/util/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pandas==2.3.3
22
google-cloud-bigquery==3.40.0
33
google-api-python-client==2.188.0
44
google-auth==2.47.0
5-
requests==2.32.5
5+
requests==2.33.0
66
tabulate==0.9.0
77
gspread==6.2.1
88
gspread-dataframe==4.0.0

src/content/en/2025/performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ The Chrome team [recommends avoiding `unload`](https://developer.chrome.com/docs
444444
)
445445
}}
446446

447-
It is interesting to see that unload handler usage decreases consistently as the site rank increases. Among higher-traffic websites (top 1,000 sites), unload handlers are present on 28% of desktop pages and 20% of mobile pages, and this share declines steadily across lower-ranked sites, reaching 11% on desktop and 10% on mobile. At every rank, desktop pages exhibit higher unload handler usage than mobile, suggesting that unload handlers remain more common on larger, more complex sites than across the long tail of the web. Possibly due to top sites relying more heavily on analytics, advertising, and legacy lifecycle patterns that register unload handlers.
447+
It is interesting to see that unload handler usage decreases consistently as site popularity decreases. Among higher-traffic websites (top 1,000 sites), unload handlers are present on 28% of desktop pages and 20% of mobile pages, and this share declines steadily across lower-ranked sites, reaching 11% on desktop and 10% on mobile. At every rank, desktop pages exhibit higher unload handler usage than mobile, suggesting that unload handlers remain more common on larger, more complex sites than across the long tail of the web. Possibly due to top sites relying more heavily on analytics, advertising, and legacy lifecycle patterns that register unload handlers.
448448

449449
Another common reason for websites to fall in the bfcache ineligibility category is the use of the `Cache-Control: no-store` directive. This cache control header instructs the browser (and any intermediate caches) not to store a copy of the resource, ensuring that the content is fetched from the server on every request.
450450

0 commit comments

Comments
 (0)