Skip to content
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
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.12.0"
".": "0.12.1"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [0.12.1](https://github.com/matter-labs/zksync-os-server/compare/v0.12.0...v0.12.1) (2025-12-11)


### Features

* **batcher:** re-create batches using L1 watcher's data ([#672](https://github.com/matter-labs/zksync-os-server/issues/672)) ([11fefc4](https://github.com/matter-labs/zksync-os-server/commit/11fefc41c7c55f88b40ecab5e31464ef1e68e8e4))
* blob computation overhead for pubdata price ([#693](https://github.com/matter-labs/zksync-os-server/issues/693)) ([bf69d65](https://github.com/matter-labs/zksync-os-server/commit/bf69d65f29b0a6bf4a38093a6f26fea1dad97167))
* **config:** Add config command ([#697](https://github.com/matter-labs/zksync-os-server/issues/697)) ([cd8a611](https://github.com/matter-labs/zksync-os-server/commit/cd8a61186406aaf940510ce948aefd21fc1a6c22))
* **config:** use EtherAmount for fee-related configs ([#676](https://github.com/matter-labs/zksync-os-server/issues/676)) ([28c27b1](https://github.com/matter-labs/zksync-os-server/commit/28c27b1a215898bcd7aa27437bcce641eb88636c))
* Don't report Passthrough in batch_number metrics ([#683](https://github.com/matter-labs/zksync-os-server/issues/683)) ([7719fb3](https://github.com/matter-labs/zksync-os-server/commit/7719fb34a6047e98596b26ffcb2abc12917a97e0))
* JS tracer ([#569](https://github.com/matter-labs/zksync-os-server/issues/569)) ([c991043](https://github.com/matter-labs/zksync-os-server/commit/c99104389a790f29237fe7c880d01d67c9319032))
* remove failed transcations from block_output.tx_results ([#714](https://github.com/matter-labs/zksync-os-server/issues/714)) ([23b5323](https://github.com/matter-labs/zksync-os-server/commit/23b5323d0ce6911ded4bb5566b0f93fcc61f696a))
* upgrade reth to 1.9.3/revm to 31.0.2 ([#709](https://github.com/matter-labs/zksync-os-server/issues/709)) ([521d473](https://github.com/matter-labs/zksync-os-server/commit/521d473854423e01dbf011efda04f007e9156e7a))


### Bug Fixes

* **l1-watcher:** handle L1 reverts during state recovery ([#692](https://github.com/matter-labs/zksync-os-server/issues/692)) ([d915174](https://github.com/matter-labs/zksync-os-server/commit/d9151748ada061800611eac8e89a6843c2c57875))
* **rpc:** move executed block check earlier in `zks_getL2ToL1LogProof` ([#704](https://github.com/matter-labs/zksync-os-server/issues/704)) ([117faa8](https://github.com/matter-labs/zksync-os-server/commit/117faa85db69889ff76bffe781fa4ed754d2a6e7))
* state tracking for sequencer ([#715](https://github.com/matter-labs/zksync-os-server/issues/715)) ([01c3a6b](https://github.com/matter-labs/zksync-os-server/commit/01c3a6bb93795a9ce3542e32d59d3a1c53ed55ff))
* upgrade issues in block context provider ([#666](https://github.com/matter-labs/zksync-os-server/issues/666)) ([e80cb85](https://github.com/matter-labs/zksync-os-server/commit/e80cb8539e5a986516a8b01e7a1d0aaa9ec1e9ac))

## [0.12.0](https://github.com/matter-labs/zksync-os-server/compare/v0.11.1...v0.12.0) (2025-11-28)


Expand Down
64 changes: 32 additions & 32 deletions Cargo.lock

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

64 changes: 32 additions & 32 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ resolver = "3"
default-members = ["node/bin"]

[workspace.package]
version = "0.12.0-non-semver-compat"
version = "0.12.1-non-semver-compat"
edition = "2024"
authors = ["The Matter Labs Team <hello@matterlabs.dev>"]
homepage = "https://zksync.io/"
Expand Down Expand Up @@ -189,37 +189,37 @@ reth-execution-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.
zksync-os-revm = { git = "https://github.com/matter-labs/zksync-os-revm", tag = "v0.0.1" }

# "Local" dependencies
zksync_os_contract_interface = { version = "=0.12.0-non-semver-compat", path = "lib/contract_interface" }
zksync_os_crypto = { version = "=0.12.0-non-semver-compat", path = "lib/crypto" }
zksync_os_l1_sender = { version = "=0.12.0-non-semver-compat", path = "lib/l1_sender" }
zksync_os_l1_watcher = { version = "=0.12.0-non-semver-compat", path = "lib/l1_watcher" }
zksync_os_mempool = { version = "=0.12.0-non-semver-compat", path = "lib/mempool" }
zksync_os_mini_merkle_tree = { version = "=0.12.0-non-semver-compat", path = "lib/mini_merkle_tree" }
zksync_os_merkle_tree = { version = "=0.12.0-non-semver-compat", path = "lib/merkle_tree" }
zksync_os_priority_tree = { version = "=0.12.0-non-semver-compat", path = "lib/priority_tree" }
zksync_os_observability = { version = "=0.12.0-non-semver-compat", path = "lib/observability" }
zksync_os_rocksdb = { version = "=0.12.0-non-semver-compat", path = "lib/rocksdb" }
zksync_os_rpc = { version = "=0.12.0-non-semver-compat", path = "lib/rpc" }
zksync_os_rpc_api = { version = "=0.12.0-non-semver-compat", path = "lib/rpc_api" }
zksync_os_sequencer = { version = "=0.12.0-non-semver-compat", path = "lib/sequencer" }
zksync_os_state = { version = "=0.12.0-non-semver-compat", path = "lib/state" }
zksync_os_state_full_diffs = { version = "=0.12.0-non-semver-compat", path = "lib/state_full_diffs" }
zksync_os_storage = { version = "=0.12.0-non-semver-compat", path = "lib/storage" }
zksync_os_storage_api = { version = "=0.12.0-non-semver-compat", path = "lib/storage_api" }
zksync_os_types = { version = "=0.12.0-non-semver-compat", path = "lib/types" }
zksync_os_genesis = { version = "=0.12.0-non-semver-compat", path = "lib/genesis" }
zksync_os_object_store = { version = "=0.12.0-non-semver-compat", path = "lib/object_store" }
zksync_os_status_server = { version = "=0.12.0-non-semver-compat", path = "lib/status" }
zksync_os_multivm = { version = "=0.12.0-non-semver-compat", path = "lib/multivm" }
zksync_os_pipeline = { version = "=0.12.0-non-semver-compat", path = "lib/pipeline" }
zksync_os_revm_consistency_checker = { version = "=0.12.0-non-semver-compat", path = "lib/revm_consistency_checker" }
zksync_os_gas_adjuster = { version = "=0.12.0-non-semver-compat", path = "lib/gas_adjuster" }
zksync_os_batch_verification = { version = "=0.12.0-non-semver-compat", path = "lib/batch_verification" }
zksync_os_batch_types = { version = "=0.12.0-non-semver-compat", path = "lib/batch_types" }
zksync_os_socket = { version = "=0.12.0-non-semver-compat", path = "lib/socket" }
zksync_os_internal_config = { version = "=0.12.0-non-semver-compat", path = "lib/internal_config" }

zksync_os_server = { version = "=0.12.0-non-semver-compat", path = "node/bin" }
zksync_os_contract_interface = { version = "=0.12.1-non-semver-compat", path = "lib/contract_interface" }
zksync_os_crypto = { version = "=0.12.1-non-semver-compat", path = "lib/crypto" }
zksync_os_l1_sender = { version = "=0.12.1-non-semver-compat", path = "lib/l1_sender" }
zksync_os_l1_watcher = { version = "=0.12.1-non-semver-compat", path = "lib/l1_watcher" }
zksync_os_mempool = { version = "=0.12.1-non-semver-compat", path = "lib/mempool" }
zksync_os_mini_merkle_tree = { version = "=0.12.1-non-semver-compat", path = "lib/mini_merkle_tree" }
zksync_os_merkle_tree = { version = "=0.12.1-non-semver-compat", path = "lib/merkle_tree" }
zksync_os_priority_tree = { version = "=0.12.1-non-semver-compat", path = "lib/priority_tree" }
zksync_os_observability = { version = "=0.12.1-non-semver-compat", path = "lib/observability" }
zksync_os_rocksdb = { version = "=0.12.1-non-semver-compat", path = "lib/rocksdb" }
zksync_os_rpc = { version = "=0.12.1-non-semver-compat", path = "lib/rpc" }
zksync_os_rpc_api = { version = "=0.12.1-non-semver-compat", path = "lib/rpc_api" }
zksync_os_sequencer = { version = "=0.12.1-non-semver-compat", path = "lib/sequencer" }
zksync_os_state = { version = "=0.12.1-non-semver-compat", path = "lib/state" }
zksync_os_state_full_diffs = { version = "=0.12.1-non-semver-compat", path = "lib/state_full_diffs" }
zksync_os_storage = { version = "=0.12.1-non-semver-compat", path = "lib/storage" }
zksync_os_storage_api = { version = "=0.12.1-non-semver-compat", path = "lib/storage_api" }
zksync_os_types = { version = "=0.12.1-non-semver-compat", path = "lib/types" }
zksync_os_genesis = { version = "=0.12.1-non-semver-compat", path = "lib/genesis" }
zksync_os_object_store = { version = "=0.12.1-non-semver-compat", path = "lib/object_store" }
zksync_os_status_server = { version = "=0.12.1-non-semver-compat", path = "lib/status" }
zksync_os_multivm = { version = "=0.12.1-non-semver-compat", path = "lib/multivm" }
zksync_os_pipeline = { version = "=0.12.1-non-semver-compat", path = "lib/pipeline" }
zksync_os_revm_consistency_checker = { version = "=0.12.1-non-semver-compat", path = "lib/revm_consistency_checker" }
zksync_os_gas_adjuster = { version = "=0.12.1-non-semver-compat", path = "lib/gas_adjuster" }
zksync_os_batch_verification = { version = "=0.12.1-non-semver-compat", path = "lib/batch_verification" }
zksync_os_batch_types = { version = "=0.12.1-non-semver-compat", path = "lib/batch_types" }
zksync_os_socket = { version = "=0.12.1-non-semver-compat", path = "lib/socket" }
zksync_os_internal_config = { version = "=0.12.1-non-semver-compat", path = "lib/internal_config" }

zksync_os_server = { version = "=0.12.1-non-semver-compat", path = "node/bin" }

#[patch.crates-io]
#zksync_os_interface = { path = "../zksync-os-interface/crates/interface" }
Expand Down
Loading