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
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,23 @@
1
1
# Changelog
2
2
3
+
## 1.5.0 /2025-08-04
4
+
* ConcurrencyError fix by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/162
5
+
* Added better typing by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/163
6
+
* Fix arg order in retries by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/165
7
+
* removes "bool object has no attribute Metadata" errors
8
+
* Concurrency improvements by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/164
9
+
* True Runtime independence in AsyncSubstrateInterface:
10
+
* ensures no need to reload types from a shared object that may interfere with concurrency
11
+
* increases memory usage slightly, but drops CPU usage dramatically by not needing to reload the type registry when retrieving from cache
12
+
* RuntimeCache improved to automatically add additional mappings
13
+
* Uses a single dispatcher queue for concurrent sending/receiving which eliminates the need for coroutines to manage their own state in regard to connection management.
14
+
* Futures from the Websocket now get assigned their own exceptions
15
+
* Overall cleaner logic flow with regard to rpc requests
16
+
* The Websocket object now handles reconnections/timeouts
17
+
* Separation of normal ping-pong calls and longer-running subscriptions
0 commit comments