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 #466

Merged
merged 1 commit into from
Dec 2, 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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ members = ["cli", "grpc", "node", "node-wasm", "proto", "rpc", "types"]

[workspace.dependencies]
blockstore = "0.7.0"
lumina-node = { version = "0.7.0", path = "node" }
lumina-node-wasm = { version = "0.6.1", path = "node-wasm" }
celestia-proto = { version = "0.5.0", path = "proto" }
lumina-node = { version = "0.8.0", path = "node" }
lumina-node-wasm = { version = "0.7.0", path = "node-wasm" }
celestia-proto = { version = "0.6.0", path = "proto" }
celestia-grpc = { version = "0.1.0", path = "grpc" }
celestia-rpc = { version = "0.7.1", path = "rpc", default-features = false }
celestia-types = { version = "0.8.0", path = "types", default-features = false }
celestia-rpc = { version = "0.8.0", path = "rpc", default-features = false }
celestia-types = { version = "0.9.0", path = "types", default-features = false }
tendermint = { version = "0.40.0", default-features = false }
tendermint-proto = "0.40.0"

Expand Down
10 changes: 10 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.1...lumina-cli-v0.5.2) - 2024-12-02

### Added

- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))

### Other

- *(node-wasm)* Add integration tests for node-wasm ([#420](https://github.com/eigerco/lumina/pull/420))

## [0.5.1](https://github.com/eigerco/lumina/compare/lumina-cli-v0.5.0...lumina-cli-v0.5.1) - 2024-11-07

### Other
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lumina-cli"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
license = "Apache-2.0"
description = "Celestia data availability node implementation in Rust"
Expand Down
19 changes: 19 additions & 0 deletions grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/eigerco/lumina/releases/tag/celestia-grpc-v0.1.0) - 2024-12-02

### Added

- *(proto,types,rpc)* [**breaking**] celestia node v0.20.4 upgrade ([#469](https://github.com/eigerco/lumina/pull/469))
- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))

### Other

- *(proto,types,node,grpc)* [**breaking**] Use `tendermint-rs` instead of `celestia-tendermint-rs` fork ([#463](https://github.com/eigerco/lumina/pull/463))
14 changes: 14 additions & 0 deletions grpc/grpc-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/eigerco/lumina/releases/tag/celestia-grpc-macros-v0.1.0) - 2024-12-02

### Added

- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))
11 changes: 11 additions & 0 deletions node-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.6.1...lumina-node-wasm-v0.7.0) - 2024-12-02

### Added

- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))

### Other

- *(proto,types,node,grpc)* [**breaking**] Use `tendermint-rs` instead of `celestia-tendermint-rs` fork ([#463](https://github.com/eigerco/lumina/pull/463))
- *(node-wasm)* Add integration tests for node-wasm ([#420](https://github.com/eigerco/lumina/pull/420))

## [0.6.1](https://github.com/eigerco/lumina/compare/lumina-node-wasm-v0.6.0...lumina-node-wasm-v0.6.1) - 2024-11-07

### Other
Expand Down
2 changes: 1 addition & 1 deletion node-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lumina-node-wasm"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
license = "Apache-2.0"
description = "Browser compatibility layer for the Lumina node"
Expand Down
31 changes: 18 additions & 13 deletions node-wasm/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1047,6 +1047,11 @@ lumina\_node\_wasm.d.ts:318

## Class: NodeWorker

`NodeWorker` is responsible for receiving commands from connected [`NodeClient`]s, executing
them and sending a response back, as well as accepting new `NodeClient` connections.

[`NodeClient`]: crate::client::NodeClient

### Constructors

#### new NodeWorker()
Expand All @@ -1063,7 +1068,7 @@ lumina\_node\_wasm.d.ts:318

##### Defined in

lumina\_node\_wasm.d.ts:340
lumina\_node\_wasm.d.ts:344

### Methods

Expand All @@ -1077,7 +1082,7 @@ lumina\_node\_wasm.d.ts:340

##### Defined in

lumina\_node\_wasm.d.ts:336
lumina\_node\_wasm.d.ts:340

***

Expand All @@ -1091,7 +1096,7 @@ lumina\_node\_wasm.d.ts:336

##### Defined in

lumina\_node\_wasm.d.ts:344
lumina\_node\_wasm.d.ts:348


<a name="classespeertrackerinfosnapshotmd"></a>
Expand Down Expand Up @@ -1126,7 +1131,7 @@ Number of the connected peers.

##### Defined in

lumina\_node\_wasm.d.ts:362
lumina\_node\_wasm.d.ts:366

***

Expand All @@ -1138,7 +1143,7 @@ Number of the connected trusted peers.

##### Defined in

lumina\_node\_wasm.d.ts:366
lumina\_node\_wasm.d.ts:370

### Methods

Expand All @@ -1152,7 +1157,7 @@ lumina\_node\_wasm.d.ts:366

##### Defined in

lumina\_node\_wasm.d.ts:358
lumina\_node\_wasm.d.ts:362

***

Expand All @@ -1168,7 +1173,7 @@ lumina\_node\_wasm.d.ts:358

##### Defined in

lumina\_node\_wasm.d.ts:353
lumina\_node\_wasm.d.ts:357

***

Expand All @@ -1184,7 +1189,7 @@ Return stringified version of self.

##### Defined in

lumina\_node\_wasm.d.ts:357
lumina\_node\_wasm.d.ts:361


<a name="classessyncinginfosnapshotmd"></a>
Expand Down Expand Up @@ -1219,7 +1224,7 @@ Ranges of headers that are already synchronised

##### Defined in

lumina\_node\_wasm.d.ts:384
lumina\_node\_wasm.d.ts:388

***

Expand All @@ -1231,7 +1236,7 @@ Syncing target. The latest height seen in the network that was successfully veri

##### Defined in

lumina\_node\_wasm.d.ts:388
lumina\_node\_wasm.d.ts:392

### Methods

Expand All @@ -1245,7 +1250,7 @@ lumina\_node\_wasm.d.ts:388

##### Defined in

lumina\_node\_wasm.d.ts:380
lumina\_node\_wasm.d.ts:384

***

Expand All @@ -1261,7 +1266,7 @@ lumina\_node\_wasm.d.ts:380

##### Defined in

lumina\_node\_wasm.d.ts:375
lumina\_node\_wasm.d.ts:379

***

Expand All @@ -1277,7 +1282,7 @@ Return stringified version of self.

##### Defined in

lumina\_node\_wasm.d.ts:379
lumina\_node\_wasm.d.ts:383

# Enumerations

Expand Down
4 changes: 2 additions & 2 deletions node-wasm/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Eiger <hello@eiger.co>"
],
"description": "Lumina node for Celestia, running in browser",
"version": "0.6.1",
"version": "0.7.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand All @@ -19,7 +19,7 @@
"main": "index.js",
"homepage": "https://www.eiger.co",
"dependencies": {
"lumina-node-wasm": "0.6.1"
"lumina-node-wasm": "0.7.0"
},
"keywords": [
"blockchain",
Expand Down
16 changes: 16 additions & 0 deletions node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.7.0...lumina-node-v0.8.0) - 2024-12-02

### Added

- *(proto,types,rpc)* [**breaking**] celestia node v0.20.4 upgrade ([#469](https://github.com/eigerco/lumina/pull/469))
- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))

### Fixed

- *(node)* Increase sleep in `head_selection_with_multiple_peers` test case ([#464](https://github.com/eigerco/lumina/pull/464))

### Other

- *(proto,types,node,grpc)* [**breaking**] Use `tendermint-rs` instead of `celestia-tendermint-rs` fork ([#463](https://github.com/eigerco/lumina/pull/463))
- *(node-wasm)* Add integration tests for node-wasm ([#420](https://github.com/eigerco/lumina/pull/420))

## [0.7.0](https://github.com/eigerco/lumina/compare/lumina-node-v0.6.0...lumina-node-v0.7.0) - 2024-11-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lumina-node"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
description = "Celestia data availability node implementation in Rust"
Expand Down
12 changes: 12 additions & 0 deletions proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/eigerco/lumina/compare/celestia-proto-v0.5.0...celestia-proto-v0.6.0) - 2024-12-02

### Added

- *(proto,types,rpc)* [**breaking**] celestia node v0.20.4 upgrade ([#469](https://github.com/eigerco/lumina/pull/469))
- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))
- *(proto)* [**breaking**] update celestia-app and node proto definitios ([#459](https://github.com/eigerco/lumina/pull/459))

### Other

- *(proto,types,node,grpc)* [**breaking**] Use `tendermint-rs` instead of `celestia-tendermint-rs` fork ([#463](https://github.com/eigerco/lumina/pull/463))

## [0.5.0](https://github.com/eigerco/lumina/compare/celestia-proto-v0.4.1...celestia-proto-v0.5.0) - 2024-10-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celestia-proto"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
description = "Rust implementation of proto structs used in celestia ecosystem"
Expand Down
12 changes: 12 additions & 0 deletions rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.7.1...celestia-rpc-v0.8.0) - 2024-12-02

### Added

- *(proto,types,rpc)* [**breaking**] celestia node v0.20.4 upgrade ([#469](https://github.com/eigerco/lumina/pull/469))
- *(grpc, types, proto)* [**breaking**] Add tonic gRPC ([#454](https://github.com/eigerco/lumina/pull/454))

### Other

- *(proto,types,node,grpc)* [**breaking**] Use `tendermint-rs` instead of `celestia-tendermint-rs` fork ([#463](https://github.com/eigerco/lumina/pull/463))
- *(node-wasm)* Add integration tests for node-wasm ([#420](https://github.com/eigerco/lumina/pull/420))

## [0.7.1](https://github.com/eigerco/lumina/compare/celestia-rpc-v0.7.0...celestia-rpc-v0.7.1) - 2024-11-07

### Other
Expand Down
2 changes: 1 addition & 1 deletion rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celestia-rpc"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
description = "A collection of traits for interacting with Celestia data availability nodes RPC"
Expand Down
Loading
Loading