-
Notifications
You must be signed in to change notification settings - Fork 117
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
Relax PyYaml dependency #1768
Relax PyYaml dependency #1768
Conversation
Does the PR have any schema changes?Looking good! No breaking changes found. |
1 similar comment
Does the PR have any schema changes?Looking good! No breaking changes found. |
Heh looks like it's generated code? |
Does the PR have any schema changes?Looking good! No breaking changes found. |
I know 🤦🏾♂️... Fixed! |
@@ -45648,7 +45648,7 @@ | |||
"readme": "The Kubernetes provider package offers support for all Kubernetes resources and their properties.\nResources are exposed as types from modules based on Kubernetes API groups such as 'apps', 'core',\n'rbac', and 'storage', among many others. Additionally, support for deploying Helm charts ('helm')\nand YAML files ('yaml') is available in this package. Using this package allows you to\nprogrammatically declare instances of any Kubernetes resources and any supported resource version\nusing infrastructure as code, which Pulumi then uses to drive the Kubernetes API.\n\nIf this is your first time using this package, these two resources may be helpful:\n\n* [Kubernetes Getting Started Guide](https://www.pulumi.com/docs/quickstart/kubernetes/): Get up and running quickly.\n* [Kubernetes Pulumi Setup Documentation](https://www.pulumi.com/docs/quickstart/kubernetes/configure/): How to configure Pulumi\n for use with your Kubernetes cluster.\n", | |||
"requires": { | |||
"pulumi": "\u003e=3.0.0,\u003c4.0.0", | |||
"pyyaml": "\u003e=5.3.1,\u003c6.0", | |||
"pyyaml": "\u003e=5.3.1", |
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.
btw, this happens because we don't use encoder.SetEscapeHTML(false)
.
https://pkg.go.dev/encoding/json#Encoder.SetEscapeHTML
Maybe we should be doing that? cc @pgavlin
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.
Oof. Yeah, seems like we should do that.
Proposed changes
Relax PyYaml dependency.
Related issues (optional)
Fixes #1767