-
Notifications
You must be signed in to change notification settings - Fork 59
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
Pin to 2.1.1 and below to fix the cursor error. #844
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 dbt-redshift contributing guide. |
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 dbt-redshift contributing guide. |
@@ -64,7 +64,7 @@ def _plugin_version_trim() -> str: | |||
f"dbt-postgres~={_plugin_version_trim()}", | |||
# dbt-redshift depends deeply on this package. it does not follow SemVer, therefore there have been breaking changes in previous patch releases | |||
# Pin to the patch or minor version, and bump in each new minor version of dbt-redshift. | |||
"redshift-connector<2.0.918,>=2.0.913,!=2.0.914", | |||
"redshift-connector<2.1.1,>=2.0.913,!=2.0.914", |
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.
Is there a reason to pin less than a specific patch? I know we've been broken in the past, but if this package is indicating that they're going to start using minors, then I would think we pin to 2.1, not 2.1.x.
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.
we should follow up with them and see if that's actually what's happening here or if they just decided to do a minor version bump
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 left a comment, but I'm fine with the PR either way.
Problem
We want to fold in the fix from this patched issue on redshift connector.
Solution
Up the pin. soft pinned since either patch version in
2.1
should workChecklist