-
Notifications
You must be signed in to change notification settings - Fork 8
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
Do not depend on specific sdk #1425
Conversation
@@ -269,9 +264,7 @@ func Provider() tfbridge.ProviderInfo { | |||
}, | |||
CSharp: &tfbridge.CSharpInfo{ | |||
RespectSchemaVersion: true, | |||
PackageReferences: map[string]string{ |
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.
Suspiciously python SDK didn't get changed, possibly still OK?
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 it probably should have changed the pyproject.toml. The version ranges currently there match what was set in the schema
dependencies = ["parver>=0.2.1", "pulumi>=3.0.0,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11; python_version < \"3.11\""] |
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.
Naively, I expected
dependencies = ["parver>=0.2.1", "pulumi>=3.0.0,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11; python_version < \"3.11\""] |
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.
Per Justin this is polyfilled as a default in Python; once we upgrade codegen this will change. So OK for now.
Does the PR have any schema changes?Looking good! No breaking changes found. Maintainer note: consult the runbook for dealing with any breaking changes. |
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.
Looks correct for the 1.133.0 version of codegen used by bridged repos
Requires: map[string]string{ | ||
"pulumi": ">=3.0.0,<4.0.0", | ||
}, |
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.
Nit: It shouldn't matter, but in some cases you're deleting the whole line like here, and in other cases you're leaving an empty map.
This PR has been shipped in release v5.53.5. |
Re: pulumi/ci-mgmt#1091