Improvements
- NodeJS SDK updated to align with other Pulumi NodeJS SDKs. (https://github.com/pulumi/pulumi-kubernetes/pull/1151)
- .NET SDK updated to align with other Pulumi .NET SDKs. (https://github.com/pulumi/pulumi-kubernetes/pull/1132)
- Deprecated resources are now marked as `Obsolete`.
- Many classes are moved to new locations on disk while preserving the public namespaces and API.
- Several unused argument/output classes were removed without any impact on resources (e.g. `DeploymentRollbackArgs`).
- Fixed the type of some properties in `JSONSchemaPropsArgs` (there's no need to have 2nd-level inputs there):
- `InputList<InputJson>` -> `InputList<JsonElement>`
- `InputMap<Union<TArgs, InputList<string>>>` -> `InputMap<Union<TArgs, ImmutableArray<string>>>`
Bug Fixes
- Fix incorrect schema consts for apiVersion and kind (https://github.com/pulumi/pulumi-kubernetes/pull/1153)