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

sync upstream #5

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
cbf4d91
feat(crates/executor): upgrade blockifier to 0.8.0-rc.3 and add new v…
kkovaacs Sep 3, 2024
e5955f3
feat(pathfinder): add CLI option for setting L1 poll interval
kkovaacs Aug 12, 2024
6368178
fix(pathfinder): fix compilation problem with the `p2p` feature disabled
kkovaacs Aug 12, 2024
3b777a3
chore: update CHANGELOG
kkovaacs Aug 12, 2024
769b302
feat(gateway-client): improve logging upon timeout
CHr15F0x Aug 15, 2024
3876660
fix(rpc): fix continuation token checking for pending events
kkovaacs Aug 26, 2024
f5a8c2a
chore: update CHANGELOG
kkovaacs Aug 27, 2024
528e954
fix: handle edge case when from_block is greater than latest_block_nu…
lambda-0x Aug 27, 2024
b14476f
dont return pending events when `from_block` is latest_block_number + 1
lambda-0x Aug 27, 2024
c512f2a
update comment on the method
lambda-0x Aug 27, 2024
b9e0faa
clean up
lambda-0x Aug 29, 2024
d0ad7d5
fix: return pending events for from_block: pending and to_block: none
lambda-0x Sep 2, 2024
3499400
add test
lambda-0x Sep 2, 2024
36f44a7
chore: add missing CHANGELOG entries
kkovaacs Sep 3, 2024
c0137d6
Merge pull request #2206 from eqlabs/krisztian/blockifier-upgrade-for…
kkovaacs Sep 3, 2024
d76289f
Merge pull request #2207 from eqlabs/krisztian/0.14.2-backport-bugfixes
kkovaacs Sep 3, 2024
e7f10fa
Revert "fix(pathfinder): fix compilation problem with the `p2p` featu…
kkovaacs Sep 3, 2024
221490c
chore(cargo): bump version to 0.14.2
kkovaacs Sep 3, 2024
2f58053
chore: update CHANGELOG
kkovaacs Sep 3, 2024
ebe2538
Merge pull request #2208 from eqlabs/krisztian/0.14.2-version-bump
kkovaacs Sep 3, 2024
8f4ede3
Merge commit 'ebe2538'
steebchen Sep 4, 2024
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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ More expansive patch notes and explanations may be found in the specific [pathfi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.14.2] - 2024-09-03

### Fixed

- Pathfinder sometimes returns an INVALID_CONTINUATION_TOKEN error when requesting events from the pending block and providing a continuation token.
- `starknet_getEvents` incorrectly returns pending events if `from_block` is greater than latest_block_number + 1.
- `starknet_getEvents` incorrectly does not return pending events if `from_block` is `pending` and `to_block` is missing.

### Added

- Pathfinder JSON-RPC extension methods are now also exposed on the `/rpc/pathfinder/v0_1` endpoint.
- `--sync.l1-poll-interval` CLI option has been added to set the poll interval for L1 state. Defaults to 30s.
- Support for Starknet 0.13.2.1.

## [0.14.1] - 2024-07-29

Expand Down
Loading
Loading