cryptofoundry

Contact cryptofoundry

Tell us what you want to build or automate.

adamant

ADAMANT v0.8.1

This release adds logging for the database migration script. The ADAMANT node will now log messages before and after executing the migration script:

[inf] 2023-12-22 04:00:25 | Found 5 pending migrations. Start executing, this may take a while…
[inf] 2023-12-22 04:17:13 | Migrations have been successfully completed.

The default value for the cors.origin property has been changed from reflecting the request origin (true) to *. See the documentation to learn more about CORS configuration for the ADAMANT node.

{
  "cors": {
    "origin": "*" // default
  }
}

The config.json file has been added to .gitignore. Users now need to create the config.json file themselves or copy config.default.json to start the ADAMANT node.

cp config.default.json config.json

Breaking changes

The default CORS header value for Access-Control-Allow-Origin has changed from reflecting the request origin to *. Users relying on the previous reflected-origin behavior should update their config.json accordingly. Additionally, config.json is now ignored by git, so users must create or copy this file manually before starting the node.