Skip to content

Commit

Permalink
v0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
karimodm committed Aug 8, 2022
2 parents af7437a + f4ed644 commit b9806c5
Show file tree
Hide file tree
Showing 465 changed files with 3,604 additions and 2,668 deletions.
28 changes: 22 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# v0.9.4 - 2022-08-08

> This release mostly include maintenance changes to the deployment scripts and minor bug fixes.
- readLoop errors should lead to neighbor's disconnection (#2375)
- Enable debug logging on Devnet (#2374)
- Update hive.go version (#2369)
- Increase delimiter to avoid deserialization error (#2370)
- Streamable Snapshot (#2358)
- Refactor: renamed tangle package (#2352)
- Refactor: Refactored package structure (#2350)
- Fix: syncing and bootstrapping (#2349)
- Build(deps): bump terser in /plugins/dagsvisualizer/frontend (#2354)
- Build(deps): bump terser in /plugins/dashboard/frontend (#2355)
- Build(deps): bump terser in /plugins/analysis/dashboard/frontend (#2356)

# v0.9.3 - 2022-07-19

> This release introduces bugfixes and improvements found in the previous release.
Expand Down Expand Up @@ -323,12 +339,12 @@ if you want to automatically override the already stored private key, use `node.

We have also created a more streamlined deployment for our infrastructure which means that IF provided endpoints have changed:

| Service | Old | New |
| ----------------------------------- | ---------------------------------- | ---------------------------------------------------------- |
| Analysis Server | ressims.iota.cafe:21888 | analysisentry-01.devnet.shimmer.iota.cafe:21888 |
| IOTA 2.0 DevNet Analyzer | http://ressims.iota.cafe:28080 | http://analysisentry-01.devnet.shimmer.iota.cafe:28080 |
| Autopeering Entry Node "2PV5487..." | [identity]@ressims.iota.cafe:15626 | [identity]@analysisentry-01.devnet.shimmer.iota.cafe:15626 |
| LogStash Remote Log | ressims.iota.cafe:5213 | metrics-01.devnet.shimmer.iota.cafe:5213 |
| Service | Old | New |
| ----------------------------------- | ---------------------------------- | ------------------------------------------------------------------------------------------ |
| Analysis Server | ressims.iota.cafe:21888 | analysisentry-01.devnet.shimmer.iota.cafe:21888 |
| IOTA 2.0 DevNet Analyzer | http://ressims.iota.cafe:28080 | http://analysisentry-01.devnet.shimmer.iota.cafe:28080 |
| Autopeering Entry Node "2PV5487..." | [identity]@ressims.iota.cafe:15626 | [identity]@analysisentry-01.devnet.shimmer.iota.cafe:15626 |
| LogStash Remote Log | ressims.iota.cafe:5213 | metrics-01.devnet.shimmer.iota.cafe:5213 |
| Daily Database | N/A | https://dbfiles-goshimmer.s3.eu-central-1.amazonaws.com/dbs/nectar/automated/latest-db.tgz |

Other changes:
Expand Down
2 changes: 1 addition & 1 deletion client/autopeering.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net/http"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"net/http"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
10 changes: 5 additions & 5 deletions client/evilspammer/spammer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"github.com/cockroachdb/errors"

"github.com/iotaledger/goshimmer/client/evilwallet"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"

"github.com/iotaledger/hive.go/configuration"
"github.com/iotaledger/hive.go/logger"
"github.com/iotaledger/hive.go/types"
"github.com/iotaledger/hive.go/core/configuration"
"github.com/iotaledger/hive.go/core/logger"
"github.com/iotaledger/hive.go/core/types"
"go.uber.org/atomic"
)

Expand Down
2 changes: 1 addition & 1 deletion client/evilspammer/spamming_functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/cockroachdb/errors"

"github.com/iotaledger/goshimmer/client/evilwallet"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

func DataSpammingFunction(s *Spammer) {
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/aliasmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/cockroachdb/errors"
"go.uber.org/atomic"

"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// region AliasManager /////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
10 changes: 5 additions & 5 deletions client/evilwallet/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import (
"sync"
"time"

"github.com/iotaledger/hive.go/identity"
"github.com/iotaledger/hive.go/types/confirmation"
"github.com/iotaledger/hive.go/core/identity"
"github.com/iotaledger/hive.go/core/types/confirmation"

"github.com/iotaledger/goshimmer/client"
"github.com/iotaledger/goshimmer/client/wallet"
"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

type ServersStatus []*wallet.ServerStatus
Expand Down
2 changes: 1 addition & 1 deletion client/evilwallet/evilscenario.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/mr-tron/base58"
"go.uber.org/atomic"

"github.com/iotaledger/hive.go/types"
"github.com/iotaledger/hive.go/core/types"
)

// The custom conflict in spammer can be provided like this:
Expand Down
8 changes: 4 additions & 4 deletions client/evilwallet/evilwallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import (
"time"

"github.com/cockroachdb/errors"
"github.com/iotaledger/hive.go/identity"
"github.com/iotaledger/hive.go/types"
"github.com/iotaledger/hive.go/core/identity"
"github.com/iotaledger/hive.go/core/types"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions client/evilwallet/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (

"github.com/cockroachdb/errors"

"github.com/iotaledger/hive.go/types"
"github.com/iotaledger/hive.go/core/types"

"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// region Options ///////////////////////////////////////////////////////////////////////////
Expand Down
6 changes: 3 additions & 3 deletions client/evilwallet/output_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"time"

"github.com/cockroachdb/errors"
"github.com/iotaledger/hive.go/types"
"github.com/iotaledger/hive.go/core/types"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions client/evilwallet/utils.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package evilwallet

import (
"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// SplitBalanceEqually splits the balance equally between `splitNumber` outputs.
Expand Down
8 changes: 4 additions & 4 deletions client/evilwallet/wallets.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import (
"sync"

"github.com/cockroachdb/errors"
"github.com/iotaledger/hive.go/generics/lo"
"github.com/iotaledger/hive.go/core/generics/lo"

"github.com/iotaledger/hive.go/types"
"github.com/iotaledger/hive.go/core/types"
"go.uber.org/atomic"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/client/wallet/packages/seed"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

type walletID int
Expand Down
12 changes: 6 additions & 6 deletions client/faucet.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (
"net/http"

"github.com/cockroachdb/errors"
"github.com/iotaledger/hive.go/identity"
"github.com/iotaledger/hive.go/core/identity"

"github.com/iotaledger/goshimmer/packages/faucet"
"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/mana"
"github.com/iotaledger/goshimmer/packages/pow"
"github.com/iotaledger/goshimmer/packages/app/faucet"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/mana"
"github.com/iotaledger/goshimmer/packages/core/pow"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/firewall.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"

"github.com/cockroachdb/errors"
"github.com/iotaledger/hive.go/identity"
"github.com/iotaledger/hive.go/core/identity"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"net/http"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/ledgerstate.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"strings"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/mana.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net/http"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions client/manualpeering.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"net/http"

"github.com/cockroachdb/errors"
"github.com/iotaledger/hive.go/crypto/ed25519"
"github.com/iotaledger/hive.go/core/crypto/ed25519"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/manualpeering"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
"github.com/iotaledger/goshimmer/packages/node/manualpeering"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"net/http"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/ratesetter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"time"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/spammer.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net/http"

"github.com/iotaledger/goshimmer/packages/jsonmodels"
"github.com/iotaledger/goshimmer/packages/app/jsonmodels"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/address_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package wallet
import (
"runtime"

"github.com/iotaledger/hive.go/bitmask"
"github.com/iotaledger/hive.go/core/bitmask"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/client/wallet/packages/seed"
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"github.com/capossele/asset-registry/pkg/registry"
"github.com/cockroachdb/errors"

"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// Asset represents a container for all the information regarding a colored coin.
Expand Down
6 changes: 3 additions & 3 deletions client/wallet/assetregistry.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"github.com/capossele/asset-registry/pkg/registryclient"
"github.com/cockroachdb/errors"
"github.com/go-resty/resty/v2"
"github.com/iotaledger/hive.go/marshalutil"
"github.com/iotaledger/hive.go/serix"
"github.com/iotaledger/hive.go/core/marshalutil"
"github.com/iotaledger/hive.go/core/serix"

"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/balances.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sort"
"time"

"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// TimedBalance represents a balance that is time dependent.
Expand Down
8 changes: 4 additions & 4 deletions client/wallet/connector.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package wallet

import (
"github.com/iotaledger/hive.go/types/confirmation"
"github.com/iotaledger/hive.go/core/types/confirmation"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/mana"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/mana"
)

// Connector represents an interface that defines how the wallet interacts with the network. A wallet can either be used
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"time"

"github.com/capossele/asset-registry/pkg/registryservice"
"github.com/iotaledger/hive.go/bitmask"
"github.com/iotaledger/hive.go/core/bitmask"

"github.com/iotaledger/goshimmer/client"
"github.com/iotaledger/goshimmer/client/wallet/packages/seed"
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"time"

"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// Output is a wallet specific representation of an output in the IOTA network.
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/output_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package wallet

import (
"github.com/iotaledger/goshimmer/client/wallet/packages/address"
"github.com/iotaledger/goshimmer/packages/ledger/utxo"
"github.com/iotaledger/goshimmer/packages/core/ledger/utxo"
)

// OutputManager keeps track of the outputs.
Expand Down
4 changes: 2 additions & 2 deletions client/wallet/packages/address/address.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package address

import (
"github.com/iotaledger/hive.go/stringify"
"github.com/iotaledger/hive.go/core/stringify"
"github.com/mr-tron/base58"

"github.com/iotaledger/goshimmer/packages/ledger/vm/devnetvm"
"github.com/iotaledger/goshimmer/packages/core/ledger/vm/devnetvm"
)

// Address represents an address in a wallet. It extends the normal address type with an index number that was used to
Expand Down
Loading

0 comments on commit b9806c5

Please sign in to comment.