Skip to content

Commit d375e37

Browse files
committed
fix(dbt-cloud-sync): Support null git_provider_id
1 parent 0143ac1 commit d375e37

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Changelog
55
Next
66
====
77

8+
Version 0.2.4 - 2023-07-20
9+
==========================
10+
11+
- Further adjustments to dbt marshmallow schemas to avoid integration errors (`#228 <https://github.com/preset-io/backend-sdk/pull/228>_`).
12+
- Export RLS rules is now compatible with Preset Cloud and older Superset installations (`#227 <https://github.com/preset-io/backend-sdk/pull/227>_`)
13+
814
Version 0.2.3 - 2023-07-14
915
==========================
1016

src/preset_cli/api/clients/dbt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class RepositorySchema(PostelSchema):
375375
gitlab = fields.String(allow_none=True)
376376
name = fields.String()
377377
pull_request_url_template = fields.String(allow_none=True)
378-
git_provider_id = fields.Integer()
378+
git_provider_id = fields.Integer(allow_none=True)
379379
git_provider = fields.String(allow_none=True)
380380
project_id = fields.Integer()
381381
deploy_key = fields.Nested(DeployKeySchema)

0 commit comments

Comments
 (0)