Skip to content

Commit 95143fd

Browse files
max-ostapenkoGCP Dataform
authored andcommitted
Merge branch 'main' into main
2 parents 4f76910 + 3179f82 commit 95143fd

8 files changed

Lines changed: 43 additions & 43 deletions

File tree

definitions/output/reports/tech_report_categories.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ technology_stats AS (
7171
SELECT
7272
technology,
7373
category_obj AS categories,
74-
SUM(origins.mobile + origins.desktop) AS total_origins
74+
origins.mobile AS mobile_origins
7575
FROM ${ctx.ref('reports', 'tech_report_technologies')}
7676
GROUP BY
7777
technology,
@@ -82,7 +82,7 @@ SELECT
8282
category,
8383
description,
8484
origins,
85-
ARRAY_AGG(technology IGNORE NULLS ORDER BY technology_stats.total_origins DESC) AS technologies
85+
ARRAY_AGG(technology IGNORE NULLS ORDER BY technology_stats.mobile_origins DESC) AS technologies
8686
FROM category_stats
8787
INNER JOIN technology_stats
8888
ON category_stats.category IN UNNEST(technology_stats.categories)

infra/bigquery-export/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/bigquery-export/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"type": "module",
1010
"dependencies": {
11-
"@google-cloud/bigquery": "8.0.0",
11+
"@google-cloud/bigquery": "8.1.0",
1212
"@google-cloud/firestore": "7.11.1",
1313
"@google-cloud/storage": "7.16.0"
1414
},

infra/dataform-trigger/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/dataform-trigger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "@max-ostapenko",
55
"main": "index.js",
66
"dependencies": {
7-
"@google-cloud/bigquery": "8.0.0",
7+
"@google-cloud/bigquery": "8.1.0",
88
"@google-cloud/dataform": "2.1.0",
99
"@google-cloud/functions-framework": "4.0.0"
1010
},

infra/tf/.terraform.lock.hcl

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "crawl-data",
33
"author": "@max-ostapenko",
44
"dependencies": {
5-
"@dataform/core": "3.0.21"
5+
"@dataform/core": "3.0.22"
66
},
77
"scripts": {
88
"format": "npx standard --fix; npx markdownlint --ignore-path .gitignore --config package.json --configPointer /markdownlint . --fix; terraform -chdir=infra/tf fmt -recursive",

0 commit comments

Comments
 (0)