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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

chore: release #482

wants to merge 2 commits into from

Conversation

zvolin
Copy link
Member

@zvolin zvolin commented Dec 13, 2024

🤖 New release

  • lumina-cli: 0.5.2 -> 0.6.0 (✓ API compatible changes)
  • celestia-proto: 0.6.0 -> 0.7.0 (✓ API compatible changes)
  • lumina-node: 0.8.0 -> 0.9.0 (⚠️ API breaking changes)
  • celestia-grpc: 0.1.0 -> 0.1.1 (✓ API compatible changes)
  • lumina-node-wasm: 0.7.0 -> 0.8.0
  • celestia-types: 0.9.0 -> 0.9.1

⚠️ lumina-node breaking changes

--- failure derive_trait_impl_removed: built-in derived trait no longer implemented ---

Description:
A public type has stopped deriving one or more traits. This can break downstream code that depends on those types implementing those traits.
        ref: https://doc.rust-lang.org/reference/attributes/derive.html#derive
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/derive_trait_impl_removed.ron

Failed in:
  type Network no longer derives Copy, in /tmp/.tmpNCqi6B/lumina/node/src/network.rs:13

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/enum_variant_added.ron

Failed in:
  variant NodeError:NodeBuilder in /tmp/.tmpNCqi6B/lumina/node/src/node.rs:54
  variant NodeError:NodeBuilder in /tmp/.tmpNCqi6B/lumina/node/src/node.rs:54
  variant Network:Custom in /tmp/.tmpNCqi6B/lumina/node/src/network.rs:22

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/enum_variant_missing.ron

Failed in:
  variant Network::Private, previously in file /tmp/.tmpNCR2mg/lumina-node/src/network.rs:20

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/function_missing.ron

Failed in:
  function lumina_node::network::canonical_network_bootnodes, previously in file /tmp/.tmpNCR2mg/lumina-node/src/network.rs:52
  function lumina_node::test_utils::test_node_config_with_keypair, previously in file /tmp/.tmpNCR2mg/lumina-node/src/test_utils.rs:74
  function lumina_node::test_utils::listening_test_node_config, previously in file /tmp/.tmpNCR2mg/lumina-node/src/test_utils.rs:66
  function lumina_node::network::network_id, previously in file /tmp/.tmpNCR2mg/lumina-node/src/network.rs:42
  function lumina_node::test_utils::test_node_config, previously in file /tmp/.tmpNCR2mg/lumina-node/src/test_utils.rs:51

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/inherent_method_missing.ron

Failed in:
  Node::new, previously in file /tmp/.tmpNCR2mg/lumina-node/src/node.rs:110
  Node::new_subscribed, previously in file /tmp/.tmpNCR2mg/lumina-node/src/node.rs:119
  Node::new, previously in file /tmp/.tmpNCR2mg/lumina-node/src/node.rs:110
  Node::new_subscribed, previously in file /tmp/.tmpNCR2mg/lumina-node/src/node.rs:119

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing, renamed, or changed from const to static.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  DEFAULT_SYNCING_WINDOW in file /tmp/.tmpNCR2mg/lumina-node/src/syncer.rs:39

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/struct_missing.ron

Failed in:
  struct lumina_node::network::UnknownNetworkError, previously in file /tmp/.tmpNCR2mg/lumina-node/src/network.rs:26
  struct lumina_node::node::NodeConfig, previously in file /tmp/.tmpNCR2mg/lumina-node/src/node.rs:63
  struct lumina_node::NodeConfig, previously in file /tmp/.tmpNCR2mg/lumina-node/src/node.rs:63
Changelog

lumina-cli

0.6.0 - 2024-12-13

Added

Other

celestia-proto

0.7.0 - 2024-12-13

Other

lumina-node

0.9.0 - 2024-12-13

Added

Other

celestia-grpc

0.1.1 - 2024-12-13

Other

lumina-node-wasm

0.8.0 - 2024-12-13

Added

Other

celestia-types

0.9.1 - 2024-12-13

Other

  • updated the following local packages: celestia-proto


This PR was generated with release-plz.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant