You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,11 @@ More expansive patch notes and explanations may be found in the specific [pathfi
7
7
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
10
-
## Unreleased
10
+
## [0.17.0-beta.1] - 2025-05-13
11
11
12
12
### Added
13
13
14
+
- Pathfinder now supports _syncing_ from Starknet 0.14.0. Support is still incomplete, execution and compilation of new classes will likely fail for new classes until a further upgrade.
14
15
- Pathfinder now supports storing only the latest state of the blockchain history. This can be configured with the '--storage.blockchain-history' CLI option.
15
16
16
17
- Accepted values are:
@@ -42,17 +43,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
42
43
- With pruning enabled, affected JSON-RPC method requests will only succeed if the requested block is within the last N + 1 blocks.
43
44
- The choice between `archive` and `pruned` mode is made once, when creating the database. Once chosen, it cannot be changed without creating a new database.
44
45
- It is possible to change the number of blocks stored in pruned mode between runs, using the same CLI option with a different value for N.
46
+
- Note that the number of blocks stored is relative to:
47
+
a. The latest L1 checkpoint if it exists and the latest L2 block is ahead of it
48
+
b. The latest L2 block if it is behind the latest L1 checkpoint or no L1 checkpoints have been received by the node (practically unreachable)
45
49
46
50
-`starknet_getTransactionStatus` now returns RECEIVED even when the gateway cannot find the transaction, provided the transaction was successfully sent by the responding node within the last 5 minutes.
47
51
48
52
### Fixed
49
53
50
54
-`starknet_unsubscribe` does not accept subscription IDs as strings.
51
55
52
-
- Note that the number of blocks stored is relative to:
53
-
a. The latest L1 checkpoint if it exists and the latest L2 block is ahead of it
54
-
b. The latest L2 block if it is behind the latest L1 checkpoint or no L1 checkpoints have been received by the node (practically unreachable)
55
-
56
56
### Changed
57
57
58
58
-`--rpc.get-events-max-uncached-event-filters-to-load` CLI option has been replaced with `rpc.get-events-event-filter-block-range-limit`. The new option serves the same purpose of preventing queries from taking too long, but it should be clearer in its intent.
0 commit comments