Skip to content

Commit

Permalink
Merge pull request #102 from gregdhill/v8-release
Browse files Browse the repository at this point in the history
v8 release notes
  • Loading branch information
Greg Hill committed Mar 9, 2020
2 parents 9e1abfc + 199976d commit d7f60ab
Show file tree
Hide file tree
Showing 55 changed files with 362 additions and 435 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Publish
- name: publish
uses: docker://goreleaser/goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ commit_hash:

.PHONY: protobuf
protobuf: ${PROTO_GO_FILES} ${PROTO_TS_FILES}
rsync -r .gopath/github.com/monax/hoard/v7/ ./
rsync -r .gopath/github.com/monax/hoard/v8/ ./
rm -rf .gopath

.PHONY: clean_protobuf
Expand Down
10 changes: 5 additions & 5 deletions api/api.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions cmd/hoarctl/encryption.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"

cli "github.com/jawher/mow.cli"
"github.com/monax/hoard/v7"
"github.com/monax/hoard/v7/api"
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8"
"github.com/monax/hoard/v8/api"
"github.com/monax/hoard/v8/reference"
)

// Decrypt does what it says on the tin
Expand Down
6 changes: 3 additions & 3 deletions cmd/hoarctl/grants.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"

cli "github.com/jawher/mow.cli"
"github.com/monax/hoard/v7"
"github.com/monax/hoard/v7/api"
"github.com/monax/hoard/v7/grant"
"github.com/monax/hoard/v8"
"github.com/monax/hoard/v8/api"
"github.com/monax/hoard/v8/grant"
)

// PutSeal encrypts and stores data then prints a grant
Expand Down
12 changes: 6 additions & 6 deletions cmd/hoarctl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import (
"net"
"os"

"github.com/monax/hoard/v7/api"
"github.com/monax/hoard/v8/api"

cli "github.com/jawher/mow.cli"
"github.com/monax/hoard/v7/cmd"
"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v7/grant"
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v7/server"
"github.com/monax/hoard/v8/cmd"
"github.com/monax/hoard/v8/config"
"github.com/monax/hoard/v8/grant"
"github.com/monax/hoard/v8/reference"
"github.com/monax/hoard/v8/server"
"google.golang.org/grpc"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/hoarctl/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"

cli "github.com/jawher/mow.cli"
hoard "github.com/monax/hoard/v7"
"github.com/monax/hoard/v7/api"
hoard "github.com/monax/hoard/v8"
"github.com/monax/hoard/v8/api"
)

// Cat retrieves encrypted data from store
Expand Down
4 changes: 2 additions & 2 deletions cmd/hoard/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"github.com/cep21/xdgbasedir"
cli "github.com/jawher/mow.cli"
"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v7/encryption"
"github.com/monax/hoard/v8/config"
"github.com/monax/hoard/v8/encryption"
)

func Config(cmd *cli.Cmd) {
Expand Down
6 changes: 3 additions & 3 deletions cmd/hoard/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (

"github.com/go-kit/kit/log"
cli "github.com/jawher/mow.cli"
"github.com/monax/hoard/v7/cmd"
"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v7/server"
"github.com/monax/hoard/v8/cmd"
"github.com/monax/hoard/v8/config"
"github.com/monax/hoard/v8/server"
)

func main() {
Expand Down
8 changes: 4 additions & 4 deletions cmd/hoard/stores.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"fmt"

"github.com/go-kit/kit/log"
"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v7/stores"
"github.com/monax/hoard/v7/stores/cloud"
"github.com/monax/hoard/v7/stores/ipfs"
"github.com/monax/hoard/v8/config"
"github.com/monax/hoard/v8/stores"
"github.com/monax/hoard/v8/stores/cloud"
"github.com/monax/hoard/v8/stores/ipfs"
)

func StoreFromStorageConfig(storageConfig *config.Storage, logger log.Logger) (stores.NamedStore, error) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

cli "github.com/jawher/mow.cli"
"github.com/monax/hoard/v7/project"
"github.com/monax/hoard/v8/project"
)

func AddVersionCommand(cmd *cli.Cli) {
Expand Down
2 changes: 1 addition & 1 deletion config/filesystem.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"path"

"github.com/monax/hoard/v7/stores"
"github.com/monax/hoard/v8/stores"

"github.com/cep21/xdgbasedir"
)
Expand Down
4 changes: 2 additions & 2 deletions config/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/go-kit/kit/log"
"github.com/go-kit/kit/log/term"
"github.com/monax/hoard/v7/logging/loggers"
"github.com/monax/hoard/v7/logging/structure"
"github.com/monax/hoard/v8/logging/loggers"
"github.com/monax/hoard/v8/logging/structure"
)

type LoggingType string
Expand Down
2 changes: 1 addition & 1 deletion config/logging_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"bytes"

"github.com/monax/hoard/v7/logging/structure"
"github.com/monax/hoard/v8/logging/structure"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion config/secrets_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"

"github.com/BurntSushi/toml"
"github.com/monax/hoard/v7/encryption"
"github.com/monax/hoard/v8/encryption"
"github.com/stretchr/testify/assert"
yaml "gopkg.in/yaml.v2"
)
Expand Down
2 changes: 1 addition & 1 deletion config/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package config
import (
"fmt"

"github.com/monax/hoard/v7/stores"
"github.com/monax/hoard/v8/stores"

"bytes"

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/monax/hoard/v7
module github.com/monax/hoard/v8

go 1.13

Expand All @@ -10,13 +10,13 @@ require (
github.com/aws/aws-sdk-go v1.25.43
github.com/cep21/xdgbasedir v0.0.0-20170329171747-21470bfc93b9
github.com/eapache/channels v1.1.0
github.com/eapache/queue v1.1.0 // indirect
github.com/go-kit/kit v0.9.0
github.com/go-logfmt/logfmt v0.5.0 // indirect
github.com/go-stack/stack v1.8.0
github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.3.2
github.com/jawher/mow.cli v1.1.0
github.com/monax/hoard/v7 v7.2.0 // indirect
github.com/monax/relic v2.0.0+incompatible
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.4.0
Expand Down
14 changes: 14 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ github.com/eapache/channels v1.1.0 h1:F1taHcn7/F0i8DYqKXJnyhJcVpp2kgFcNePxXtnyu4
github.com/eapache/channels v1.1.0/go.mod h1:jMm2qB5Ubtg9zLd+inMZd2/NUvXgzmWXsDaLyQIGfH0=
github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc=
github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I=
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
Expand All @@ -57,6 +58,7 @@ github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeME
github.com/go-ini/ini v1.25.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8=
github.com/go-kit/kit v0.9.0 h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=
github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
github.com/go-logfmt/logfmt v0.5.0 h1:TrB8swr/68K7m9CcGut2g3UOihhbcbiMAYiuTXdEih4=
github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
Expand Down Expand Up @@ -96,6 +98,7 @@ github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+
github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=
github.com/grpc-ecosystem/grpc-gateway v1.9.2 h1:S+ef0492XaIknb8LMjcwgW2i3cNTzDYMmDrOThOJNWc=
github.com/grpc-ecosystem/grpc-gateway v1.9.2/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=
github.com/h2non/filetype v1.0.10/go.mod h1:isekKqOuhMj+s/7r3rIeTErIRy4Rub5uBWHfvMusLMU=
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
Expand All @@ -108,6 +111,7 @@ github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqx
github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
Expand All @@ -121,8 +125,14 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/monax/hoard v3.0.1+incompatible h1:Mfxm/5Kvu3pp2J0WyEm70pP+TwXJC6fTd3vMbFqd33Y=
github.com/monax/hoard/v7 v7.2.0 h1:HaMELdvjEw+HRSAfDoAPzEMWT402DIrAzlqCxJ4PjkI=
github.com/monax/hoard/v7 v7.2.0/go.mod h1:0RAwlPmI5Dr1djP3l0oaYwc5C33KAhX0WAlFinvQDso=
github.com/monax/relic v2.0.0+incompatible h1:5q+fw8Y7UJJuOBzGV5bZNlBk9k9ii6fzmdpwXsZKMdg=
github.com/monax/relic v2.0.0+incompatible/go.mod h1:ZJcXg8m9tYkd2h6VeEZruhRUQPklFKbzFaTxyXrXxVk=
github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0=
github.com/naoina/toml v0.1.1/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E=
github.com/pelletier/go-toml v1.6.0/go.mod h1:5N711Q9dKgbdkxHL+MEfF31hpT7l0S0s/t2kKREewys=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
Expand All @@ -149,6 +159,7 @@ gocloud.dev v0.18.0 h1:HX6uFZYZs9tUP87jzoWgB8dl4ihsRpiAsBDKTthiApY=
gocloud.dev v0.18.0/go.mod h1:lhLOb91+9tKB8RnNlsx+weJGEd0AHM94huK1bmrhPwM=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20191122220453-ac88ee75c92c/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 h1:ULYEB3JvPRE/IfO+9uO7vKV/xzVTO7XPAwm8xbf4w2g=
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
Expand Down Expand Up @@ -238,14 +249,17 @@ google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiq
google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
google.golang.org/grpc v1.26.0 h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg=
google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod h1:WDnlLJ4WF5VGsH/HVa3CI79GS0ol3YnhVnKP89i0kNg=
gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo=
gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
Expand Down
4 changes: 2 additions & 2 deletions grant/grant.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package grant
import (
"fmt"

"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8/config"
"github.com/monax/hoard/v8/reference"
)

const defaultGrantVersion = 2
Expand Down
6 changes: 3 additions & 3 deletions grant/grant.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions grant/grant_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"strings"
"testing"

"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v7/encryption"
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8/config"
"github.com/monax/hoard/v8/encryption"
"github.com/monax/hoard/v8/reference"
"github.com/stretchr/testify/assert"
"github.com/test-go/testify/require"
)
Expand Down
4 changes: 2 additions & 2 deletions grant/openpgp.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (
"fmt"
"strconv"

"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v8/config"

"bytes"
"io"
"io/ioutil"

"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8/reference"
"golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/armor"
)
Expand Down
2 changes: 1 addition & 1 deletion grant/openpgp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io/ioutil"
"testing"

"github.com/monax/hoard/v7/config"
"github.com/monax/hoard/v8/config"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion grant/plaintext.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package grant

import (
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8/reference"
)

// PlaintextGrant returns an encoded reference
Expand Down
4 changes: 2 additions & 2 deletions grant/symmetric.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package grant
import (
"fmt"

"github.com/monax/hoard/v7/encryption"
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8/encryption"
"github.com/monax/hoard/v8/reference"
)

// SymmetricGrant encrypts the given reference based on a secret read from the provider store
Expand Down
4 changes: 2 additions & 2 deletions grant/symmetric_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/base64"
"testing"

"github.com/monax/hoard/v7/encryption"
"github.com/monax/hoard/v7/reference"
"github.com/monax/hoard/v8/encryption"
"github.com/monax/hoard/v8/reference"
"github.com/stretchr/testify/assert"
"github.com/test-go/testify/require"
)
Expand Down
Loading

0 comments on commit d7f60ab

Please sign in to comment.