Skip to content

Commit

Permalink
Merge pull request #1591 from bstasyszyn/sidetree-go-2
Browse files Browse the repository at this point in the history
chore: Bump aries-framework-go-ext and golang-ci
  • Loading branch information
bstasyszyn committed Oct 2, 2023
2 parents 1e0e7e6 + 2d16ef4 commit b105f1e
Show file tree
Hide file tree
Showing 51 changed files with 184 additions and 187 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:

checks:
name: Checks
timeout-minutes: 10
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.21
Expand All @@ -129,7 +129,7 @@ jobs:
- uses: actions/checkout@v2

- name: Run checks
timeout-minutes: 10
timeout-minutes: 30
run: make checks

publish:
Expand Down
1 change: 1 addition & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ linters:
- nosnakecase
- interfacer
- golint
- depguard

issues:
# Excluding configuration per-path, per-linter, per-text and per-source
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ build-orb-cli-binaries:
@docker run -i --rm \
-v $(abspath .):/opt/workspace/orb \
--entrypoint "/opt/workspace/orb/scripts/build-cli.sh" \
ghcr.io/gythialy/golang-cross:go-1.18
ghcr.io/gythialy/golang-cross:1.21.1

.PHONY: extract-orb-cli-binaries
extract-orb-cli-binaries:
Expand Down
2 changes: 1 addition & 1 deletion cmd/orb-cli/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func GetPublicKeyFromKMS(cmd *cobra.Command, keyIDFlagName, keyIDEnvKey string,
kms.ECDSAP521IEEEP1363: elliptic.P521(),
}
crv := curves[kt]
x, y := elliptic.Unmarshal(crv, keyBytes)
x, y := elliptic.Unmarshal(crv, keyBytes) //nolint:staticcheck

return &ecdsa.PublicKey{
Curve: crv,
Expand Down
2 changes: 1 addition & 1 deletion cmd/orb-cli/createdidcmd/createdid.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const (
" Alternatively, this can be set with the following environment variable: " + recoveryKeyEnvKey

recoveryKeyFileFlagName = "recoverykey-file"
recoveryKeyFileEnvKey = "ORB_CLI_RECOVERYKEY_FILE"
recoveryKeyFileEnvKey = "ORB_CLI_RECOVERYKEY_FILE" //nolint:gosec
recoveryKeyFileFlagUsage = "The file that contains the public key PEM used for recovery of the document." +
" Alternatively, this can be set with the following environment variable: " + recoveryKeyFileEnvKey

Expand Down
9 changes: 4 additions & 5 deletions cmd/orb-cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ require (
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/google/uuid v1.3.0
github.com/hyperledger/aries-framework-go v0.3.3-0.20230901120639-e17eddd3ad3e
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20230612123444-d285f3c85595
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20230612123444-d285f3c85595
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20231002134513-a3b96bcbb37c
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20231002134513-a3b96bcbb37c
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20230901120639-e17eddd3ad3e
github.com/ipfs/go-ipfs-api v0.2.0
github.com/ipfs/go-ipfs-files v0.0.8
Expand All @@ -22,7 +22,7 @@ require (
github.com/spf13/cobra v1.5.0
github.com/stretchr/testify v1.8.2
github.com/trustbloc/logutil-go v1.0.0-rc1
github.com/trustbloc/orb v1.0.0-rc7
github.com/trustbloc/orb v1.0.1-0.20230929144409-1e0e7e685841
github.com/trustbloc/sidetree-go v0.0.0-20230928172705-30e78b6b6ddd
github.com/trustbloc/vct v1.0.0
)
Expand Down Expand Up @@ -51,7 +51,7 @@ require (
github.com/google/tink/go v1.7.0 // 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/storage/mongodb v0.0.0-20220615170242-cda5092b4faf // indirect
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c // indirect
github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230901120639-e17eddd3ad3e // indirect
github.com/hyperledger/aries-framework-go/component/log v0.0.0-20230901120639-e17eddd3ad3e // indirect
github.com/hyperledger/aries-framework-go/component/models v0.0.0-20230901120639-e17eddd3ad3e // indirect
Expand Down Expand Up @@ -99,7 +99,6 @@ require (
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tidwall/sjson v1.1.4 // indirect
github.com/trustbloc/sidetree-core-go v1.0.0-rc5.0.20230609191801-793cbea60692 // indirect
github.com/trustbloc/sidetree-svc-go v0.0.0-20230928215925-11c8459cb32d // indirect
github.com/whyrusleeping/tar-utils v0.0.0-20180509141711-8c6c8ba81d5c // indirect
github.com/x448/float16 v0.8.4 // indirect
Expand Down
14 changes: 6 additions & 8 deletions cmd/orb-cli/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -461,12 +461,12 @@ github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63
github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg=
github.com/hyperledger/aries-framework-go v0.3.3-0.20230901120639-e17eddd3ad3e h1:2QRDh/BG6aQaIwHPSLfEZHBvnyP7wAD3lzn/CCa7cp4=
github.com/hyperledger/aries-framework-go v0.3.3-0.20230901120639-e17eddd3ad3e/go.mod h1:uH0Od/EyS1bQkW1BWo8qqz8szU3VEpNK1YXR1SJgqK4=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf h1:F12zbOSRsye3IWK3Zb6prgrqQQFYnz5zjGSCh9pfYzk=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf/go.mod h1:GDANCnJONcCqBvv6QgKuk5Y2FWHyD/Hu26kyc7NTyfY=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20230612123444-d285f3c85595 h1:0T03C+omruM3eSi+kJJyG7Wjms6PtiSz4C8PymrfCwg=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20230612123444-d285f3c85595/go.mod h1:TwEnYh669P6PdnjHHSCXI5Dy00vo5vjdCHttmwpXLXI=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20230612123444-d285f3c85595 h1:V3pSkJiQ+Gb+E66F6qeE7VszyNs48AEmvimg98hWGNQ=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20230612123444-d285f3c85595/go.mod h1:HnHKv7F2AWSrzbBLQ/Q0T3b4Xq841T7joJizZXPMAXE=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c h1:4y0CFPFyoA3Jd7EzY2NqC31bILuMe2xXAqWm0s1RJuU=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c/go.mod h1:GDANCnJONcCqBvv6QgKuk5Y2FWHyD/Hu26kyc7NTyfY=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20231002134513-a3b96bcbb37c h1:hNwp043Ba/3TwDLpQAS9tqN0zQCFdnBYTy1NWXFtQNM=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20231002134513-a3b96bcbb37c/go.mod h1:pURPg3cSdbs1yhGXCbOzeXHr7M4OHbN3HEuXOg7kEd0=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20231002134513-a3b96bcbb37c h1:HqDYWlytUw+xMS4THsHcovcS/hdnFko06Dpi5JrjsiE=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20231002134513-a3b96bcbb37c/go.mod h1:vQBl9EQq2V6MHAwUbr+rnExJEGp2EXnaxDcaEKCEKd4=
github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230901120639-e17eddd3ad3e h1:rWchzRr9jP8a9ggR/y8vdIGLvGrij1auh58v10eIgik=
github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230901120639-e17eddd3ad3e/go.mod h1:nmT2WqhIs9Eyncdr9feYrUIy7ggf00bWnTzCN6/t8PY=
github.com/hyperledger/aries-framework-go/component/log v0.0.0-20230901120639-e17eddd3ad3e h1:q6/fpTbRpVJq4vDcapAGybUeg9ud1F4Arlpz8Ru+YZU=
Expand Down Expand Up @@ -864,8 +864,6 @@ github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966/go.mod h1
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce/go.mod h1:o8v6yHRoik09Xen7gje4m9ERNah1d1PPsVq1VEx9vE4=
github.com/trustbloc/logutil-go v1.0.0-rc1 h1:rRJbvgQfrlUfyej+mY0nuQJymGqjRW4oZEwKi544F4c=
github.com/trustbloc/logutil-go v1.0.0-rc1/go.mod h1:JlxT0oZfNKgIlSNtgc001WEeDMxlnAvOM43gNm8DQVc=
github.com/trustbloc/sidetree-core-go v1.0.0-rc5.0.20230609191801-793cbea60692 h1:8J/lEaFqWfGugvt5u/d5l9OvJoZZpE2XU3bR/U6iKjM=
github.com/trustbloc/sidetree-core-go v1.0.0-rc5.0.20230609191801-793cbea60692/go.mod h1:jdxAFuorlIwFOGVW6O455/lZqxg2mZkRHNTEolcZdDI=
github.com/trustbloc/sidetree-go v0.0.0-20230928172705-30e78b6b6ddd h1:hWWZ7lQSRK5FOcVhG5cUtwaNwWLYaz9wASiR5GyPtQE=
github.com/trustbloc/sidetree-go v0.0.0-20230928172705-30e78b6b6ddd/go.mod h1:3oQhk0vOdhaUpPEQBFBzwqH8t0d8bcP2XLU2orBY13U=
github.com/trustbloc/sidetree-svc-go v0.0.0-20230928215925-11c8459cb32d h1:gYr+RqqYV3vzNqSLj6ZPl2APBELfm9s9wKXHlAyNoDo=
Expand Down
2 changes: 1 addition & 1 deletion cmd/orb-cli/recoverdidcmd/recoverdid.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const (
" Alternatively, this can be set with the following environment variable: " + nextUpdateKeyFileEnvKey

nextUpdateKeyIDFlagName = "nextupdatekey-id"
nextUpdateKeyIDEnvKey = "ORB_CLI_NEXTUPDATEKEY_ID"
nextUpdateKeyIDEnvKey = "ORB_CLI_NEXTUPDATEKEY_ID" //nolint:gosec
nextUpdateKeyIDFlagUsage = "The key id in kms" +
" used for validating the signature of the next update of the document. " +
" Alternatively, this can be set with the following environment variable: " + nextUpdateKeyIDEnvKey
Expand Down
4 changes: 2 additions & 2 deletions cmd/orb-cli/updatedidcmd/updatedid.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const (
" Alternatively, this can be set with the following environment variable: " + addPublicKeyFileEnvKey

addServiceFileFlagName = "add-service-file"
addServiceFileEnvKey = "ORB_CLI_ADD_SERVICE_FILE"
addServiceFileEnvKey = "ORB_CLI_ADD_SERVICE_FILE" //nolint:gosec
addServiceFlagUsage = "publickey file include services to be added for Orb DID " +
" Alternatively, this can be set with the following environment variable: " + addServiceFileEnvKey

Expand Down Expand Up @@ -114,7 +114,7 @@ const (
" Alternatively, this can be set with the following environment variable: " + nextUpdateKeyFileEnvKey

nextUpdateKeyIDFlagName = "nextupdatekey-id"
nextUpdateKeyIDEnvKey = "ORB_CLI_NEXTUPDATEKEY_ID"
nextUpdateKeyIDEnvKey = "ORB_CLI_NEXTUPDATEKEY_ID" //nolint:gosec
nextUpdateKeyIDFlagUsage = "The key id in kms" +
" used for validating the signature of the next update of the document. " +
" Alternatively, this can be set with the following environment variable: " + nextUpdateKeyIDEnvKey
Expand Down
9 changes: 4 additions & 5 deletions cmd/orb-driver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ go 1.21
toolchain go1.21.0

require (
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20230612123444-d285f3c85595
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20231002134513-a3b96bcbb37c
github.com/spf13/cobra v1.5.0
github.com/stretchr/testify v1.8.2
github.com/trustbloc/logutil-go v1.0.0-rc1
github.com/trustbloc/orb v1.0.0-rc7
github.com/trustbloc/orb v1.0.1-0.20230929144409-1e0e7e685841
)

require (
Expand Down Expand Up @@ -44,8 +44,8 @@ require (
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/hyperledger/aries-framework-go v0.3.3-0.20230901120639-e17eddd3ad3e // indirect
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf // indirect
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20230612123444-d285f3c85595 // indirect
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c // indirect
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20231002134513-a3b96bcbb37c // indirect
github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230901120639-e17eddd3ad3e // indirect
github.com/hyperledger/aries-framework-go/component/log v0.0.0-20230901120639-e17eddd3ad3e // indirect
github.com/hyperledger/aries-framework-go/component/models v0.0.0-20230901120639-e17eddd3ad3e // indirect
Expand Down Expand Up @@ -89,7 +89,6 @@ require (
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tidwall/sjson v1.1.4 // indirect
github.com/trustbloc/sidetree-core-go v1.0.0-rc5.0.20230609191801-793cbea60692 // indirect
github.com/trustbloc/sidetree-go v0.0.0-20230928172705-30e78b6b6ddd // indirect
github.com/trustbloc/sidetree-svc-go v0.0.0-20230928215925-11c8459cb32d // indirect
github.com/trustbloc/vct v1.0.0 // indirect
Expand Down
14 changes: 6 additions & 8 deletions cmd/orb-driver/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -460,12 +460,12 @@ github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63
github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg=
github.com/hyperledger/aries-framework-go v0.3.3-0.20230901120639-e17eddd3ad3e h1:2QRDh/BG6aQaIwHPSLfEZHBvnyP7wAD3lzn/CCa7cp4=
github.com/hyperledger/aries-framework-go v0.3.3-0.20230901120639-e17eddd3ad3e/go.mod h1:uH0Od/EyS1bQkW1BWo8qqz8szU3VEpNK1YXR1SJgqK4=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf h1:F12zbOSRsye3IWK3Zb6prgrqQQFYnz5zjGSCh9pfYzk=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf/go.mod h1:GDANCnJONcCqBvv6QgKuk5Y2FWHyD/Hu26kyc7NTyfY=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20230612123444-d285f3c85595 h1:0T03C+omruM3eSi+kJJyG7Wjms6PtiSz4C8PymrfCwg=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20230612123444-d285f3c85595/go.mod h1:TwEnYh669P6PdnjHHSCXI5Dy00vo5vjdCHttmwpXLXI=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20230612123444-d285f3c85595 h1:V3pSkJiQ+Gb+E66F6qeE7VszyNs48AEmvimg98hWGNQ=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20230612123444-d285f3c85595/go.mod h1:HnHKv7F2AWSrzbBLQ/Q0T3b4Xq841T7joJizZXPMAXE=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c h1:4y0CFPFyoA3Jd7EzY2NqC31bILuMe2xXAqWm0s1RJuU=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c/go.mod h1:GDANCnJONcCqBvv6QgKuk5Y2FWHyD/Hu26kyc7NTyfY=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20231002134513-a3b96bcbb37c h1:hNwp043Ba/3TwDLpQAS9tqN0zQCFdnBYTy1NWXFtQNM=
github.com/hyperledger/aries-framework-go-ext/component/vdr/orb v1.0.0-rc5.0.20231002134513-a3b96bcbb37c/go.mod h1:pURPg3cSdbs1yhGXCbOzeXHr7M4OHbN3HEuXOg7kEd0=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20231002134513-a3b96bcbb37c h1:HqDYWlytUw+xMS4THsHcovcS/hdnFko06Dpi5JrjsiE=
github.com/hyperledger/aries-framework-go-ext/component/vdr/sidetree v1.0.0-rc4.0.20231002134513-a3b96bcbb37c/go.mod h1:vQBl9EQq2V6MHAwUbr+rnExJEGp2EXnaxDcaEKCEKd4=
github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230901120639-e17eddd3ad3e h1:rWchzRr9jP8a9ggR/y8vdIGLvGrij1auh58v10eIgik=
github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230901120639-e17eddd3ad3e/go.mod h1:nmT2WqhIs9Eyncdr9feYrUIy7ggf00bWnTzCN6/t8PY=
github.com/hyperledger/aries-framework-go/component/log v0.0.0-20230901120639-e17eddd3ad3e h1:q6/fpTbRpVJq4vDcapAGybUeg9ud1F4Arlpz8Ru+YZU=
Expand Down Expand Up @@ -855,8 +855,6 @@ github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966/go.mod h1
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce/go.mod h1:o8v6yHRoik09Xen7gje4m9ERNah1d1PPsVq1VEx9vE4=
github.com/trustbloc/logutil-go v1.0.0-rc1 h1:rRJbvgQfrlUfyej+mY0nuQJymGqjRW4oZEwKi544F4c=
github.com/trustbloc/logutil-go v1.0.0-rc1/go.mod h1:JlxT0oZfNKgIlSNtgc001WEeDMxlnAvOM43gNm8DQVc=
github.com/trustbloc/sidetree-core-go v1.0.0-rc5.0.20230609191801-793cbea60692 h1:8J/lEaFqWfGugvt5u/d5l9OvJoZZpE2XU3bR/U6iKjM=
github.com/trustbloc/sidetree-core-go v1.0.0-rc5.0.20230609191801-793cbea60692/go.mod h1:jdxAFuorlIwFOGVW6O455/lZqxg2mZkRHNTEolcZdDI=
github.com/trustbloc/sidetree-go v0.0.0-20230928172705-30e78b6b6ddd h1:hWWZ7lQSRK5FOcVhG5cUtwaNwWLYaz9wASiR5GyPtQE=
github.com/trustbloc/sidetree-go v0.0.0-20230928172705-30e78b6b6ddd/go.mod h1:3oQhk0vOdhaUpPEQBFBzwqH8t0d8bcP2XLU2orBY13U=
github.com/trustbloc/sidetree-svc-go v0.0.0-20230928215925-11c8459cb32d h1:gYr+RqqYV3vzNqSLj6ZPl2APBELfm9s9wKXHlAyNoDo=
Expand Down
4 changes: 2 additions & 2 deletions cmd/orb-server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ require (
github.com/cenkalti/backoff/v4 v4.1.3
github.com/google/uuid v1.3.0
github.com/hyperledger/aries-framework-go v0.1.9-0.20221104133505-b2cd6a82a8e4
github.com/hyperledger/aries-framework-go-ext/component/storage/couchdb v0.0.0-20220428163625-96d8261511e1
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf
github.com/hyperledger/aries-framework-go-ext/component/storage/couchdb v0.0.0-20231002134513-a3b96bcbb37c
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220610133818-119077b0ec85
github.com/hyperledger/aries-framework-go/spi v0.0.0-20221025204933-b807371b6f1e
github.com/piprate/json-gold v0.4.2
Expand Down
8 changes: 4 additions & 4 deletions cmd/orb-server/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -541,10 +541,10 @@ github.com/huandu/xstrings v1.2.0/go.mod h1:DvyZB1rfVYsBIigL8HwpZgxHwXozlTgGqn63
github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg=
github.com/hyperledger/aries-framework-go v0.1.9-0.20221104133505-b2cd6a82a8e4 h1:M9FRYd7XTKkcLNkWP7s2wig7Sjbo0B40Nrn8k2aGLMg=
github.com/hyperledger/aries-framework-go v0.1.9-0.20221104133505-b2cd6a82a8e4/go.mod h1:5lp5+NPjRngsjFLYYGg5mtkvw6I4Mr7CKz+wHYxROk0=
github.com/hyperledger/aries-framework-go-ext/component/storage/couchdb v0.0.0-20220428163625-96d8261511e1 h1:J17kEzMu0cA2xsgC0VcZiKu9ivV0/WMMmeCW7UrfQ1Y=
github.com/hyperledger/aries-framework-go-ext/component/storage/couchdb v0.0.0-20220428163625-96d8261511e1/go.mod h1:q8qjsQpYo7AYG0pqQg1zgEoIVc+Hrpf5S0WciiwPDQA=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf h1:F12zbOSRsye3IWK3Zb6prgrqQQFYnz5zjGSCh9pfYzk=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf/go.mod h1:GDANCnJONcCqBvv6QgKuk5Y2FWHyD/Hu26kyc7NTyfY=
github.com/hyperledger/aries-framework-go-ext/component/storage/couchdb v0.0.0-20231002134513-a3b96bcbb37c h1:M/Q//j6EnNrf2ZWpjp6GvWqohDxMROa2Qv1p0dHcUCo=
github.com/hyperledger/aries-framework-go-ext/component/storage/couchdb v0.0.0-20231002134513-a3b96bcbb37c/go.mod h1:q8qjsQpYo7AYG0pqQg1zgEoIVc+Hrpf5S0WciiwPDQA=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c h1:4y0CFPFyoA3Jd7EzY2NqC31bILuMe2xXAqWm0s1RJuU=
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c/go.mod h1:GDANCnJONcCqBvv6QgKuk5Y2FWHyD/Hu26kyc7NTyfY=
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220610133818-119077b0ec85 h1:P82lZe6zDjaP2j87nDYQBSBYrB6Nq6nc9MtyNMC3K4A=
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220610133818-119077b0ec85/go.mod h1:ryG46jQRvQUUH/0wjORghfJnxJVH1yIXIsAv1GXIWp8=
github.com/hyperledger/aries-framework-go/spi v0.0.0-20221025204933-b807371b6f1e h1:SxbXlF39661T9w/L9PhVdtbJfJ51Pm4JYEEW6XfZHEQ=
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require (
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/hyperledger/aries-framework-go v0.1.9-0.20221104133505-b2cd6a82a8e4
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20220615170242-cda5092b4faf
github.com/hyperledger/aries-framework-go-ext/component/storage/mongodb v0.0.0-20231002134513-a3b96bcbb37c
github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20220610133818-119077b0ec85
github.com/hyperledger/aries-framework-go/spi v0.0.0-20221025204933-b807371b6f1e
github.com/igor-pavlenko/httpsignatures-go v0.0.23
Expand Down

0 comments on commit b105f1e

Please sign in to comment.