Skip to content

Commit 45b77ef

Browse files
committed
Merge branch 'main' of github.com:HTTPArchive/almanac.httparchive.org into production
2 parents 2d1e57d + d9a6b6c commit 45b77ef

File tree

82 files changed

+1926
-448
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1926
-448
lines changed

.github/workflows/lintsql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
lint:
1313
name: Lint SQL
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Code
1717
uses: actions/checkout@v4

sql/2020/third-parties/top100_third_parties_by_number_of_websites.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ base AS (
3636
canonicalDomain
3737
)
3838

39-
4039
SELECT
4140
canonicalDomain,
4241
total_pages,

sql/2021/privacy/most_common_featurepolicy_permissionspolicy_directive_values.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ normalized_permissions_policy AS ( -- normalize
124124
merged_permissions_policy
125125
)
126126

127-
128127
SELECT
129128
client,
130129
rank_grouping,

sql/2021/privacy/number_of_websites_with_origin_trial_from_token.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ extracted_origin_trials_from_headers_and_meta_tags AS (
212212
tag_name = 'origin-trial'
213213
)
214214
215-
216215
SELECT
217216
client,
218217
COALESCE(origin_trials_from_custom_metric.featureElem, origin_trials_from_headers_and_meta_tags.featureElem) AS featureElem,

sql/2021/seo/pages-canonical-stats.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ try {
114114
''';
115115
116116
117-
118117
SELECT
119118
client,
120119
COUNT(0) AS total,

sql/2022/css/all_functions.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ WITH totals AS (
4343
client
4444
)
4545

46-
4746
SELECT
4847
*
4948
FROM (

sql/2022/css/layer.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ WITH layers AS (
1414
type = 'css'
1515
)
1616

17-
1817
SELECT
1918
client,
2019
COUNT(DISTINCT IF(has_layer, page, NULL)) AS pages,

sql/2022/css/lcp_initiator_type.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ requests AS (
2020
date = '2022-06-01'
2121
)
2222

23-
2423
SELECT
2524
client,
2625
type AS lcp_initiator_type,

sql/2022/css/print_page_pseudo_classes.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ WITH totals AS (
5252
client
5353
)
5454

55-
5655
SELECT
5756
client,
5857
pseudo_class,

sql/2022/css/print_stylesheet_adoption.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ WITH print AS (
1818
`httparchive.pages.2022_07_01_*` -- noqa: CV09
1919
)
2020

21-
2221
SELECT
2322
client,
2423
COUNTIF(has_print_stylesheet) AS pages,

0 commit comments

Comments
 (0)