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.7 release #599

Draft
wants to merge 43 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
ed72500
feat: block producer redesign skeleton (#502)
Mirko-von-Leipzig Oct 7, 2024
34a45d9
feat(block-producer): implement the skeleton (#515)
Mirko-von-Leipzig Oct 22, 2024
90311b3
feat(block-producer): inject failures and randomise work time (#522)
Mirko-von-Leipzig Oct 24, 2024
d784cce
refactor(block-producer): common graph type (#525)
Mirko-von-Leipzig Oct 25, 2024
fd02092
feat(block-producer): arc transaction data (#530)
Mirko-von-Leipzig Oct 29, 2024
ad20a30
feat(block-producer): refactor batch graph to use dependency graph (#…
Mirko-von-Leipzig Oct 30, 2024
225b6f4
feat(block-producer): inflight state custody of transaction data (#534)
Mirko-von-Leipzig Nov 2, 2024
621b68e
Merge next into next-block-producer
Mirko-von-Leipzig Nov 2, 2024
49846e3
chore: address comments
bobbinth Nov 2, 2024
74da4ca
Merge pull request #538 from 0xPolygonMiden/mirko-merge-next
Mirko-von-Leipzig Nov 3, 2024
2ceec74
feat(block-producer): promote redesign (#541)
Mirko-von-Leipzig Nov 5, 2024
16c3087
refactor: simplify shared mempool (#548)
polydez Nov 8, 2024
8329a77
chore: update deadpool-sqlite (#555)
varun-doshi Nov 28, 2024
312d06a
feat(block-producer): improve mempool config (#543)
Mirko-von-Leipzig Nov 29, 2024
39828bf
fix(mempool): allow internal batch dependencies (#549)
Mirko-von-Leipzig Nov 29, 2024
54095db
feat: https support in endpoint config (#556)
varun-doshi Dec 2, 2024
a686581
chore: migrate code to the latest `miden-base` (#559)
polydez Dec 2, 2024
3b1ac1f
fix(block-producer): handle reverted batches (#557)
Mirko-von-Leipzig Dec 4, 2024
9399917
feat(block-producer): merge in next (#561)
Mirko-von-Leipzig Dec 4, 2024
aa9ebb4
Merge branch 'next' into next-block-producer
Mirko-von-Leipzig Dec 4, 2024
536bcd0
chore: update changelog
Mirko-von-Leipzig Dec 4, 2024
0f061bb
Refactor and store account deltas by separate fields in the database …
polydez Dec 5, 2024
25160ea
feat(block-producer): address mempool review comments
Mirko-von-Leipzig Dec 5, 2024
a1872c5
feat(block-producer): switch to mempool
Mirko-von-Leipzig Dec 9, 2024
848b3b8
chore(block-producer): lower block interval from 10s to 5s (#569)
Mirko-von-Leipzig Dec 9, 2024
0f6b69a
chore: remove test_ prefix stutter (#568)
Mirko-von-Leipzig Dec 9, 2024
2e3fa34
refactor(block-producer): remove Store traits (#571)
Mirko-von-Leipzig Dec 10, 2024
aaaef51
refactor(block-producer): order batches within a block (#572)
Mirko-von-Leipzig Dec 10, 2024
28c20d0
feat(block-producer): remove deep clone of tx data (#570)
Mirko-von-Leipzig Dec 10, 2024
30f18d1
chore: move new changelog entries to unreleased (#579)
Mirko-von-Leipzig Dec 11, 2024
5b8531b
chore(proto): replace miette with anyhow (#576)
Mirko-von-Leipzig Dec 11, 2024
c9cc211
refactor(block-producer): cleanup StoreClient (#574)
Mirko-von-Leipzig Dec 11, 2024
2775f5a
refactor(block-producer): replace BatchJobId with BatchId (#577)
Mirko-von-Leipzig Dec 11, 2024
9986d74
feat(block-producer): instrument mempool (#578)
Mirko-von-Leipzig Dec 11, 2024
b3263de
refactor(rpc): invert tx inputs missing notes to found (#590)
Mirko-von-Leipzig Dec 19, 2024
3de6e21
feat(block-producer): catch up missed blocks instead of skipping (#588)
Mirko-von-Leipzig Dec 19, 2024
ccd3519
feat(block-producer): re-add batch inputs (#589)
Mirko-von-Leipzig Dec 19, 2024
9639755
chore: fix typos
bobbinth Dec 25, 2024
b240c2c
fix: support new two `Felt` account ID in node (#591)
tomyrd Dec 25, 2024
78ca36c
feat: support transaction expiration (#582)
Mirko-von-Leipzig Dec 25, 2024
ecacf1c
style: standardize proto aliases (#610)
TomasArrachea Jan 13, 2025
ef07bbc
feat(store): remove testing endpoints (#608)
Mirko-von-Leipzig Jan 13, 2025
f9da75e
feat: Enable storage map querying (#598)
igamigo Jan 13, 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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## Unreleased

### Enhancements

- Support Https in endpoint configuration (#556).
- Upgrade `block-producer` from FIFO queue to mempool dependency graph (#562).
- Support transaction expiration (#582).

### Changes

- Standardized protobuf type aliases (#609).
- [BREAKING] Added support for new two `Felt` account ID (#591).
- [BREAKING] Inverted `TransactionInputs.missing_unauthenticated_notes` to `found_missing_notes` (#509).
- [BREAKING] Remove store's `ListXXX` endpoints which were intended for test purposes (#608).
- [BREAKING] Added support for storage maps on `GetAccountProofs` endpoint (#598).

## v0.6.0 (2024-11-05)

### Enhancements
Expand Down
Loading
Loading