Hello,
Until a new release of packer is built, I want to backport certain features to the latest packer release, 0.7.5. Unfortunately that release is quite old and many of its external dependencies have changed their APIs. Running `make` gives several errors, such as
#
github.com/mitchellh/packer/builder/googlecompute
builder/googlecompute/driver_gce.go:26: undefined: oauth2.Options
builder/googlecompute/driver_gce.go:36: undefined: oauth2.New
builder/googlecompute/driver_gce.go:37: undefined: oauth2.JWTClient
builder/googlecompute/driver_gce.go:38: undefined: oauth2.Scope
builder/googlecompute/driver_gce.go:39: undefined: google.JWTEndpoint
builder/googlecompute/driver_gce.go:43: undefined: oauth2.New
builder/googlecompute/driver_gce.go:43: undefined: google.ComputeEngineAccount
...
post-processor/atlas/post-processor.go:160: unknown atlas.UploadArtifactOpts field 'BuildId' in struct literal
It appears ‘master’ has kept up with these API changes, however I want to stick to the last stable release of packer.
Is there anywhere I can find what versions of each external dependency packer 0.7.5 was built with?
-David