Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4f5e449
Faster startup
thewhaleking Mar 2, 2026
9b6f0b5
Merge branch 'staging' into feat/thewhaleking/faster-startup
thewhaleking Mar 2, 2026
48ae5df
trigger
thewhaleking Mar 2, 2026
486aa25
Optimise
thewhaleking Mar 2, 2026
4605345
Reset startup task
thewhaleking Mar 2, 2026
1eba3b2
trigger
thewhaleking Mar 5, 2026
ef6a7aa
Adjust test for slow ass github actions runner
thewhaleking Mar 5, 2026
6894f30
trigger
thewhaleking Mar 5, 2026
5bae928
Better typing for ScaleObj
thewhaleking Mar 16, 2026
969cb9e
Merge pull request #278 from opentensor/feat/thewhaleking/scaleobj-ty…
thewhaleking Mar 16, 2026
60f7358
Merge branch 'staging' into feat/thewhaleking/faster-startup
thewhaleking Mar 16, 2026
6d090fb
TTL Caches the DNS (on disk) and the SSL session (in memory only)
thewhaleking Mar 17, 2026
40aea03
Fix tests
thewhaleking Mar 17, 2026
d177af9
Better handle local chain in disk cache
thewhaleking Mar 17, 2026
7dea46a
Cache local chain on GH Actions run
thewhaleking Mar 17, 2026
07f0b6d
Merge remote-tracking branch 'origin/feat/thewhaleking/faster-startup…
thewhaleking Mar 17, 2026
78aebe1
Merge pull request #277 from opentensor/feat/thewhaleking/faster-startup
thewhaleking Mar 17, 2026
ef8d5a8
Merge branch 'staging' into feat/thewhaleking/reuse-ssl
thewhaleking Mar 17, 2026
e44e0a7
Fix test
thewhaleking Mar 17, 2026
74d6f24
Test fixes
thewhaleking Mar 17, 2026
7253434
Merge pull request #279 from opentensor/feat/thewhaleking/reuse-ssl
thewhaleking Mar 18, 2026
4003bbf
Added info about signed commits
thewhaleking Mar 19, 2026
66785f7
Merge pull request #280 from opentensor/chore/thewhaleking/signed-com…
thewhaleking Mar 19, 2026
ef2a49d
[fix] change legacy (old) runtimeApi params encoding
thewhaleking Mar 19, 2026
e1f0007
Merge pull request #194 from opentensor/fix/fix-legacy-runtime-api-pa…
thewhaleking Mar 23, 2026
b1712d7
Bumps changelog + version, loosens setuptools req
thewhaleking Mar 25, 2026
6f27713
Prefer v15 metadata when available
thewhaleking Mar 25, 2026
8e140de
Update archive endpoint for tests
thewhaleking Mar 25, 2026
cc91dc4
Merge pull request #282 from opentensor/feat/thewhaleking/ensure-v15-…
thewhaleking Mar 25, 2026
842b486
Merge branch 'staging' into changelog/1.6.4
thewhaleking Mar 25, 2026
705e409
Update changelog
thewhaleking Mar 25, 2026
244814f
Merge pull request #281 from opentensor/changelog/1.6.4
thewhaleking Mar 25, 2026
7be56d3
Merge branch 'master' into release/1.6.4
thewhaleking Mar 25, 2026
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
1 change: 1 addition & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
env:
CARGO_TERM_COLOR: always
VERBOSE: ${{ github.event.inputs.verbose }}
CACHE_LOCAL: "1"

# job to run tests in parallel
jobs:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 1.6.4 /2025-03-25

## What's Changed
* Better typing for ScaleObj by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/278
* Faster startup by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/277
* DNS/SSL Caching by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/279
* Added info about signed commits by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/280
* [fix] change legacy (old) runtimeApi params encoding by @camfairchild in https://github.com/opentensor/async-substrate-interface/pull/194
* Prefer v15 metadata when available by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/282

**Full Changelog**: https://github.com/opentensor/async-substrate-interface/compare/v1.6.3...v1.6.4

## 1.6.3 /2025-02-24

## What's Changed
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,26 @@ The following environment variables are used within async-substrate-interface

Contributions are welcome! Please open an issue or submit a pull request to the `staging` branch.

### Signed Commits
All commits in pull requests must be signed. We require signed commits to verify the authenticity of contributions and ensure code integrity.

To sign your commits, you must have GPG signing configured in Git:

```bash
git commit -S -m "your commit message"
```

Or configure Git to sign all commits automatically:

```bash
git config --global commit.gpgsign true
```

For instructions on setting up GPG key signing, see [GitHub's documentation on signing commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).

> **Note:** Pull requests containing unsigned commits will not be merged.


## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Expand Down
Loading
Loading