Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #333 from fqutishat/sudeshrshetty-release-0.1.8
Browse files Browse the repository at this point in the history
chore: update depencies to latest ones
  • Loading branch information
rolsonquadras authored Mar 26, 2022
2 parents 8bc5e24 + 1ad614d commit 71457bb
Show file tree
Hide file tree
Showing 10 changed files with 207 additions and 356 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GOBIN_PATH = $(abspath .)/build/bin
ARIES_AGENT_REST_PATH=cmd/agent-rest
ARIES_AGENT_MOBILE_PATH=cmd/agent-mobile
ARIES_FRAMEWORK_COMMIT=8e648d1caeaac93be3ca7c33f58fff051d7cc28d
ARIES_FRAMEWORK_COMMIT=18c87667df1977606c8b6d708e9f7e55ed9f2d70
PROJECT_ROOT = github.com/trustbloc/agent-sdk
OPENAPI_SPEC_PATH=build/rest/openapi/spec
OPENAPI_DOCKER_IMG=quay.io/goswagger/swagger
Expand Down
20 changes: 10 additions & 10 deletions cmd/agent-js-worker/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ require (
github.com/btcsuite/btcd v0.22.0-beta
github.com/google/tink/go v1.6.1-0.20210519071714-58be99b3c4d0
github.com/google/uuid v1.3.0
github.com/hyperledger/aries-framework-go v0.1.8-0.20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v0.1.4-0.20220114172935-0e96d787f80f
github.com/hyperledger/aries-framework-go/component/storage/edv v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go/component/storage/indexeddb v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go/spi v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go v0.1.8-0.20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v0.1.4-0.20220325184342-8ccd5c996898
github.com/hyperledger/aries-framework-go/component/storage/edv v0.0.0-20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go/component/storage/indexeddb v0.0.0-20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go/spi v0.0.0-20220324201531-18c87667df19
github.com/mitchellh/mapstructure v1.4.1
github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c
github.com/stretchr/testify v1.7.0
Expand All @@ -40,7 +40,7 @@ require (
github.com/google/certificate-transparency-go v1.1.2-0.20210512142713-bed466244fa6 // indirect
github.com/google/trillian v1.3.14-0.20210520152752-ceda464a95a3 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20211229160742-30796de12ba6 // indirect
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20220325181924-aed46b24a321 // indirect
github.com/igor-pavlenko/httpsignatures-go v0.0.23 // indirect
github.com/ipfs/go-cid v0.0.7 // indirect
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect
Expand All @@ -67,9 +67,9 @@ require (
github.com/tidwall/match v1.0.3 // indirect
github.com/tidwall/pretty v1.0.2 // indirect
github.com/tidwall/sjson v1.1.4 // indirect
github.com/trustbloc/orb v0.1.4-0.20220114151418-ee519eb3cd25 // indirect
github.com/trustbloc/sidetree-core-go v0.7.1-0.20211229172717-b542d0074b38 // indirect
github.com/trustbloc/vct v0.1.3 // indirect
github.com/trustbloc/orb v0.1.4-0.20220314105645-15799999dd8b // indirect
github.com/trustbloc/sidetree-core-go v0.7.1-0.20220314104818-0ae9fc89df5b // indirect
github.com/trustbloc/vct v0.1.4-0.20220311095043-9804a0520090 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
Expand Down
119 changes: 41 additions & 78 deletions cmd/agent-js-worker/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cmd/agent-js-worker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ func prepareRemoteJWEKey(keyURL string, kmsImpl kms.KeyManager) ([]byte, string,

kid := keyURL[id:] // need KID part only of keyURL since remoteKMS has the keystore URL.

pubKeyBytes, err := kmsImpl.ExportPubKeyBytes(kid)
pubKeyBytes, _, err := kmsImpl.ExportPubKeyBytes(kid)
if err != nil {
return nil, "", fmt.Errorf("failed to retrieve main public key bytes from remote KMS: %w", err)
}
Expand Down
20 changes: 10 additions & 10 deletions cmd/agent-mobile/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ go 1.17

require (
github.com/google/uuid v1.3.0
github.com/hyperledger/aries-framework-go v0.1.8-0.20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v0.1.4-0.20220114172935-0e96d787f80f
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go/spi v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go/test/component v0.0.0-20220223232229-8e648d1caeaa
github.com/hyperledger/aries-framework-go v0.1.8-0.20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v0.1.4-0.20220325184342-8ccd5c996898
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go/spi v0.0.0-20220324201531-18c87667df19
github.com/hyperledger/aries-framework-go/test/component v0.0.0-20220324201531-18c87667df19
github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c
github.com/stretchr/testify v1.7.0
github.com/trustbloc/agent-sdk v0.0.0-00010101000000-000000000000
Expand All @@ -38,8 +38,8 @@ require (
github.com/google/tink/go v1.6.1-0.20210519071714-58be99b3c4d0 // indirect
github.com/google/trillian v1.3.14-0.20210520152752-ceda464a95a3 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20211229160742-30796de12ba6 // indirect
github.com/hyperledger/aries-framework-go/component/storage/edv v0.0.0-20211214153431-5c8a10d6e6ad // indirect
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v0.0.0-20220325181924-aed46b24a321 // indirect
github.com/hyperledger/aries-framework-go/component/storage/edv v0.0.0-20220322085443-50e8f9bd208b // indirect
github.com/ipfs/go-cid v0.0.7 // indirect
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect
github.com/kawamuray/jsonpath v0.0.0-20201211160320-7483bafabd7e // indirect
Expand Down Expand Up @@ -67,9 +67,9 @@ require (
github.com/tidwall/pretty v1.0.2 // indirect
github.com/tidwall/sjson v1.1.4 // indirect
github.com/trustbloc/edge-core v0.1.8-0.20211216164925-ce0474dc589d // indirect
github.com/trustbloc/orb v0.1.4-0.20220114151418-ee519eb3cd25 // indirect
github.com/trustbloc/sidetree-core-go v0.7.1-0.20211229172717-b542d0074b38 // indirect
github.com/trustbloc/vct v0.1.3 // indirect
github.com/trustbloc/orb v0.1.4-0.20220314105645-15799999dd8b // indirect
github.com/trustbloc/sidetree-core-go v0.7.1-0.20220314104818-0ae9fc89df5b // indirect
github.com/trustbloc/vct v0.1.4-0.20220311095043-9804a0520090 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
Expand Down
Loading

0 comments on commit 71457bb

Please sign in to comment.