-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[components] Move dagster_components.lib components to top-level #28092
[components] Move dagster_components.lib components to top-level #28092
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
@@ -1,4 +1,4 @@ | |||
type: dagster_components.lib.DbtProjectComponent | |||
type: dagster_components..DbtProjectComponent |
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.
There appears to be a duplicate period in the component type path dagster_components..DbtProjectComponent
. This should be dagster_components.DbtProjectComponent
. This typo appears in several test files and should be fixed to maintain consistency with the new import structure.
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
Deploy preview for dagster-docs ready! Preview available at https://dagster-docs-i5tjhbbss-elementl.vercel.app Direct link to changed pages: |
058cacc
to
5d21704
Compare
2284e30
to
0becc96
Compare
751a83c
to
ed36797
Compare
0becc96
to
bb0f1bf
Compare
ed36797
to
bc8a72f
Compare
1e06ab0
to
56af59b
Compare
eede618
to
113227b
Compare
56af59b
to
01cfc9c
Compare
113227b
to
9b4cbb6
Compare
9b4cbb6
to
1291ed3
Compare
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.
General agreement in slack
bce7e33
to
c51ba3a
Compare
c51ba3a
to
7bbe1e2
Compare
Summary & Motivation
Breaks up the public
dagster_components
entry point into three library-specific entry points. Names have changed as follows:dagster_components.PipesSubprocessScriptCollectionComponent
->dagster_components.dagster.PipesSubprocessScriptCollectionComponent
dagster_components.DefinitionsComponent
->dagster_components.dagster.DefinitionsComponent
dagster_components.DbtProjectComponent
->dagster_components.dagster_dbt.DbtProjectComponent
dagster_components.SlingReplicationCollectionComponent
->dagster_components.dagster_sling.SlingReplicationCollectionComponent
How I Tested These Changes
Existing test suite.