The changes to CompressFilesInDir and CompressSpecificFilesInDir[1] in #129 has broken auto-updating in projects that consume bosh-utils.
For example usage of CompressFilesInDir by bosh-agent:
tarball, err := l.compressor.CompressFilesInDir(tmpDir, boshcmd.CompressorOptions{})
if err != nil {
return "", bosherr.WrapError(err, "Making logs tarball")
}
means that the automated package bumping (go get -u) fails because the code in the bosh-agent is not compatible with this change.
Without manual intervention bosh-agent, and other projects will not have dependencies bumped.
[1] https://github.com/cloudfoundry/bosh-utils/pull/129/files#diff-f72f9c04b11cbd8afb8b43e7691207401ce4e03538675e86dc95af42b300a4ffR35-R45