Skip to content

Commit

Permalink
release: v0.21.0 (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Jan 4, 2024
1 parent 9200663 commit cf98e1e
Show file tree
Hide file tree
Showing 16 changed files with 110 additions and 60 deletions.
52 changes: 51 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,53 @@
## [Unreleased]


<a name="v0.21.0"></a>
## [v0.21.0] - 2024-01-04
### Build
- **deps:** update minicbor requirement from 0.19 to 0.20 ([#337](https://github.com/txpipe/pallas/issues/337))

### Chore
- fix lint warnings across the board ([#374](https://github.com/txpipe/pallas/issues/374))
- fix code formatting ([#363](https://github.com/txpipe/pallas/issues/363))
- **txbuilder:** fix lint warnings ([#343](https://github.com/txpipe/pallas/issues/343))
- **wallet:** fix lint warnings ([#344](https://github.com/txpipe/pallas/issues/344))

### Doc
- **applying:** add ShelleyMA tests description ([#356](https://github.com/txpipe/pallas/issues/356))

### Feat
- introduce transaction builder crate ([#338](https://github.com/txpipe/pallas/issues/338))
- introduce wallet crate for ed25519-bip32 key management ([#342](https://github.com/txpipe/pallas/issues/342))
- **applying:** implement ShelleyMA phase-1 validations ([#354](https://github.com/txpipe/pallas/issues/354))
- **configs:** add Shelley config structs ([#359](https://github.com/txpipe/pallas/issues/359))
- **hardano:** implement search for the immutabledb reader ([#372](https://github.com/txpipe/pallas/issues/372))
- **hardano:** implement immutable db chunk parsing ([#328](https://github.com/txpipe/pallas/issues/328))
- **network:** implement GetUTxOByAddress local state query ([#341](https://github.com/txpipe/pallas/issues/341))
- **network:** add sanchonet compatibility ([#355](https://github.com/txpipe/pallas/issues/355))
- **network:** update n2n handshake versions & add keepalive miniprotocol ([#362](https://github.com/txpipe/pallas/issues/362))
- **network:** implement split read / write for NamedPipe bearer ([#371](https://github.com/txpipe/pallas/issues/371))
- **network:** implement stake distribution local state query ([#340](https://github.com/txpipe/pallas/issues/340))
- **rolldb:** add method to check if db is empty ([#352](https://github.com/txpipe/pallas/issues/352))
- **traverse:** improve protocol update access ([#360](https://github.com/txpipe/pallas/issues/360))
- **wallet:** implement HD private keys & encrypted wrapper ([#358](https://github.com/txpipe/pallas/issues/358))

### Fix
- update pallas-applying to work with keepraw native scripts ([#370](https://github.com/txpipe/pallas/issues/370))
- correct datum kind for set_datum_hash ([#350](https://github.com/txpipe/pallas/issues/350))
- return witness objects for conway era multieratx ([#346](https://github.com/txpipe/pallas/issues/346))
- fix unable to build and sign txs ([#345](https://github.com/txpipe/pallas/issues/345))
- add txbuilder to unstable feature gate ([#349](https://github.com/txpipe/pallas/issues/349))
- **hardano:** remove panics from immutable db parsing ([#351](https://github.com/txpipe/pallas/issues/351))
- **network:** set so_linger socket option to match cardano-node ([#369](https://github.com/txpipe/pallas/issues/369))
- **network:** demux using one mpsc channel per miniprotocol ([#366](https://github.com/txpipe/pallas/issues/366))
- **network:** add tcp_nodelay to bearer ([#365](https://github.com/txpipe/pallas/issues/365))
- **network:** use correct client state transition for n2n txsub ([#348](https://github.com/txpipe/pallas/issues/348))
- **network:** relax connect args lifetime ([#367](https://github.com/txpipe/pallas/issues/367))

### Refactor
- **network:** split bearer into read/write ([#364](https://github.com/txpipe/pallas/issues/364))


<a name="v0.20.0"></a>
## [v0.20.0] - 2023-11-20
### Chore
Expand Down Expand Up @@ -34,7 +81,9 @@
### Fix
- fix conditional code for windows builds ([#334](https://github.com/txpipe/pallas/issues/334))
- make rolldb an optional dependency ([#329](https://github.com/txpipe/pallas/issues/329))
- **applying:** define specific dependency versions
- **applying:** contemplate fee rules for genesis UTxOs ([#332](https://github.com/txpipe/pallas/issues/332))
- **network:** add missing rt feature for tokio
- **network:** add missing feature gate flag to tokio dependency ([#333](https://github.com/txpipe/pallas/issues/333))
- **network:** fix bad codec for tx monitoring messages ([#298](https://github.com/txpipe/pallas/issues/298))
- **rolldb:** fix find wal sequence semantics ([#310](https://github.com/txpipe/pallas/issues/310))
Expand Down Expand Up @@ -1010,7 +1059,8 @@ handshake, chainsync, localstate and blockfetch mini-protocols changed the API s
- apply fmt to entire workspace


[Unreleased]: https://github.com/txpipe/pallas/compare/v0.20.0...HEAD
[Unreleased]: https://github.com/txpipe/pallas/compare/v0.21.0...HEAD
[v0.21.0]: https://github.com/txpipe/pallas/compare/v0.20.0...v0.21.0
[v0.20.0]: https://github.com/txpipe/pallas/compare/v0.19.1...v0.20.0
[v0.19.1]: https://github.com/txpipe/pallas/compare/v0.19.0...v0.19.1
[v0.19.0]: https://github.com/txpipe/pallas/compare/v0.18.2...v0.19.0
Expand Down
6 changes: 3 additions & 3 deletions pallas-addresses/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-addresses"
description = "Ergonomic library to work with different Cardano addresses"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -12,8 +12,8 @@ authors = ["Santiago Carmuega <[email protected]>"]

[dependencies]
hex = "0.4.3"
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
base58 = "0.2.0"
bech32 = "0.9.1"
thiserror = "1.0.31"
Expand Down
12 changes: 6 additions & 6 deletions pallas-applying/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-applying"
description = "Logic for validating and applying new blocks and txs to the chain state"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/MaicoLeberle/pallas"
homepage = "https://github.com/MaicoLeberle/pallas"
Expand All @@ -13,11 +13,11 @@ authors = ["Maico Leberle <[email protected]>"]
doctest = false

[dependencies]
pallas-addresses = { version = "=0.20.0", path = "../pallas-addresses" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-primitives = { version = "=0.20.0", path = "../pallas-primitives" }
pallas-traverse = { version = "=0.20.0", path = "../pallas-traverse" }
pallas-addresses = { version = "=0.21.0", path = "../pallas-addresses" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
pallas-primitives = { version = "=0.21.0", path = "../pallas-primitives" }
pallas-traverse = { version = "=0.21.0", path = "../pallas-traverse" }
rand = "0.8"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pallas-codec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-codec"
description = "Pallas common CBOR encoding interface and utilities"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
8 changes: 4 additions & 4 deletions pallas-configs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-configs"
description = "Config structs and utilities matching the Haskell implementation"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -12,9 +12,9 @@ authors = ["Santiago Carmuega <[email protected]>"]

[dependencies]
hex = "0.4.3"
pallas-addresses = { version = "=0.20.0", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-addresses = { version = "=0.21.0", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
serde = { version = "1.0.136", optional = true, features = ["derive"] }
serde_json = { version = "1.0.79", optional = true }
base64 = "0.21.2"
Expand Down
4 changes: 2 additions & 2 deletions pallas-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-crypto"
description = "Cryptographic primitives for Cardano"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -15,7 +15,7 @@ hex = "0.4"
cryptoxide = { version = "0.4.1" }
thiserror = "1.0"
rand_core = "0.6"
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
serde = "1.0.143"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions pallas-hardano/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-hardano"
description = "Pallas interoperability with the Haskel Cardano node implementation"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -15,8 +15,8 @@ thiserror = "1.0.49"
binary-layout = "3.2.0"
tap = "1.0.1"
tracing = "0.1.40"
pallas-traverse = { version = "0.20.0", path = "../pallas-traverse" }
pallas-network = { version = "0.20.0", path = "../pallas-network" }
pallas-traverse = { version = "=0.21.0", path = "../pallas-traverse" }
pallas-network = { version = "=0.21.0", path = "../pallas-network" }

[dev-dependencies]
tracing-subscriber = "0.3.17"
Expand Down
Empty file added pallas-network/CHANGELOG.md
Empty file.
6 changes: 3 additions & 3 deletions pallas-network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-network"
description = "Ouroboros networking stack using async IO"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -14,8 +14,8 @@ authors = ["Santiago Carmuega <[email protected]>", "Pi Lanningham <pi.lannin
byteorder = "1.4.3"
hex = "0.4.3"
itertools = "0.10.5"
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
rand = "0.8.5"
socket2 = "0.5.5"
thiserror = "1.0.31"
Expand Down
6 changes: 3 additions & 3 deletions pallas-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-primitives"
description = "Ledger primitives and cbor codec for the different Cardano eras"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -16,8 +16,8 @@ authors = [
[dependencies]
hex = "0.4.3"
log = "0.4.14"
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
base58 = "0.2.0"
bech32 = "0.9.0"
serde = { version = "1.0.136", optional = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions pallas-rolldb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-rolldb"
description = "An opinionated Cardano storage engine built on top of RocksDB"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -15,7 +15,7 @@ rocksdb = { version = "0.21.0", default-features = false, features = ["multi-thr
bincode = "1.3.3"
serde = "1.0.188"
thiserror = "1.0.49"
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
tracing = "0.1.37"
tokio = { version = "1.32.0", features = ["sync", "rt", "time", "macros"] }
async-stream = "0.3.5"
Expand Down
10 changes: 5 additions & 5 deletions pallas-traverse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-traverse"
description = "Utilities to traverse over multi-era block data"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -11,10 +11,10 @@ readme = "README.md"
authors = ["Santiago Carmuega <[email protected]>"]

[dependencies]
pallas-primitives = { version = "=0.20.0", path = "../pallas-primitives" }
pallas-addresses = { version = "=0.20.0", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-primitives = { version = "=0.21.0", path = "../pallas-primitives" }
pallas-addresses = { version = "=0.21.0", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
hex = "0.4.3"
thiserror = "1.0.31"
paste = "1.0.14"
Expand Down
14 changes: 7 additions & 7 deletions pallas-txbuilder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallas-txbuilder"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -13,12 +13,12 @@ authors = [
]

[dependencies]
pallas-codec = { path = "../pallas-codec", version = "=0.20.0" }
pallas-crypto = { path = "../pallas-crypto", version = "=0.20.0" }
pallas-primitives = { path = "../pallas-primitives", version = "=0.20.0" }
pallas-traverse = { path = "../pallas-traverse", version = "=0.20.0" }
pallas-addresses = { path = "../pallas-addresses", version = "=0.20.0" }
pallas-wallet = { path = "../pallas-wallet", version = "=0.20.0" }
pallas-codec = { path = "../pallas-codec", version = "=0.21.0" }
pallas-crypto = { path = "../pallas-crypto", version = "=0.21.0" }
pallas-primitives = { path = "../pallas-primitives", version = "=0.21.0" }
pallas-traverse = { path = "../pallas-traverse", version = "=0.21.0" }
pallas-addresses = { path = "../pallas-addresses", version = "=0.21.0" }
pallas-wallet = { path = "../pallas-wallet", version = "=0.21.0" }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.44"
Expand Down
8 changes: 4 additions & 4 deletions pallas-utxorpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-utxorpc"
description = "Pallas interoperability with the UTxORPC spec"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -13,6 +13,6 @@ authors = ["Santiago Carmuega <[email protected]>"]
[dependencies]
#utxorpc = { path = "../../../utxorpc/rust-sdk" }
utxorpc = { version = "1.0.0-alpha.1" }
pallas-traverse = { version = "=0.20.0", path = "../pallas-traverse" }
pallas-primitives = { version = "=0.20.0", path = "../pallas-primitives" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec" }
pallas-traverse = { version = "=0.21.0", path = "../pallas-traverse" }
pallas-primitives = { version = "=0.21.0", path = "../pallas-primitives" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec" }
4 changes: 2 additions & 2 deletions pallas-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas-wallet"
description = "Cardano wallet utilities such as key generation"
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -11,7 +11,7 @@ authors = ["Santiago Carmuega <[email protected]>"]

[dependencies]
thiserror = "1.0.49"
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto" }
ed25519-bip32 = "0.4.1"
bip39 = { version = "2.0.0", features = ["rand_core"] }
cryptoxide = "0.4.4"
Expand Down
28 changes: 14 additions & 14 deletions pallas/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pallas"
description = "Rust-native building blocks for the Cardano blockchain ecosystem."
version = "0.20.0"
version = "0.21.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand All @@ -11,19 +11,19 @@ readme = "../README.md"
authors = ["Santiago Carmuega <[email protected]>"]

[dependencies]
pallas-applying = { version = "=0.20.0", path = "../pallas-applying/" }
pallas-network = { version = "=0.20.0", path = "../pallas-network/" }
pallas-primitives = { version = "=0.20.0", path = "../pallas-primitives/" }
pallas-traverse = { version = "=0.20.0", path = "../pallas-traverse/" }
pallas-addresses = { version = "=0.20.0", path = "../pallas-addresses/" }
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto/" }
pallas-codec = { version = "=0.20.0", path = "../pallas-codec/" }
pallas-utxorpc = { version = "=0.20.0", path = "../pallas-utxorpc/" }
pallas-configs = { version = "=0.20.0", path = "../pallas-configs/" }
pallas-rolldb = { version = "=0.20.0", path = "../pallas-rolldb/", optional = true }
pallas-wallet = { version = "=0.20.0", path = "../pallas-wallet/", optional = true }
pallas-hardano = { version = "=0.20.0", path = "../pallas-hardano/", optional = true }
pallas-txbuilder = { version = "=0.20.0", path = "../pallas-txbuilder/", optional = true }
pallas-applying = { version = "=0.21.0", path = "../pallas-applying/" }
pallas-network = { version = "=0.21.0", path = "../pallas-network/" }
pallas-primitives = { version = "=0.21.0", path = "../pallas-primitives/" }
pallas-traverse = { version = "=0.21.0", path = "../pallas-traverse/" }
pallas-addresses = { version = "=0.21.0", path = "../pallas-addresses/" }
pallas-crypto = { version = "=0.21.0", path = "../pallas-crypto/" }
pallas-codec = { version = "=0.21.0", path = "../pallas-codec/" }
pallas-utxorpc = { version = "=0.21.0", path = "../pallas-utxorpc/" }
pallas-configs = { version = "=0.21.0", path = "../pallas-configs/" }
pallas-rolldb = { version = "=0.21.0", path = "../pallas-rolldb/", optional = true }
pallas-wallet = { version = "=0.21.0", path = "../pallas-wallet/", optional = true }
pallas-hardano = { version = "=0.21.0", path = "../pallas-hardano/", optional = true }
pallas-txbuilder = { version = "=0.21.0", path = "../pallas-txbuilder/", optional = true }

[features]
unstable = ["pallas-rolldb", "pallas-wallet", "pallas-hardano", "pallas-txbuilder"]

0 comments on commit cf98e1e

Please sign in to comment.