Hello,
I have recently worked over issue related with our cf cli plugin and I have identified we use gopkg.in/yaml module to parse yaml descriptors. This module is quite outdated and public github repo - https://github.com/go-yaml/yaml is already archived.
The same archived project is still used by cf cli - https://github.com/cloudfoundry/cli/blob/main/go.mod#L47C2-L47C18 and should be migrated to maintained library.
Suggested replacement could be this project - https://github.com/yaml/go-yaml which is fork of the original project but It could be chosen another yaml parser library.
Hello,
I have recently worked over issue related with our cf cli plugin and I have identified we use
gopkg.in/yamlmodule to parse yaml descriptors. This module is quite outdated and public github repo - https://github.com/go-yaml/yaml is already archived.The same archived project is still used by cf cli - https://github.com/cloudfoundry/cli/blob/main/go.mod#L47C2-L47C18 and should be migrated to maintained library.
Suggested replacement could be this project - https://github.com/yaml/go-yaml which is fork of the original project but It could be chosen another yaml parser library.