-
Notifications
You must be signed in to change notification settings - Fork 32
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
feat: output can be stdout so you can pipe it to other commands #19
Conversation
also fix bug where fixed word gets overridden with random faker word
@rap2hpoutre what do you think of this PR? |
Thank you for your contribution! Why did you change all |
I had to switch the logging statements to STDERR because the new feature is output to STDOUT, and otherwise the log statements would end up in STDOUT and potentially mess up the resulting pg_dump output. |
@rap2hpoutre If you prefer me to do it differently, let me know! It's easy enough to change. |
@rap2hpoutre does it look good to you? |
That's OK then!
Sorry for late answer! Yes we can merge it. Thank you for your work!!! |
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.
You can click on squash+merge!
# [0.5.0](v0.4.0...v0.5.0) (2022-03-13) ### Features * add support to specify tables in list of columns ([#13](#13)) ([bc6638d](bc6638d)) * new option to read replacements from a file ([#18](#18)) ([a7c6441](a7c6441)) * output can be stdout so you can pipe it to other commands ([#19](#19)) ([11e46ce](11e46ce)) * table name to extension functions ([#8](#8)) ([9f0a8f8](9f0a8f8))
output now accepts '-' and sends the output to stdout so you can pipe it to other commands.