-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bumping manifest schema to v5 #5032
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the contributing guide. |
@@ -1819,7 +1819,7 @@ def verify_manifest(self, expected_manifest): | |||
elif key == 'metadata': | |||
metadata = manifest['metadata'] | |||
self.verify_metadata( | |||
metadata, 'https://schemas.getdbt.com/dbt/manifest/v4.json') | |||
metadata, 'https://schemas.getdbt.com/dbt/manifest/v5.json') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI until we migrate 029_docs_generate_tests
to use the new framework, move it into the "adapter zone," and inherit/use it within our adapter plugins, this will cause test failures in our plugin repos:
- https://github.com/dbt-labs/dbt-redshift/blob/main/tests/integration/docs_generate_tests/test_docs_generate.py
- https://github.com/dbt-labs/dbt-snowflake/blob/main/tests/integration/docs_generate_tests/test_docs_generate.py
- https://github.com/dbt-labs/dbt-bigquery/blob/main/tests/integration/docs_generate_tests/test_docs_generate.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll work on converting those tests today.
* Bumping manifest schema to v5 * Adding changelog
* Bumping manifest schema to v5 * Adding changelog
Description
Bumping manifest schema for the v1.1 release
Corresponding schema change: dbt-labs/schemas.getdbt.com#12
Checklist