-
Notifications
You must be signed in to change notification settings - Fork 214
Fix package-lock.yml format, remove dbt-vertica from all extra, add release validation #2159
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
Merged
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
618242a
Fix package-lock.yml format for dbt 1.8+ and remove restrictive adapt…
devin-ai-integration[bot] 508df9b
Add release validation: reject package-lock.yml with deprecated 'name…
devin-ai-integration[bot] 4ae5405
Revert lock file and release validation changes
devin-ai-integration[bot] 7b75a98
Fix package-lock.yml and release validation wording
devin-ai-integration[bot] f76efd8
Add dbt-clickhouse and dbt-sqlserver back to all extra
devin-ai-integration[bot] a9e2d8d
Add comments explaining why fabricspark and vertica are excluded from…
devin-ai-integration[bot] 71fe2fb
Bump version to 0.23.1
devin-ai-integration[bot] 4e2cb13
Add pre-commit hook to auto-strip 'name' fields from package-lock.yml
devin-ai-integration[bot] 36d08be
Remove release validation for package-lock.yml name fields
devin-ai-integration[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,6 @@ | ||
| packages: | ||
| - name: dbt_utils | ||
| package: dbt-labs/dbt_utils | ||
| - package: dbt-labs/dbt_utils | ||
| version: 0.8.6 | ||
| - name: elementary | ||
| package: elementary-data/elementary | ||
| - package: elementary-data/elementary | ||
| version: 0.23.0 | ||
| sha1_hash: 0edc67beba193ced6784779894083b5af00f73ec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Actually - rethinking this - maybe it's good to add this as a pre-commit step that also fixes this. WDYT?
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.
Good idea — a pre-commit hook that auto-strips the
namefields would catch this earlier and fix it automatically instead of just failing. I'll add it as a pre-commit hook and keep the release validation as a safety net.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 think we can also remove the release validation, not sure it's a must
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.
Done — removed the release validation step. The pre-commit hook now handles it by auto-stripping the
namefields.