We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I saw deprecated function in go code generator
after Go 1.16 ioutil.ReadAll(...) is deprecated, we should use io.ReadAll(...) instead
ioutil.ReadAll(...)
io.ReadAll(...)
Doc ref : https://pkg.go.dev/io/ioutil#ReadAll Code : https://github.com/postmanlabs/postman-code-generators/blob/2411e41a03c59515fb78e363b0c93ba57f7d030b/codegens/golang/lib/index.js#L300C82-L300C96
The text was updated successfully, but these errors were encountered:
Hi, @theonly1me could you pleaes help to review this change.
Sorry, something went wrong.
merged #721 , #762
@theonly1me and @VShingala Thank you for the review and the commit fixes.
No branches or pull requests
I saw deprecated function in go code generator
after Go 1.16
ioutil.ReadAll(...)
is deprecated, we should useio.ReadAll(...)
insteadDoc ref : https://pkg.go.dev/io/ioutil#ReadAll
Code : https://github.com/postmanlabs/postman-code-generators/blob/2411e41a03c59515fb78e363b0c93ba57f7d030b/codegens/golang/lib/index.js#L300C82-L300C96
The text was updated successfully, but these errors were encountered: