Skip to content

Releases: aeternity/aeternal

Buzzcocks

17 Dec 11:39
Compare
Choose a tag to compare
Release 0.13.0!

Major changes:

- much better name support, with much much faster querying
- Debug symbols in release build for better problem diagnosis
- Swagger updated for once
- Argument binding used much more in Diesel queries, which is safer, and should be faster
- More use of Rust-side pagination, which is quicker and less hacky, and works better with binding above

Magazine

29 Nov 09:35
Compare
Choose a tag to compare
Version 0.12.0 of æternal, the æternity middleware.

Major changes in this release:
- Transaction-level reloading with the -T option
- Support for decoding of return values from contract calls
- Various bug fixes

Note:

This release includes a time-consuming migration. This will be run on
startup. If you do not wish to have downtime, you can avoid this by running the migration on its own, by reloading a block (easiest way):
`aeternal -H 1`

This release decodes return values from contract calls. To updated your
database, do something like this:
```
for i in `psql -t -U middleware -h localhost mainnet -c "select hash from transactions where tx_type='ContractCreateTx' order by block_height asc"`; do echo $i; ./target/release/aeternal -T $i; done

for i in `psql -t -U middleware -h localhost mainnet -c "select t.hash from transactions t join contract_calls cc on t.id=cc.transaction_id where tx_type='ContractCallTx' and result is null order by block_height asc"`; do echo $i; ./target/release/aeternal -T $i; done
```

Adjusting for your own installation.

Payolas

21 Nov 11:26
a48ab6f
Compare
Choose a tag to compare

Change log:

  • Middleware:
    • More renaming to aeternal
    • More WebSocket stability
    • Updated documentation
    • Fork detection made a little more aggressive

Brasstronaut

13 Nov 10:07
870bb95
Compare
Choose a tag to compare

Change log:

  • Middleware:
    • Rename aepp-middleware to aeternal
    • Made WebSockets async for better stability

Lillix

11 Nov 08:14
Compare
Choose a tag to compare

Changelog:

  • Middleware:
    • Multiple bug fixes and optimizations for AENS

Mythos

30 Oct 15:30
a1abecf
Compare
Choose a tag to compare

Changelog:

  • Middleware:

    • Renamed to aeternal
    • Updated CLI with new easier to read macros syntax
    • Support for name actions in lima release of node
    • add endpoint to verify contracts
    • Multiple fixes in names module
  • Frontend:

    • Multiple fixes in names module
    • Fix GAMetaTx transformation
    • Multiple CSS fixes
    • Rename project/logo to aeternal

Zumpano

22 Aug 14:12
a88684e
Compare
Choose a tag to compare

Changelog:

  • Middleware:

    • Updated fork detection logic
  • Frontend:

    • Enable faucet option on middleware for ae_uat network id
    • fix search button action

Stabilo

15 Aug 12:45
8612e17
Compare
Choose a tag to compare

Changelog:

  • Middleware:
    • Fixed fork detection
    • Added new indexes to speed-up some queries
    • Faster transactions for interval
  • Frontend:
    • Fixed issue with extracting tx_type and updating label
    • Show decoded payload in tx details page

Chilliwack

13 Aug 13:31
be9865e
Compare
Choose a tag to compare

Changelog:

  • Frontend

    • Add support for GAMetaTx
    • Display all the signatures in tx details page
  • Middleware

    • Strip null values from the transaction before storing
    • fix fork detection that stopped some transactions from loading
    • Update swagger file
    • add docker-compose to run node, compiler and middleware together
    • enable WebSocket by default in docker

Garvilo

26 Jul 14:43
1ca8986
Compare
Choose a tag to compare

This minor release fixes docker build