Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v7 #1300

Merged
merged 9 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
-->
## Version 7.0.0
### Bug Fixes
- ([\#1284](https://github.com/desmos-labs/desmos/pull/1284)) Removed duplicated message events emission

### Dependencies
- ([\#1287](https://github.com/desmos-labs/desmos/pull/1287)) Updated `wasmvm` to `v1.5.1`
- ([\#1299](https://github.com/desmos-labs/desmos/pull/1299)) Updated `cosmos-sdk` to `v0.47.8`

## Version 6.4.0
### Bug Fixes
#### Profiles
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ setup-localnet: build-linux
# 2. GENESIS_URL, which represents the URL from where to download the testnet genesis status
# 3. UPGRADE_NAME, which represents the name of the upgrade to perform
upgrade-testnet-start: upgrade-testnet-stop
$(CURDIR)/contrib/upgrade_testnet/start.sh 4 $(GENESIS_VERSION) $(GENESIS_URL) $(UPGRADE_NAME)
$(CURDIR)/contrib/upgrade_testnet/start.sh 4 "$(GENESIS_VERSION)" "$(GENESIS_URL)" "$(UPGRADE_NAME)"

# Stops the 4-nodes testnet that should be used to test on-chain upgrades.
upgrade-testnet-stop:
Expand Down
4 changes: 2 additions & 2 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"

subspaceante "github.com/desmos-labs/desmos/v6/x/subspaces/ante"
subspaceskeeper "github.com/desmos-labs/desmos/v6/x/subspaces/keeper"
subspaceante "github.com/desmos-labs/desmos/v7/x/subspaces/ante"
subspaceskeeper "github.com/desmos-labs/desmos/v7/x/subspaces/keeper"

wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmTypes "github.com/CosmWasm/wasmd/x/wasm/types"
Expand Down
22 changes: 11 additions & 11 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (
"path/filepath"
"strings"

"github.com/desmos-labs/desmos/v6/app/upgrades"
"github.com/desmos-labs/desmos/v7/app/upgrades"

"github.com/cosmos/cosmos-sdk/runtime"
"github.com/cosmos/cosmos-sdk/server"
storetypes "github.com/cosmos/cosmos-sdk/store/types"

postskeeper "github.com/desmos-labs/desmos/v6/x/posts/keeper"
postskeeper "github.com/desmos-labs/desmos/v7/x/posts/keeper"

"cosmossdk.io/depinject"

Expand Down Expand Up @@ -75,15 +75,15 @@ import (

"github.com/cosmos/cosmos-sdk/x/upgrade"

"github.com/desmos-labs/desmos/v6/x/profiles"
profileskeeper "github.com/desmos-labs/desmos/v6/x/profiles/keeper"
profilestypes "github.com/desmos-labs/desmos/v6/x/profiles/types"
reactionskeeper "github.com/desmos-labs/desmos/v6/x/reactions/keeper"
relationshipskeeper "github.com/desmos-labs/desmos/v6/x/relationships/keeper"
reportskeeper "github.com/desmos-labs/desmos/v6/x/reports/keeper"
subspaceskeeper "github.com/desmos-labs/desmos/v6/x/subspaces/keeper"
supplykeeper "github.com/desmos-labs/desmos/v6/x/supply/keeper"
tokenfactorykeeper "github.com/desmos-labs/desmos/v6/x/tokenfactory/keeper"
"github.com/desmos-labs/desmos/v7/x/profiles"
profileskeeper "github.com/desmos-labs/desmos/v7/x/profiles/keeper"
profilestypes "github.com/desmos-labs/desmos/v7/x/profiles/types"
reactionskeeper "github.com/desmos-labs/desmos/v7/x/reactions/keeper"
relationshipskeeper "github.com/desmos-labs/desmos/v7/x/relationships/keeper"
reportskeeper "github.com/desmos-labs/desmos/v7/x/reports/keeper"
subspaceskeeper "github.com/desmos-labs/desmos/v7/x/subspaces/keeper"
supplykeeper "github.com/desmos-labs/desmos/v7/x/supply/keeper"
tokenfactorykeeper "github.com/desmos-labs/desmos/v7/x/tokenfactory/keeper"

authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
Expand Down
46 changes: 23 additions & 23 deletions app/app_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,29 +65,29 @@ import (
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

"github.com/desmos-labs/desmos/v6/x/posts"
postskeeper "github.com/desmos-labs/desmos/v6/x/posts/keeper"
poststypes "github.com/desmos-labs/desmos/v6/x/posts/types"
"github.com/desmos-labs/desmos/v6/x/profiles"
profileskeeper "github.com/desmos-labs/desmos/v6/x/profiles/keeper"
profilestypes "github.com/desmos-labs/desmos/v6/x/profiles/types"
"github.com/desmos-labs/desmos/v6/x/reactions"
reactionskeeper "github.com/desmos-labs/desmos/v6/x/reactions/keeper"
reactionstypes "github.com/desmos-labs/desmos/v6/x/reactions/types"
"github.com/desmos-labs/desmos/v6/x/relationships"
relationshipskeeper "github.com/desmos-labs/desmos/v6/x/relationships/keeper"
relationshipstypes "github.com/desmos-labs/desmos/v6/x/relationships/types"
"github.com/desmos-labs/desmos/v6/x/reports"
reportskeeper "github.com/desmos-labs/desmos/v6/x/reports/keeper"
reportstypes "github.com/desmos-labs/desmos/v6/x/reports/types"
"github.com/desmos-labs/desmos/v6/x/subspaces"
subspaceskeeper "github.com/desmos-labs/desmos/v6/x/subspaces/keeper"
subspacestypes "github.com/desmos-labs/desmos/v6/x/subspaces/types"
supplytypes "github.com/desmos-labs/desmos/v6/x/supply/types"
"github.com/desmos-labs/desmos/v6/x/tokenfactory"
tokenfactorytypes "github.com/desmos-labs/desmos/v6/x/tokenfactory/types"

"github.com/desmos-labs/desmos/v6/x/supply"
"github.com/desmos-labs/desmos/v7/x/posts"
postskeeper "github.com/desmos-labs/desmos/v7/x/posts/keeper"
poststypes "github.com/desmos-labs/desmos/v7/x/posts/types"
"github.com/desmos-labs/desmos/v7/x/profiles"
profileskeeper "github.com/desmos-labs/desmos/v7/x/profiles/keeper"
profilestypes "github.com/desmos-labs/desmos/v7/x/profiles/types"
"github.com/desmos-labs/desmos/v7/x/reactions"
reactionskeeper "github.com/desmos-labs/desmos/v7/x/reactions/keeper"
reactionstypes "github.com/desmos-labs/desmos/v7/x/reactions/types"
"github.com/desmos-labs/desmos/v7/x/relationships"
relationshipskeeper "github.com/desmos-labs/desmos/v7/x/relationships/keeper"
relationshipstypes "github.com/desmos-labs/desmos/v7/x/relationships/types"
"github.com/desmos-labs/desmos/v7/x/reports"
reportskeeper "github.com/desmos-labs/desmos/v7/x/reports/keeper"
reportstypes "github.com/desmos-labs/desmos/v7/x/reports/types"
"github.com/desmos-labs/desmos/v7/x/subspaces"
subspaceskeeper "github.com/desmos-labs/desmos/v7/x/subspaces/keeper"
subspacestypes "github.com/desmos-labs/desmos/v7/x/subspaces/types"
supplytypes "github.com/desmos-labs/desmos/v7/x/supply/types"
"github.com/desmos-labs/desmos/v7/x/tokenfactory"
tokenfactorytypes "github.com/desmos-labs/desmos/v7/x/tokenfactory/types"

"github.com/desmos-labs/desmos/v7/x/supply"

distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
Expand Down
32 changes: 16 additions & 16 deletions app/app_module_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@ import (

wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"

postsmodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/posts/module/v1"
profilesmodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/profiles/module/v1"
reactionsmodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/reactions/module/v1"
relationshipsmodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/relationships/module/v1"
reportsmodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/reports/module/v1"
subspacesmodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/subspaces/module/v1"
supplymodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/supply/module/v1"
tokenfactorymodulev1 "github.com/desmos-labs/desmos/v6/api/desmos/tokenfactory/module/v1"
postsmodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/posts/module/v1"
profilesmodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/profiles/module/v1"
reactionsmodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/reactions/module/v1"
relationshipsmodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/relationships/module/v1"
reportsmodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/reports/module/v1"
subspacesmodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/subspaces/module/v1"
supplymodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/supply/module/v1"
tokenfactorymodulev1 "github.com/desmos-labs/desmos/v7/api/desmos/tokenfactory/module/v1"

poststypes "github.com/desmos-labs/desmos/v6/x/posts/types"
profilestypes "github.com/desmos-labs/desmos/v6/x/profiles/types"
reactionstypes "github.com/desmos-labs/desmos/v6/x/reactions/types"
relationshipstypes "github.com/desmos-labs/desmos/v6/x/relationships/types"
reportstypes "github.com/desmos-labs/desmos/v6/x/reports/types"
subspacestypes "github.com/desmos-labs/desmos/v6/x/subspaces/types"
supplytypes "github.com/desmos-labs/desmos/v6/x/supply/types"
tokenfactorytypes "github.com/desmos-labs/desmos/v6/x/tokenfactory/types"
poststypes "github.com/desmos-labs/desmos/v7/x/posts/types"
profilestypes "github.com/desmos-labs/desmos/v7/x/profiles/types"
reactionstypes "github.com/desmos-labs/desmos/v7/x/reactions/types"
relationshipstypes "github.com/desmos-labs/desmos/v7/x/relationships/types"
reportstypes "github.com/desmos-labs/desmos/v7/x/reports/types"
subspacestypes "github.com/desmos-labs/desmos/v7/x/subspaces/types"
supplytypes "github.com/desmos-labs/desmos/v7/x/supply/types"
tokenfactorytypes "github.com/desmos-labs/desmos/v7/x/tokenfactory/types"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions app/desmos/cmd/chainlink/builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package builder
import (
"github.com/cosmos/cosmos-sdk/codec"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v6/x/profiles/client/utils"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v7/x/profiles/client/utils"
)

// ChainLinkJSONBuilder allows to build a ChainLinkJSON instance
Expand Down
10 changes: 5 additions & 5 deletions app/desmos/cmd/chainlink/builder/multi/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
"github.com/cosmos/cosmos-sdk/types/tx/signing"
authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing"

"github.com/desmos-labs/desmos/v6/app"
"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/getter"
"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v6/x/profiles/client/utils"
profilestypes "github.com/desmos-labs/desmos/v6/x/profiles/types"
"github.com/desmos-labs/desmos/v7/app"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/getter"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v7/x/profiles/client/utils"
profilestypes "github.com/desmos-labs/desmos/v7/x/profiles/types"
)

// AccountChainLinkJSONBuilder implements the ChainLinkJSONBuilder for multi signature accounts
Expand Down
8 changes: 4 additions & 4 deletions app/desmos/cmd/chainlink/builder/single/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"github.com/cosmos/cosmos-sdk/crypto/keyring"
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/getter"
"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v6/x/profiles/client/utils"
profilestypes "github.com/desmos-labs/desmos/v6/x/profiles/types"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/getter"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v7/x/profiles/client/utils"
profilestypes "github.com/desmos-labs/desmos/v7/x/profiles/types"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions app/desmos/cmd/chainlink/create_json.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (

"github.com/cosmos/cosmos-sdk/client"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder"
chainlinktypes "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/getter"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder"
chainlinktypes "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/getter"

"github.com/spf13/cobra"

"github.com/desmos-labs/desmos/v6/app"
"github.com/desmos-labs/desmos/v7/app"
)

// GetCreateChainLinkJSON returns the command allowing to generate the chain link JSON
Expand Down
4 changes: 2 additions & 2 deletions app/desmos/cmd/chainlink/create_json_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"testing"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/types"

"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
Expand All @@ -17,7 +17,7 @@ import (
authclient "github.com/cosmos/cosmos-sdk/x/auth/client"
"github.com/stretchr/testify/suite"

"github.com/desmos-labs/desmos/v6/app"
"github.com/desmos-labs/desmos/v7/app"
)

func TestCreateJSONChainLinkSuite(t *testing.T) {
Expand Down
14 changes: 7 additions & 7 deletions app/desmos/cmd/chainlink/create_json_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ import (
"encoding/hex"
"io/ioutil"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder"

cmd "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink"
"github.com/desmos-labs/desmos/v6/testutil/profilestesting"
cmd "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink"
"github.com/desmos-labs/desmos/v7/testutil/profilestesting"

"github.com/cosmos/cosmos-sdk/crypto/hd"
"github.com/cosmos/cosmos-sdk/crypto/keyring"
clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli"

multibuilder "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder/multi"
singlebuilder "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder/single"
profilescliutils "github.com/desmos-labs/desmos/v6/x/profiles/client/utils"
profilestypes "github.com/desmos-labs/desmos/v6/x/profiles/types"
multibuilder "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder/multi"
singlebuilder "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder/single"
profilescliutils "github.com/desmos-labs/desmos/v7/x/profiles/client/utils"
profilestypes "github.com/desmos-labs/desmos/v7/x/profiles/types"
)

func BuildMockChainLinkJSONBuilderProvider(getter MockGetter) builder.ChainLinkJSONBuilderProvider {
Expand Down
2 changes: 1 addition & 1 deletion app/desmos/cmd/chainlink/getter/getter.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"strings"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/types"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/types"

"github.com/manifoldco/promptui"
)
Expand Down
10 changes: 5 additions & 5 deletions app/desmos/cmd/chainlink/provider/provider.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package provider

import (
"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder"
multibuilder "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder/multi"
singlebuilder "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/builder/single"
multigetter "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/getter/multi"
singlegetter "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/getter/single"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder"
multibuilder "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder/multi"
singlebuilder "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/builder/single"
multigetter "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/getter/multi"
singlegetter "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/getter/single"
)

// DefaultChainLinkJSONBuilderProvider returns the default ChainLinkJSONBuilder provider implementation
Expand Down
10 changes: 5 additions & 5 deletions app/desmos/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import (
"github.com/cosmos/cosmos-sdk/client/pruning"
"github.com/cosmos/cosmos-sdk/client/snapshot"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink"
"github.com/desmos-labs/desmos/v6/app/desmos/cmd/sign"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd/sign"

"github.com/cosmos/cosmos-sdk/x/crisis"

"github.com/desmos-labs/desmos/v6/app"
"github.com/desmos-labs/desmos/v7/app"

dbm "github.com/cometbft/cometbft-db"
tmcfg "github.com/cometbft/cometbft/config"
Expand All @@ -39,8 +39,8 @@ import (
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"

chainlinktypes "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/getter"
chainlinkprovider "github.com/desmos-labs/desmos/v6/app/desmos/cmd/chainlink/provider"
chainlinktypes "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/getter"
chainlinkprovider "github.com/desmos-labs/desmos/v7/app/desmos/cmd/chainlink/provider"
)

// NewRootCmd creates a new root command for desmos. It is called once in the
Expand Down
4 changes: 2 additions & 2 deletions app/desmos/cmd/sign/sign_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"testing"

cmd "github.com/desmos-labs/desmos/v6/app/desmos/cmd/sign"
cmd "github.com/desmos-labs/desmos/v7/app/desmos/cmd/sign"

"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
Expand All @@ -19,7 +19,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/require"

"github.com/desmos-labs/desmos/v6/app"
"github.com/desmos-labs/desmos/v7/app"
)

func TestGetSignCmd(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions app/desmos/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import (

"github.com/cosmos/cosmos-sdk/server"

"github.com/desmos-labs/desmos/v6/app"
"github.com/desmos-labs/desmos/v7/app"

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

"github.com/desmos-labs/desmos/v6/app/desmos/cmd"
"github.com/desmos-labs/desmos/v7/app/desmos/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
simappparams "cosmossdk.io/simapp/params"
"github.com/cosmos/cosmos-sdk/std"

"github.com/desmos-labs/desmos/v6/app/params"
"github.com/desmos-labs/desmos/v7/app/params"
)

// MakeEncodingConfig creates an EncodingConfig for testing
Expand Down
Loading
Loading