[go: nahoru, domu]

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

Merged
merged 1 commit into from
Nov 6, 2024
Merged

chore: release #753

merged 1 commit into from
Nov 6, 2024

Conversation

github-actions[bot]
Copy link
Contributor
@github-actions github-actions bot commented Oct 29, 2024

🤖 New release

  • kona-common-proc: 0.0.4 -> 0.0.5
  • kona-derive: 0.0.5 -> 0.0.6 (⚠️ API breaking changes)
  • kona-derive-alloy: 0.0.2 -> 0.0.3 (⚠️ API breaking changes)
  • kona-executor: 0.0.4 -> 0.0.5 (✓ API compatible changes)
  • kona-mpt: 0.0.5 -> 0.0.6 (⚠️ API breaking changes)

⚠️ kona-derive breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field EthereumDataSource.blob_source in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/ethereum.rs:25
  field EthereumDataSource.calldata_source in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/ethereum.rs:27
  field EthereumDataSource.blob_source in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/ethereum.rs:25
  field EthereumDataSource.calldata_source in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/ethereum.rs:27

--- 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.36.0/src/lints/derive_trait_impl_removed.ron

Failed in:
  type EthereumDataSource no longer derives Copy, in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/ethereum.rs:17
  type EthereumDataSource no longer derives Copy, in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/ethereum.rs:17

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum 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.36.0/src/lints/enum_missing.ron

Failed in:
  enum kona_derive::pipeline::PipelineError, previously in file /tmp/.tmptcHO3f/kona-derive/src/errors.rs:73
  enum kona_derive::pipeline::Signal, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:28
  enum kona_derive::traits::Signal, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:28
  enum kona_derive::pipeline::StepResult, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:14
  enum kona_derive::prelude::StepResult, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:14
  enum kona_derive::traits::StepResult, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:14
  enum kona_derive::sources::EthereumDataSourceVariant, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/variant.rs:14

--- 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.36.0/src/lints/enum_variant_added.ron

Failed in:
  variant PipelineError:EndOfSource in /tmp/.tmp9FPPDQ/kona/crates/derive/src/errors/pipeline.rs:112
  variant PipelineError:EndOfSource in /tmp/.tmp9FPPDQ/kona/crates/derive/src/errors/pipeline.rs:112

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/method_parameter_count_changed.ron

Failed in:
  kona_derive::sources::CalldataSource::new now takes 3 parameters instead of 4, in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/calldata.rs:34
  kona_derive::sources::BlobSource::new now takes 4 parameters instead of 5, in /tmp/.tmp9FPPDQ/kona/crates/derive/src/sources/blobs.rs:44

--- 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.36.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  SEQUENCER_FEE_VAULT_ADDRESS in file /tmp/.tmptcHO3f/kona-derive/src/attributes/mod.rs:22

--- 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.36.0/src/lints/struct_missing.ron

Failed in:
  struct kona_derive::traits::ResetSignal, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:50
  struct kona_derive::test_utils::TestIter, previously in file /tmp/.tmptcHO3f/kona-derive/src/test_utils/data_availability_provider.rs:15
  struct kona_derive::sources::IndexedBlobHash, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/blobs.rs:27
  struct kona_derive::traits::ActivationSignal, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:73

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field 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.36.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field batch_inbox_address of struct TestDAP, previously in file /tmp/.tmptcHO3f/kona-derive/src/test_utils/data_availability_provider.rs:35
  field block_ref of struct CalldataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/calldata.rs:24
  field block_ref of struct BlobSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/blobs.rs:205
  field chain_provider of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:23
  field blob_provider of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:25
  field signer of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:29
  field batch_inbox_address of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:31
  field chain_provider of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:23
  field blob_provider of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:25
  field signer of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:29
  field batch_inbox_address of struct EthereumDataSource, previously in file /tmp/.tmptcHO3f/kona-derive/src/sources/ethereum.rs:31

--- failure trait_added_supertrait: non-sealed trait added new supertraits ---

Description:
A non-sealed trait added one or more supertraits, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#generic-bounds-tighten
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_added_supertrait.ron

Failed in:
  trait kona_derive::prelude::L2ChainProvider gained BatchValidationProviderDerive in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/providers.rs:38
  trait kona_derive::traits::L2ChainProvider gained BatchValidationProviderDerive in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/providers.rs:38

--- failure trait_associated_type_added: non-sealed public trait added associated type without default value ---

Description:
A non-sealed trait has gained an associated type without a default value, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_associated_type_added.ron

Failed in:
  trait associated type kona_derive::prelude::L2ChainProvider::Error in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/providers.rs:40
  trait associated type kona_derive::traits::L2ChainProvider::Error in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/providers.rs:40

--- failure trait_method_added: pub trait method added ---

Description:
A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_added.ron

Failed in:
  trait method kona_derive::traits::DataAvailabilityProvider::next in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/data_sources.rs:34
  trait method kona_derive::traits::DataAvailabilityProvider::clear in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/data_sources.rs:37

--- failure trait_method_missing: pub trait method removed or renamed ---

Description:
A trait method is no longer callable, and may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_missing.ron

Failed in:
  method open_data of trait DataAvailabilityProvider, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/data_sources.rs:36

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait 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.36.0/src/lints/trait_missing.ron

Failed in:
  trait kona_derive::pipeline::DataAvailabilityProvider, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/data_sources.rs:28
  trait kona_derive::pipeline::ResetProvider, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/reset.rs:10
  trait kona_derive::pipeline::AttributesBuilder, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/attributes.rs:36
  trait kona_derive::pipeline::NextAttributes, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/attributes.rs:25
  trait kona_derive::pipeline::OriginProvider, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/stages.rs:17
  trait kona_derive::pipeline::Pipeline, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/pipeline.rs:96
  trait kona_derive::pipeline::OriginAdvancer, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/stages.rs:24
  trait kona_derive::traits::AsyncIterator, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/data_sources.rs:42
  trait kona_derive::pipeline::SignalReceiver, previously in file /tmp/.tmptcHO3f/kona-derive/src/traits/stages.rs:11

--- failure trait_removed_associated_type: trait's associated type was removed ---

Description:
A public trait's associated type was removed or renamed.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_removed_associated_type.ron

Failed in:
  associated type DataAvailabilityProvider::DataIter, previously at /tmp/.tmptcHO3f/kona-derive/src/traits/data_sources.rs:32

--- failure trait_removed_supertrait: supertrait removed or renamed ---

Description:
A supertrait was removed from a trait. Users of the trait can no longer assume it can also be used like its supertrait.
        ref: https://doc.rust-lang.org/reference/items/traits.html#supertraits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_removed_supertrait.ron

Failed in:
  supertrait kona_derive::pipeline::OriginProvider of trait Pipeline in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/pipeline.rs:13
  supertrait kona_derive::pipeline::OriginProvider of trait Pipeline in file /tmp/.tmp9FPPDQ/kona/crates/derive/src/traits/pipeline.rs:13

⚠️ kona-derive-alloy breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum 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.36.0/src/lints/enum_missing.ron

Failed in:
  enum kona_derive_alloy::MockBeaconClientError, previously in file /tmp/.tmptcHO3f/kona-derive-alloy/src/test_utils.rs:46

--- 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.36.0/src/lints/function_missing.ron

Failed in:
  function kona_derive_alloy::anvil_http_provider, previously in file /tmp/.tmptcHO3f/kona-derive-alloy/src/test_utils.rs:20
  function kona_derive_alloy::spawn_anvil, previously in file /tmp/.tmptcHO3f/kona-derive-alloy/src/test_utils.rs:14
  function kona_derive_alloy::http_provider, previously in file /tmp/.tmptcHO3f/kona-derive-alloy/src/test_utils.rs:25

--- 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.36.0/src/lints/struct_missing.ron

Failed in:
  struct kona_derive_alloy::MockBeaconClient, previously in file /tmp/.tmptcHO3f/kona-derive-alloy/src/test_utils.rs:33

⚠️ kona-mpt breaking changes

--- failure trait_method_added: pub trait method added ---

Description:
A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_added.ron

Failed in:
  trait method kona_mpt::TrieProvider::trie_node_by_hash in file /tmp/.tmp9FPPDQ/kona/crates/mpt/src/traits.rs:26

--- failure trait_method_missing: pub trait method removed or renamed ---

Description:
A trait method is no longer callable, and may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/trait_method_missing.ron

Failed in:
  method trie_node_preimage of trait TrieProvider, previously in file /tmp/.tmptcHO3f/kona-mpt/src/traits.rs:25
Changelog

kona-common-proc

0.0.5 - 2024-11-06

Added

  • (client) Remove anyhow (#779)

kona-derive

0.0.6 - 2024-11-06

Added

  • (derive) From<BlobProviderError> for PipelineErrorKind (#780)
  • (client) Remove anyhow (#779)
  • (derive) sources docs (#754)

Fixed

  • (derive) Data Availability Provider Abstraction (#782)
  • (derive) hoist types out of traits (#781)
  • (client) Trace extension support (#778)
  • (derive) use signal value updated with system config. (#776)

Other

  • bump alloy deps (#788)
  • (derive) pipeline error test coverage (#784)
  • Only fill blob data when there is no calldata (#764)
  • (derive) touchup kona-derive readme (#762)
  • (derive) Error Exports (#758)
  • (derive) Cleanup Exports (#757)

kona-derive-alloy

0.0.3 - 2024-11-06

Added

  • (derive) From<BlobProviderError> for PipelineErrorKind (#780)

Fixed

  • (derive-alloy) test coverage (#785)
  • (derive) Data Availability Provider Abstraction (#782)
  • (client) Trace extension support (#778)
  • (derive-alloy) changelog (#752)

Other

  • bump alloy deps (#788)
  • (derive-alloy) docs (#763)

kona-executor

0.0.5 - 2024-11-06

Added

  • (TrieProvider) Abstract TrieNode retrieval (#787)

Other

  • (executor) rm upstream util (#755)

kona-mpt

0.0.6 - 2024-11-06

Added

  • (TrieProvider) Abstract TrieNode retrieval (#787)

Other

  • bump alloy deps (#788)


This PR was generated with release-plz.

@github-actions github-actions bot changed the title chore(kona-derive-alloy): release v0.0.3 chore: release Oct 30, 2024
@github-actions github-actions bot force-pushed the release-plz-2024-10-29T20-44-59Z branch 21 times, most recently from 5a89193 to 546f8da Compare November 5, 2024 23:43
@github-actions github-actions bot force-pushed the release-plz-2024-10-29T20-44-59Z branch from 546f8da to fbb3f91 Compare November 6, 2024 20:33
@github-actions github-actions bot force-pushed the release-plz-2024-10-29T20-44-59Z branch from fbb3f91 to 2e09a42 Compare November 6, 2024 23:23
@clabby clabby added this pull request to the merge queue Nov 6, 2024
Merged via the queue into main with commit 13d0dfb Nov 6, 2024
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.

2 participants