mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Update changelog
This commit is contained in:
parent
603d1d14b9
commit
96ddbcd674
2 changed files with 29 additions and 12 deletions
16
Changelog.md
16
Changelog.md
|
@ -1,3 +1,19 @@
|
||||||
|
## 2024.10 Update
|
||||||
|
|
||||||
|
1. Parallel write to celldb: substantial improvement of sync and GC speed, especially with slow disks.
|
||||||
|
2. Decreased network traffic: only first block candidate is sent optimistically.
|
||||||
|
3. Improved channel creation and dht lookups, introduction of semi-private overlays
|
||||||
|
4. New LS dispatch queue related methods and improvement security
|
||||||
|
5. Fixing recursion in TVM continuations
|
||||||
|
6. Improved stats for actors, validator sessions, perf counters, overlays, adnl, rocksdb
|
||||||
|
7. Migration to C++20
|
||||||
|
8. Improved block size estimates: account for depth in various structures
|
||||||
|
9. Fix bug with `<<` optimization in FunC
|
||||||
|
10. Minor changes of TVM which will be activated by `Config8.version >= 9`
|
||||||
|
11. Multiple minor improvements
|
||||||
|
|
||||||
|
Besides the work of the core team, this update is based on the efforts of @krigga (emulator), Arayz @ TonBit (LS security, TVM recursion).
|
||||||
|
|
||||||
## 2024.08 Update
|
## 2024.08 Update
|
||||||
|
|
||||||
1. Introduction of dispatch queues, message envelopes with transaction chain metadata, and explicitly stored msg_queue size, which will be activated by `Config8.version >= 8` and new `Config8.capabilities` bits: `capStoreOutMsgQueueSize`, `capMsgMetadata`, `capDeferMessages`.
|
1. Introduction of dispatch queues, message envelopes with transaction chain metadata, and explicitly stored msg_queue size, which will be activated by `Config8.version >= 8` and new `Config8.capabilities` bits: `capStoreOutMsgQueueSize`, `capMsgMetadata`, `capDeferMessages`.
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
## 2024.08 Update
|
## 2024.10 Update
|
||||||
|
|
||||||
1. Introduction of dispatch queues, message envelopes with transaction chain metadata, and explicitly stored msg_queue size, which will be activated by `Config8.version >= 8` and new `Config8.capabilities` bits: `capStoreOutMsgQueueSize`, `capMsgMetadata`, `capDeferMessages`.
|
1. Parallel write to celldb: substantial improvement of sync and GC speed, especially with slow disks.
|
||||||
2. A number of changes to transcation executor which will activated for `Config8.version >= 8`:
|
2. Decreased network traffic: only first block candidate is sent optimistically.
|
||||||
- Check mode on invalid `action_send_msg`. Ignore action if `IGNORE_ERROR` (+2) bit is set, bounce if `BOUNCE_ON_FAIL` (+16) bit is set.
|
3. Improved channel creation and dht lookups, introduction of semi-private overlays
|
||||||
- Slightly change random seed generation to fix mix of `addr_rewrite` and `addr`.
|
4. New LS dispatch queue related methods and improvement security
|
||||||
- Fill in `skipped_actions` for both invalid and valid messages with `IGNORE_ERROR` mode that can't be sent.
|
5. Fixing recursion in TVM continuations
|
||||||
- Allow unfreeze through external messages.
|
6. Improved stats for actors, validator sessions, perf counters, overlays, adnl, rocksdb
|
||||||
- Don't use user-provided `fwd_fee` and `ihr_fee` for internal messages.
|
7. Migration to C++20
|
||||||
3. A few issues with broadcasts were fixed: stop on receiving last piece, response to AdnlMessageCreateChannel
|
8. Improved block size estimates: account for depth in various structures
|
||||||
4. A number of fixes and improvements for emulator and tonlib: correct work with config_addr, not accepted externals, bounces, debug ops gas consumption, added version and c5 dump, fixed tonlib crashes
|
9. Fix bug with `<<` optimization in FunC
|
||||||
5. Added new flags and commands to the node, in particular `--fast-state-serializer`, `getcollatoroptionsjson`, `setcollatoroptionsjson`
|
10. Minor changes of TVM which will be activated by `Config8.version >= 9`
|
||||||
|
11. Multiple minor improvements
|
||||||
|
|
||||||
Besides the work of the core team, this update is based on the efforts of @krigga (emulator), stonfi team, in particular @dbaranovstonfi and @hey-researcher (emulator), and @loeul, @xiaoxianBoy, @simlecode (typos in comments and docs).
|
Besides the work of the core team, this update is based on the efforts of @krigga (emulator), Arayz @ TonBit (LS security, TVM recursion).
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue