Skip to content

Releases: gruntwork-io/fetch

v0.0.5

20 Jun 15:59
Compare
Choose a tag to compare
  • Added support to fetch for downloading not only the source code from a GitHub repo, but also binary assets uploaded to a GitHub release. Downloading such assets is easy for public repos (just curl or wget the public URL), but for private repos, it's a confusing process that requires multiple API calls. Now, with fetch, it's a one-liner: just use the --release-asset option to specify which assets to download.
  • This means that instead of reading in the source files to download as an (optional) argument, fetch now uses the --source-path argument, which you can specify more than once.
  • Added support for reading the GitHub token as the environment variable GITHUB_OAUTH_TOKEN. This is more secure than passing it as a command line option.

v0.0.4

04 Jun 15:49
Compare
Choose a tag to compare
  • Fix panic when downloading from a repo that has no tags

v0.0.3

29 Apr 00:06
Compare
Choose a tag to compare
  • fetch can now download files from a specific git commit or a git branch. When a branch is specified, fetch downloads the latest commit on a branch.
  • Fixed a bug where empty values for --tag were not handled properly for repos whose tag names started with v.
  • Enables fetch to pull from a specific git commit or branch
  • Updated README.md.

v0.0.2

27 Apr 22:05
Compare
Choose a tag to compare
  • Fixes #2.
  • Refined command-line output.

v0.0.1

21 Apr 23:19
Compare
Choose a tag to compare

Initial release!