Skip to content

Commit

Permalink
rebuild manifest missed fields (#8755)
Browse files Browse the repository at this point in the history
* rebuild manifest missed fields

* changelogs
  • Loading branch information
emmyoop authored and QMalcolm committed Oct 6, 2023
1 parent 83e72c2 commit 4911b78
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .changes/unreleased/Features-20230914-074429.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ body: Add support for optional label in semantic_models, measures, dimensions an
time: 2023-09-14T07:44:29.828199-05:00
custom:
Author: emmyoop
Issue: "8595"
Issue: 8595 8755
4 changes: 2 additions & 2 deletions .changes/unreleased/Features-20230922-150754.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ kind: Features
body: Support `fill_nulls_with` and `join_to_timespine` for metric nodes
time: 2023-09-22T15:07:54.981752-07:00
custom:
Author: QMalcolm
Issue: "8593"
Author: QMalcolm emmyoop
Issue: 8593 8755
59 changes: 59 additions & 0 deletions schemas/dbt/manifest/v11.json
Original file line number Diff line number Diff line change
Expand Up @@ -4610,6 +4610,21 @@
}
],
"default": null
},
"join_to_timespine": {
"type": "boolean",
"default": false
},
"fill_nulls_with": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -5137,6 +5152,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"role": {
"anyOf": [
{
Expand Down Expand Up @@ -5257,6 +5283,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"create_metric": {
"type": "boolean",
"default": false
Expand Down Expand Up @@ -5381,6 +5418,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"is_partition": {
"type": "boolean",
"default": false
Expand Down Expand Up @@ -5521,6 +5569,17 @@
],
"default": null
},
"label": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"defaults": {
"anyOf": [
{
Expand Down

0 comments on commit 4911b78

Please sign in to comment.