Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit ffbae84

Browse files
authored
Support manifest v8 (#61)
1 parent c22c6d1 commit ffbae84

File tree

34 files changed

+18232
-8
lines changed

34 files changed

+18232
-8
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT_ID = YOUR-GCP-PROJECT
2-
TAG = v1.6.0-dev3
2+
TAG = v1.7.0-dev1
33
DOCKER_IMAGE_BASE = gcr.io/$(PROJECT_ID)/dbt-artifacts-loader
44

55

@@ -34,3 +34,9 @@ run-docker:
3434

3535
push-docker:
3636
docker push "$(DOCKER_IMAGE_BASE):$(TAG)"
37+
38+
generate-models:
39+
bash dev/generate-artifacts-models.sh
40+
41+
generate-bq-schemas:
42+
bash dev/generate-bigquery-schemas.sh

dbt_artifacts_loader/api/rest_api_v2.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ def is_available(artifact_type: ArtifactsTypes):
9292
ArtifactsTypes.MANIFEST_V6,
9393
# v7
9494
ArtifactsTypes.MANIFEST_V7,
95+
# v8
96+
ArtifactsTypes.MANIFEST_V8,
9597
]
9698
if artifact_type in available_artifact_types:
9799
return True
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#

0 commit comments

Comments
 (0)