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

Tracking PR for v0.8.0 release #641

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8437e82
chore: increment crate versions to v0.8.0 and MSRV to 1.84
bobbinth Jan 24, 2025
44394e4
ci: fmt check for TOML files (#645)
sergerad Jan 26, 2025
4850828
chore: update itertools and axum (#646)
sergerad Jan 28, 2025
8e361c3
ci: add workspace-lints to Makefile and lint.yml (#648)
sergerad Jan 28, 2025
a9599d8
Merge branch 'main' into next
bobbinth Jan 28, 2025
6686249
Merge branch 'main' into next
bobbinth Jan 29, 2025
5b55f30
chore: remove Endpoint and Protocol types (#654)
sergerad Jan 30, 2025
ab0701d
feat: open-telemetry exporter (#660)
Mirko-von-Leipzig Feb 3, 2025
4215341
chore: fix typos
bobbinth Feb 3, 2025
87b4a70
Use batch prover from miden-base (#659)
PhilippGackstatter Feb 4, 2025
018dde3
feat: remote tracing context (#669)
Mirko-von-Leipzig Feb 6, 2025
d8eb5bc
feat: use iterator in select_block_headers (#667)
varun-doshi Feb 7, 2025
03622e7
fix: add faucet routes for favicon and background (#672)
Mirko-von-Leipzig Feb 8, 2025
ebef215
feat(block-producer): instrument block building (#675)
Mirko-von-Leipzig Feb 11, 2025
26cf6be
chore: bump `miden-base` versions (#689)
igamigo Feb 14, 2025
2a10b47
chore: upgrade otel crates and filter otel traces (#690)
Mirko-von-Leipzig Feb 14, 2025
d57c8dd
feat(store): added BlockChain wrapper for Mmr (#668)
varun-doshi Feb 18, 2025
22f53bd
feat: OpenTelemetrySpanExt trait (#700)
sergerad Feb 19, 2025
fea7a59
fix(store): blocking in async fn get_batch_inputs (#705)
Mirko-von-Leipzig Feb 19, 2025
cf87d34
docs: monitoring guide (#699)
Mirko-von-Leipzig Feb 20, 2025
f83570a
feat: remove nullifiers from sync state (#713)
TomasArrachea Feb 21, 2025
bea3138
feat(store): track network notes (#706)
Mirko-von-Leipzig Feb 22, 2025
f8acaad
Use `LocalBlockProver` to build blocks (#709)
PhilippGackstatter Feb 25, 2025
540e097
fix: cargo machete pinned to specific version (#720)
PhilippGackstatter Feb 25, 2025
d657c7e
feat: test faucet website (#702)
TomasArrachea Feb 28, 2025
3c5f411
chore: add Open Telemetry attributes to grpc spans (#698)
sergerad Mar 3, 2025
f9ab405
chore: upgrade to Rust 2024 edition (#727)
TomasArrachea Mar 6, 2025
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
23 changes: 0 additions & 23 deletions .editorconfig

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/doc.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,27 @@ jobs:
- name: Clippy
run: make clippy

toml:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- run: make toml-check

workspace-lints:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: cargo-workspace-lints
- run: |
make workspace-check

doc:
name: doc
runs-on: ubuntu-latest
Expand Down
34 changes: 0 additions & 34 deletions .pre-commit-config.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions .taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[formatting]
align_entries = true
column_width = 120
reorder_arrays = true
reorder_inline_tables = true
reorder_keys = true
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

## Unreleased

### Fixes

- Faucet webpage is missing `background.png` and `favicon.ico` (#672).

### Enhancements

- Add an optional open-telemetry trace exporter (#659, #690).
- Support tracing across gRPC boundaries using remote tracing context (#669).
- Instrument the block-producer's block building process (#676).
- Use `LocalBlockProver` for block building (#709).
- Initial developer and operator guides covering monitoring (#699).

### Changes

- [BREAKING] Updated minimum Rust version to 1.84.
- [BREAKING] `Endpoint` configuration simplified to a single string (#654).
- [BREAKING] Update `GetBlockInputs` RPC (#709).
- [BREAKING] `CheckNullifiersByPrefix` now takes a starting block number (#707).
- [BREAKING] Removed nullifiers from `SyncState` endpoint (#708).
- [BREAKING] Updated to Rust Edition 2024 (#727).
- [BREAKING] MSRV bumped to 1.85 (#727).

### Enhancements

- Prove transaction batches using Rust batch prover reference implementation (#659).

## v0.7.2 (2025-01-29)

### Fixes
Expand Down
Loading
Loading