Release 0.23.0

pallas@0.23.0
pallas-addresses@0.23.0
pallas-applying@0.23.0
pallas-codec@0.23.0
pallas-configs@0.23.0
pallas-crypto@0.23.0
pallas-hardano@0.23.0
pallas-network@0.23.0
pallas-primitives@0.23.0
pallas-rolldb@0.23.0
pallas-traverse@0.23.0
pallas-txbuilder@0.23.0
pallas-utxorpc@0.23.0
pallas-wallet@0.23.0

Generated by cargo-workspaces
This commit is contained in:
Santiago Carmuega 2024-02-11 17:59:47 -03:00
parent 3dd00ad3cd
commit 5a44f38e7a
No known key found for this signature in database
15 changed files with 82 additions and 61 deletions

View file

@ -1,8 +1,27 @@
<a name="unreleased"></a> <a name="unreleased"></a>
## [Unreleased] ## [Unreleased]
<a name="v0.23.0"></a>
## [v0.23.0] - 2024-02-11
### Build
- **deps:** update itertools requirement from 0.10.5 to 0.12.1 ([#390](https://github.com/txpipe/pallas/issues/390))
### Chore
- fix new lint warnings ([#400](https://github.com/txpipe/pallas/issues/400))
- update utxorpc-spec to 0.3.0 ([#399](https://github.com/txpipe/pallas/issues/399))
### Feat ### Feat
- **hardano:** enable async for read_blocks_from_point iterator ([#379](https://github.com/txpipe/pallas/issues/379)) - **network:** implement stake snapshot local state query ([#394](https://github.com/txpipe/pallas/issues/394))
### Fix
- support multiple pools in stake snapshot query ([#396](https://github.com/txpipe/pallas/issues/396))
- contemplate legacy tx outputs in utxo by address query ([#386](https://github.com/txpipe/pallas/issues/386))
- favor Babbage over Conway for tx decoding ([#389](https://github.com/txpipe/pallas/issues/389))
- **addresses:** check length before decoding ([#377](https://github.com/txpipe/pallas/issues/377))
- **traverse:** fix conway txs not returning reference inputs ([#388](https://github.com/txpipe/pallas/issues/388))
- **traverse:** add missing tx field getters for Conway ([#392](https://github.com/txpipe/pallas/issues/392))
- **utxorpc:** map missing struct values ([#387](https://github.com/txpipe/pallas/issues/387))
<a name="v0.22.0"></a> <a name="v0.22.0"></a>
@ -10,6 +29,7 @@
### Feat ### Feat
- implement `GetCurrentPParams` local state query ([#322](https://github.com/txpipe/pallas/issues/322)) - implement `GetCurrentPParams` local state query ([#322](https://github.com/txpipe/pallas/issues/322))
- **applying:** implement Alonzo phase-1 validations ([#380](https://github.com/txpipe/pallas/issues/380)) - **applying:** implement Alonzo phase-1 validations ([#380](https://github.com/txpipe/pallas/issues/380))
- **hardano:** enable async for read_blocks_from_point iterator ([#379](https://github.com/txpipe/pallas/issues/379))
- **network:** implement server side KeepAlive ([#376](https://github.com/txpipe/pallas/issues/376)) - **network:** implement server side KeepAlive ([#376](https://github.com/txpipe/pallas/issues/376))
### Fix ### Fix
@ -1079,7 +1099,8 @@ handshake, chainsync, localstate and blockfetch mini-protocols changed the API s
- apply fmt to entire workspace - apply fmt to entire workspace
[Unreleased]: https://github.com/txpipe/pallas/compare/v0.22.0...HEAD [Unreleased]: https://github.com/txpipe/pallas/compare/v0.23.0...HEAD
[v0.23.0]: https://github.com/txpipe/pallas/compare/v0.22.0...v0.23.0
[v0.22.0]: https://github.com/txpipe/pallas/compare/v0.21.0...v0.22.0 [v0.22.0]: https://github.com/txpipe/pallas/compare/v0.21.0...v0.22.0
[v0.21.0]: https://github.com/txpipe/pallas/compare/v0.20.0...v0.21.0 [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.20.0]: https://github.com/txpipe/pallas/compare/v0.19.1...v0.20.0

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-addresses" name = "pallas-addresses"
description = "Ergonomic library to work with different Cardano addresses" description = "Ergonomic library to work with different Cardano addresses"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,8 +12,8 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
hex = "0.4.3" hex = "0.4.3"
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
base58 = "0.2.0" base58 = "0.2.0"
bech32 = "0.9.1" bech32 = "0.9.1"
thiserror = "1.0.31" thiserror = "1.0.31"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-applying" name = "pallas-applying"
description = "Logic for validating and applying new blocks and txs to the chain state" description = "Logic for validating and applying new blocks and txs to the chain state"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/MaicoLeberle/pallas" repository = "https://github.com/MaicoLeberle/pallas"
homepage = "https://github.com/MaicoLeberle/pallas" homepage = "https://github.com/MaicoLeberle/pallas"
@ -13,11 +13,11 @@ authors = ["Maico Leberle <maico.leberle@gmail.com>"]
doctest = false doctest = false
[dependencies] [dependencies]
pallas-addresses = { version = "=0.22.0", path = "../pallas-addresses" } pallas-addresses = { version = "=0.23.0", path = "../pallas-addresses" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
pallas-primitives = { version = "=0.22.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.23.0", path = "../pallas-primitives" }
pallas-traverse = { version = "=0.22.0", path = "../pallas-traverse" } pallas-traverse = { version = "=0.23.0", path = "../pallas-traverse" }
rand = "0.8" rand = "0.8"
hex = "0.4" hex = "0.4"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-codec" name = "pallas-codec"
description = "Pallas common CBOR encoding interface and utilities" description = "Pallas common CBOR encoding interface and utilities"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-configs" name = "pallas-configs"
description = "Config structs and utilities matching the Haskell implementation" description = "Config structs and utilities matching the Haskell implementation"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,9 +12,9 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
hex = "0.4.3" hex = "0.4.3"
pallas-addresses = { version = "=0.22.0", path = "../pallas-addresses" } pallas-addresses = { version = "=0.23.0", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
serde = { version = "1.0.136", optional = true, features = ["derive"] } serde = { version = "1.0.136", optional = true, features = ["derive"] }
serde_json = { version = "1.0.79", optional = true } serde_json = { version = "1.0.79", optional = true }
base64 = "0.21.2" base64 = "0.21.2"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-crypto" name = "pallas-crypto"
description = "Cryptographic primitives for Cardano" description = "Cryptographic primitives for Cardano"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -15,7 +15,7 @@ hex = "0.4"
cryptoxide = { version = "0.4.1" } cryptoxide = { version = "0.4.1" }
thiserror = "1.0" thiserror = "1.0"
rand_core = "0.6" rand_core = "0.6"
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
serde = "1.0.143" serde = "1.0.143"
[dev-dependencies] [dev-dependencies]

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-hardano" name = "pallas-hardano"
description = "Pallas interoperability with the Haskel Cardano node implementation" description = "Pallas interoperability with the Haskel Cardano node implementation"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -15,8 +15,8 @@ thiserror = "1.0.49"
binary-layout = "3.2.0" binary-layout = "3.2.0"
tap = "1.0.1" tap = "1.0.1"
tracing = "0.1.40" tracing = "0.1.40"
pallas-traverse = { version = "=0.22.0", path = "../pallas-traverse" } pallas-traverse = { version = "=0.23.0", path = "../pallas-traverse" }
pallas-network = { version = "=0.22.0", path = "../pallas-network" } pallas-network = { version = "=0.23.0", path = "../pallas-network" }
[dev-dependencies] [dev-dependencies]
tracing-subscriber = "0.3.17" tracing-subscriber = "0.3.17"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-network" name = "pallas-network"
description = "Ouroboros networking stack using async IO" description = "Ouroboros networking stack using async IO"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -14,8 +14,8 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>", "Pi Lanningham <pi.lannin
byteorder = "1.4.3" byteorder = "1.4.3"
hex = "0.4.3" hex = "0.4.3"
itertools = "0.12.1" itertools = "0.12.1"
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
rand = "0.8.5" rand = "0.8.5"
socket2 = "0.5.5" socket2 = "0.5.5"
thiserror = "1.0.31" thiserror = "1.0.31"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-primitives" name = "pallas-primitives"
description = "Ledger primitives and cbor codec for the different Cardano eras" description = "Ledger primitives and cbor codec for the different Cardano eras"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -16,8 +16,8 @@ authors = [
[dependencies] [dependencies]
hex = "0.4.3" hex = "0.4.3"
log = "0.4.14" log = "0.4.14"
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
base58 = "0.2.0" base58 = "0.2.0"
bech32 = "0.9.0" bech32 = "0.9.0"
serde = { version = "1.0.136", optional = true, features = ["derive"] } serde = { version = "1.0.136", optional = true, features = ["derive"] }

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-rolldb" name = "pallas-rolldb"
description = "An opinionated Cardano storage engine built on top of RocksDB" description = "An opinionated Cardano storage engine built on top of RocksDB"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -15,7 +15,7 @@ rocksdb = { version = "0.21.0", default-features = false, features = ["multi-thr
bincode = "1.3.3" bincode = "1.3.3"
serde = "1.0.188" serde = "1.0.188"
thiserror = "1.0.49" thiserror = "1.0.49"
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
tracing = "0.1.37" tracing = "0.1.37"
tokio = { version = "1.32.0", features = ["sync", "rt", "time", "macros"] } tokio = { version = "1.32.0", features = ["sync", "rt", "time", "macros"] }
async-stream = "0.3.5" async-stream = "0.3.5"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-traverse" name = "pallas-traverse"
description = "Utilities to traverse over multi-era block data" description = "Utilities to traverse over multi-era block data"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -11,10 +11,10 @@ readme = "README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>"] authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
pallas-primitives = { version = "=0.22.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.23.0", path = "../pallas-primitives" }
pallas-addresses = { version = "=0.22.0", path = "../pallas-addresses" } pallas-addresses = { version = "=0.23.0", path = "../pallas-addresses" }
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }
hex = "0.4.3" hex = "0.4.3"
thiserror = "1.0.31" thiserror = "1.0.31"
paste = "1.0.14" paste = "1.0.14"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-txbuilder" name = "pallas-txbuilder"
description = "An ergonomic Cardano transaction builder" description = "An ergonomic Cardano transaction builder"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -11,12 +11,12 @@ readme = "README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>", "Cainã Costa <me@cfcosta.com>"] authors = ["Santiago Carmuega <santiago@carmuega.me>", "Cainã Costa <me@cfcosta.com>"]
[dependencies] [dependencies]
pallas-codec = { path = "../pallas-codec", version = "=0.22.0" } pallas-codec = { path = "../pallas-codec", version = "=0.23.0" }
pallas-crypto = { path = "../pallas-crypto", version = "=0.22.0" } pallas-crypto = { path = "../pallas-crypto", version = "=0.23.0" }
pallas-primitives = { path = "../pallas-primitives", version = "=0.22.0" } pallas-primitives = { path = "../pallas-primitives", version = "=0.23.0" }
pallas-traverse = { path = "../pallas-traverse", version = "=0.22.0" } pallas-traverse = { path = "../pallas-traverse", version = "=0.23.0" }
pallas-addresses = { path = "../pallas-addresses", version = "=0.22.0" } pallas-addresses = { path = "../pallas-addresses", version = "=0.23.0" }
pallas-wallet = { path = "../pallas-wallet", version = "=0.22.0" } pallas-wallet = { path = "../pallas-wallet", version = "=0.23.0" }
serde = { version = "1.0.188", features = ["derive"] } serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107" serde_json = "1.0.107"
thiserror = "1.0.44" thiserror = "1.0.44"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-utxorpc" name = "pallas-utxorpc"
description = "Pallas interoperability with the UTxORPC spec" description = "Pallas interoperability with the UTxORPC spec"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,6 +12,6 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
utxorpc-spec = { version = "0.3.0" } utxorpc-spec = { version = "0.3.0" }
pallas-traverse = { version = "=0.22.0", path = "../pallas-traverse" } pallas-traverse = { version = "=0.23.0", path = "../pallas-traverse" }
pallas-primitives = { version = "=0.22.0", path = "../pallas-primitives" } pallas-primitives = { version = "=0.23.0", path = "../pallas-primitives" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec" }

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-wallet" name = "pallas-wallet"
description = "Cardano wallet utilities such as key generation" description = "Cardano wallet utilities such as key generation"
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -12,7 +12,7 @@ authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
thiserror = "1.0.49" thiserror = "1.0.49"
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto" }
ed25519-bip32 = "0.4.1" ed25519-bip32 = "0.4.1"
bip39 = { version = "2.0.0", features = ["rand_core"] } bip39 = { version = "2.0.0", features = ["rand_core"] }
cryptoxide = "0.4.4" cryptoxide = "0.4.4"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas" name = "pallas"
description = "Rust-native building blocks for the Cardano blockchain ecosystem." description = "Rust-native building blocks for the Cardano blockchain ecosystem."
version = "0.22.0" version = "0.23.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -11,19 +11,19 @@ readme = "../README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>"] authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies] [dependencies]
pallas-applying = { version = "=0.22.0", path = "../pallas-applying/" } pallas-applying = { version = "=0.23.0", path = "../pallas-applying/" }
pallas-network = { version = "=0.22.0", path = "../pallas-network/" } pallas-network = { version = "=0.23.0", path = "../pallas-network/" }
pallas-primitives = { version = "=0.22.0", path = "../pallas-primitives/" } pallas-primitives = { version = "=0.23.0", path = "../pallas-primitives/" }
pallas-traverse = { version = "=0.22.0", path = "../pallas-traverse/" } pallas-traverse = { version = "=0.23.0", path = "../pallas-traverse/" }
pallas-addresses = { version = "=0.22.0", path = "../pallas-addresses/" } pallas-addresses = { version = "=0.23.0", path = "../pallas-addresses/" }
pallas-crypto = { version = "=0.22.0", path = "../pallas-crypto/" } pallas-crypto = { version = "=0.23.0", path = "../pallas-crypto/" }
pallas-codec = { version = "=0.22.0", path = "../pallas-codec/" } pallas-codec = { version = "=0.23.0", path = "../pallas-codec/" }
pallas-utxorpc = { version = "=0.22.0", path = "../pallas-utxorpc/" } pallas-utxorpc = { version = "=0.23.0", path = "../pallas-utxorpc/" }
pallas-configs = { version = "=0.22.0", path = "../pallas-configs/" } pallas-configs = { version = "=0.23.0", path = "../pallas-configs/" }
pallas-rolldb = { version = "=0.22.0", path = "../pallas-rolldb/", optional = true } pallas-rolldb = { version = "=0.23.0", path = "../pallas-rolldb/", optional = true }
pallas-wallet = { version = "=0.22.0", path = "../pallas-wallet/", optional = true } pallas-wallet = { version = "=0.23.0", path = "../pallas-wallet/", optional = true }
pallas-hardano = { version = "=0.22.0", path = "../pallas-hardano/", optional = true } pallas-hardano = { version = "=0.23.0", path = "../pallas-hardano/", optional = true }
pallas-txbuilder = { version = "=0.22.0", path = "../pallas-txbuilder/", optional = true } pallas-txbuilder = { version = "=0.23.0", path = "../pallas-txbuilder/", optional = true }
[features] [features]
unstable = ["pallas-rolldb", "pallas-wallet", "pallas-hardano", "pallas-txbuilder"] unstable = ["pallas-rolldb", "pallas-wallet", "pallas-hardano", "pallas-txbuilder"]