You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please fill out the sections below to help us address your issue.
Version of AWS SDK for Go?
all
Version of Go (go version)?
all
What issue did you see?
Would love it if you committed a dependency manager file, e.g. glide.yaml/glide.lock for Glide.sh or Godeps/Godeps.json for Godep. This allows a smart dependency manager like Glide to auto detect what your project dependencies are and what versions to get, and pull them down, instead of always pulling master.
The text was updated successfully, but these errors were encountered:
Thanks for contacting us @dfuentes77 I've been experimenting with the dep project for annotating which dependencies the SDK needs. Before we do this we're looking at ways of simplifying the SDK's code generation dependencies to not pollute the SDK's dependence list.
I created a PR #1544 which adds the dep metadata files to the SDK. This will allow applications to correctly manage the SDK's dependencies in the context of the application. I think this will resolve the issues experiences with the un-versioned vendor folder.
Adds the dep Go dependency management metadata files to the SDK. The Gopkg files allow your tools to detect the version of dependencies the SDK uses.
Non-runtime dependencies such as test, example, and code generation packages are excluded from the Gopkg files as they are not needed to use the SDK.
Fix#1451Fix#634
Please fill out the sections below to help us address your issue.
Version of AWS SDK for Go?
all
Version of Go (
go version
)?all
What issue did you see?
Would love it if you committed a dependency manager file, e.g.
glide.yaml
/glide.lock
for Glide.sh orGodeps/Godeps.json
for Godep. This allows a smart dependency manager like Glide to auto detect what your project dependencies are and what versions to get, and pull them down, instead of always pulling master.The text was updated successfully, but these errors were encountered: