-
Notifications
You must be signed in to change notification settings - Fork 115
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
Switch C# codegen to schema #1132
Conversation
sdk/dotnet/AdmissionRegistration/V1/Inputs/MutatingWebhookConfigurationArgs.cs
Show resolved
Hide resolved
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.
LGTM, but @lukehoban may also want to take a look.
CHANGELOG.md
Outdated
@@ -1,5 +1,15 @@ | |||
## HEAD (Unreleased) | |||
|
|||
### Improvements | |||
|
|||
- .NET SDK refactored to align with other .NET SDKs, e.g. ones based on Terraform. (https://github.com/pulumi/pulumi-kubernetes/pull/1132) |
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.
- .NET SDK refactored to align with other .NET SDKs, e.g. ones based on Terraform. (https://github.com/pulumi/pulumi-kubernetes/pull/1132) | |
- .NET SDK updated to align with other Pulumi .NET SDKs. (https://github.com/pulumi/pulumi-kubernetes/pull/1132) |
CHANGELOG.md
Outdated
### Improvements | ||
|
||
- .NET SDK refactored to align with other .NET SDKs, e.g. ones based on Terraform. (https://github.com/pulumi/pulumi-kubernetes/pull/1132) | ||
- Older resources are marked as obsolete in accordance to SDKs for other languages. |
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.
- Older resources are marked as obsolete in accordance to SDKs for other languages. | |
- Deprecated resources are now marked as `Obsolete`. |
CHANGELOG.md
Outdated
|
||
- .NET SDK refactored to align with other .NET SDKs, e.g. ones based on Terraform. (https://github.com/pulumi/pulumi-kubernetes/pull/1132) | ||
- Older resources are marked as obsolete in accordance to SDKs for other languages. | ||
- Many classes are moved to new locations while preserving the namespaces and API. |
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.
- Many classes are moved to new locations while preserving the namespaces and API. | |
- Many classes are moved to new locations on disk while preserving the public namespaces and API. |
tests/go.mod
Outdated
github.com/pulumi/pulumi/pkg/v2 v2.2.2-0.20200514204320-e677c7d6dca3 | ||
github.com/pulumi/pulumi/sdk/v2 v2.2.2-0.20200514204320-e677c7d6dca3 | ||
github.com/pulumi/pulumi/pkg/v2 v2.2.2-0.20200519094106-adfa8116fbf6 | ||
github.com/pulumi/pulumi/sdk/v2 v2.2.2-0.20200519094106-adfa8116fbf6 |
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.
Minor - but can we move to a stable version of pulumi/pulumi
now?
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.
Yes, I will rebase, depend on stable, and resolve conflicts tomorrow
1bf9a72
to
5ed063a
Compare
Proposed changes
Switch the generation of the .NET SDK to schema-based one (except for the YAML overlay)
Related issues (optional)
Fixes #1084