Skip to content

Commit

Permalink
Release v2.0.0-rc.3 (#1803)
Browse files Browse the repository at this point in the history
* Update modules

* peerStorePath is now created in StoreWithDefaultSettings

* Release v2.0.0-rc.3
  • Loading branch information
muXxer authored Dec 21, 2022
1 parent fd14e34 commit 468043f
Show file tree
Hide file tree
Showing 11 changed files with 241 additions and 715 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file.

## [2.0.0-rc.3] - 21.12.2022

### Fixed
- Fixed JWT handling when using deeper regexes for INX plugins exposing APIs (#1802)

### Chore
- Update docker setup documentation (#1775)
- Remove docs version info (#1776)
- Move database package to hive.go (#1785)
- Move StoreHealthTracker to hive.go (#1787)
- Move p2p identity related stuff to hive.go (#1792)
- Enhance documentation sidebar with home (#1795)
- Update using_docker.md (#1799)
- Updated dependencies (#1803)


## [2.0.0-rc.2] - 27.09.2022

### Added
Expand Down
2 changes: 1 addition & 1 deletion core/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var (
Name = "HORNET"

// Version of the app.
Version = "2.0.0-rc.2"
Version = "2.0.0-rc.3"
)

func App() *app.App {
Expand Down
3 changes: 1 addition & 2 deletions core/p2p/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package p2p

import (
"context"
"path"
"path/filepath"
"time"

Expand Down Expand Up @@ -103,7 +102,7 @@ func provide(c *dig.Container) error {
CoreComponent.LogInfof(`WARNING: never share your "%s" folder as it contains your node's private key!`, deps.P2PDatabasePath)

// load up the previously generated identity or create a new one
privKey, newlyCreated, err := hivep2p.LoadOrCreateIdentityPrivateKey(path.Join(deps.P2PDatabasePath, p2p.PrivKeyFileName), ParamsP2P.IdentityPrivateKey)
privKey, newlyCreated, err := hivep2p.LoadOrCreateIdentityPrivateKey(privKeyFilePath, ParamsP2P.IdentityPrivateKey)
if err != nil {
CoreComponent.LogPanic(err)
}
Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/how_tos/private_tangle.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Once you have completed all the installation [requirements](#requirements), you
```sh
mkdir private_tangle
cd private_tangle
curl -L -O "https://github.com/iotaledger/hornet/releases/download/v2.0.0-rc.1/HORNET-2.0.0-rc.1-private_tangle.tar.gz"
tar -zxf HORNET-2.0.0-rc.1-private_tangle.tar.gz
curl -L -O "https://github.com/iotaledger/hornet/releases/download/v2.0.0-rc.3/HORNET-2.0.0-rc.3-private_tangle.tar.gz"
tar -zxf HORNET-2.0.0-rc.3-private_tangle.tar.gz
```

## Bootstrap your network
Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/how_tos/using_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ Once you have completed all the installation [requirements](#requirements), you
```sh
mkdir hornet
cd hornet
curl -L -O "https://github.com/iotaledger/node-docker-setup/releases/download/v1.0.0-rc.1/node-docker-setup-v1.0.0-rc.1.tar.gz"
tar -zxf node-docker-setup-v1.0.0-rc.1.tar.gz
curl -L -O "https://github.com/iotaledger/node-docker-setup/releases/download/v1.0.0-rc.2/node-docker-setup-v1.0.0-rc.2.tar.gz"
tar -zxf node-docker-setup-v1.0.0-rc.2.tar.gz
```

## Prepare
Expand Down
64 changes: 32 additions & 32 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ go 1.19

require (
github.com/blang/vfs v1.0.0
github.com/cockroachdb/pebble v0.0.0-20221111210721-1bda21f14fc2
github.com/docker/docker v20.10.21+incompatible
github.com/cockroachdb/pebble v0.0.0-20221220215741-4510a8c5f244
github.com/docker/docker v20.10.22+incompatible
github.com/docker/go-connections v0.4.0
github.com/dustin/go-humanize v1.0.0
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/iotaledger/go-ds-kvstore v1.0.0-rc.1
github.com/iotaledger/hive.go/core v1.0.0-rc.1.0.20221114150348-c47a0d622930
github.com/iotaledger/hive.go/core v1.0.0-rc.2
github.com/iotaledger/hive.go/serializer/v2 v2.0.0-rc.1
github.com/iotaledger/inx-app v1.0.0-rc.1
github.com/iotaledger/inx/go v1.0.0-rc.1
Expand All @@ -20,20 +20,20 @@ require (
github.com/labstack/echo-contrib v0.13.0
github.com/labstack/echo/v4 v4.9.1
github.com/labstack/gommon v0.4.0
github.com/libp2p/go-libp2p v0.23.4
github.com/libp2p/go-libp2p v0.24.1
github.com/mr-tron/base58 v1.2.0
github.com/multiformats/go-multiaddr v0.8.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.14.0
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
github.com/wollac/iota-crypto-demo v0.0.0-20221110111209-fd61e047b438
github.com/wollac/iota-crypto-demo v0.0.0-20221117162917-b10619eccb98
go.uber.org/atomic v1.10.0
go.uber.org/dig v1.15.0
golang.org/x/crypto v0.2.0
golang.org/x/term v0.2.0
google.golang.org/grpc v1.50.1
golang.org/x/crypto v0.4.0
golang.org/x/term v0.3.0
google.golang.org/grpc v1.51.0
)

require (
Expand All @@ -42,9 +42,9 @@ require (
github.com/Microsoft/go-winio v0.6.0 // indirect
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.1 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cockroachdb/errors v1.9.0 // indirect
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
Expand All @@ -63,7 +63,7 @@ require (
github.com/flynn/noise v1.0.0 // indirect
github.com/francoispqt/gojay v1.2.13 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/getsentry/sentry-go v0.15.0 // indirect
github.com/getsentry/sentry-go v0.16.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
Expand All @@ -74,22 +74,23 @@ require (
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/gopacket v1.1.19 // indirect
github.com/google/pprof v0.0.0-20221219190121-3cb0bae90811 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
github.com/huin/goupnp v1.0.3 // indirect
github.com/iancoleman/orderedmap v0.2.0 // indirect
github.com/iotaledger/grocksdb v1.7.5-0.20220808142449-1dc0b8ac4d7d // indirect
github.com/iotaledger/grocksdb v1.7.5-0.20221128103803-fcdb79760195 // indirect
github.com/ipfs/go-cid v0.3.2 // indirect
github.com/ipfs/go-datastore v0.6.0 // indirect
github.com/ipfs/go-log/v2 v2.5.1 // indirect
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
github.com/jbenet/goprocess v0.1.4 // indirect
github.com/jellydator/ttlcache/v2 v2.11.1 // indirect
github.com/klauspost/compress v1.15.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.0 // indirect
github.com/klauspost/compress v1.15.13 // indirect
github.com/klauspost/cpuid/v2 v2.2.2 // indirect
github.com/knadh/koanf v1.4.4 // indirect
github.com/koron/go-ssdp v0.0.3 // indirect
github.com/kr/pretty v0.3.1 // indirect
Expand All @@ -104,7 +105,7 @@ require (
github.com/libp2p/go-openssl v0.1.0 // indirect
github.com/libp2p/go-reuseport v0.2.0 // indirect
github.com/libp2p/go-yamux/v4 v4.0.0 // indirect
github.com/lucas-clemente/quic-go v0.29.1 // indirect
github.com/lucas-clemente/quic-go v0.31.1 // indirect
github.com/marten-seemann/qtls-go1-18 v0.1.3 // indirect
github.com/marten-seemann/qtls-go1-19 v0.1.1 // indirect
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
Expand All @@ -129,22 +130,21 @@ require (
github.com/multiformats/go-multicodec v0.7.0 // indirect
github.com/multiformats/go-multihash v0.2.1 // indirect
github.com/multiformats/go-multistream v0.3.3 // indirect
github.com/multiformats/go-varint v0.0.6 // indirect
github.com/multiformats/go-varint v0.0.7 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/oasisprotocol/ed25519 v0.0.0-20210505154701-76d8c688d86e // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.24.0 // indirect
github.com/onsi/ginkgo/v2 v2.6.1 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/opencontainers/runtime-spec v1.0.2 // indirect
github.com/panjf2000/ants/v2 v2.6.0 // indirect
github.com/panjf2000/ants/v2 v2.7.1 // indirect
github.com/pasztorpisti/qs v0.0.0-20171216220353-8d6c33ee906c // indirect
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/petermattis/goid v0.0.0-20221018141743-354ef7f2fd21 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/petermattis/goid v0.0.0-20221215004737-a150e88a970d // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/common v0.39.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/raulk/go-watchdog v1.3.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
Expand All @@ -157,20 +157,20 @@ require (
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/exp v0.0.0-20221111204811-129d8d6c17ab // indirect
go.uber.org/fx v1.18.2 // indirect
go.uber.org/multierr v1.9.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/exp v0.0.0-20221217163422-3c43f8badb15 // indirect
golang.org/x/mod v0.7.0 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
golang.org/x/time v0.2.0 // indirect
golang.org/x/tools v0.3.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.4.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/genproto v0.0.0-20221111202108-142d8a6fa32e // indirect
google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.4.0 // indirect
Expand Down
Loading

0 comments on commit 468043f

Please sign in to comment.