From c69d473fa5274d45ebe870cce16613edc8ed9508 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 4 Apr 2020 20:45:36 +0200 Subject: [PATCH] Add changelog --- changelog/unreleased/issue-102 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 changelog/unreleased/issue-102 diff --git a/changelog/unreleased/issue-102 b/changelog/unreleased/issue-102 new file mode 100644 index 0000000..2aa0681 --- /dev/null +++ b/changelog/unreleased/issue-102 @@ -0,0 +1,14 @@ +Change: Remove vendored dependencies + +We've removed the vendored dependencies (in the subdir `vendor/`) similar to +what we did for `restic` itself. When building restic, the Go compiler +automatically fetches the dependencies. It will also cryptographically verify +that the correct code has been fetched by using the hashes in `go.sum` (see the +link to the documentation below). + +Building the rest-server now requires Go 1.11 or newer, since we're using Go +Modules for dependency management. Older Go versions are not supported any more. + +https://github.com/restic/rest-server/issues/102 +https://golang.org/cmd/go/#hdr-Module_downloading_and_verification +