Skip to content

Commit b5836b0

Browse files
ceyonurDarioush Jalali
andauthored
add released.md and template (#1373)
* add released.md and template * Update RELEASES.md Signed-off-by: Ceyhun Onur <[email protected]> * Update pull_request_template.md Signed-off-by: Ceyhun Onur <[email protected]> --------- Signed-off-by: Ceyhun Onur <[email protected]> Co-authored-by: Darioush Jalali <[email protected]>
1 parent 05f179c commit b5836b0

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

.github/pull_request_template.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44

55
## How this was tested
66

7-
## How is this documented
7+
## Need to be documented?
8+
9+
## Need to update RELEASES.md?

RELEASES.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Release Notes
2+
3+
## Pending Release
4+
5+
## [v0.6.11](https://github.com/ava-labs/subnet-evm/releases/tag/v0.6.11)
6+
7+
This release focuses on Standalone DB and database configs.
8+
9+
This version is backwards compatible to [v0.6.0](https://github.com/ava-labs/subnet-evm/releases/tag/v0.6.0). It is optional, but encouraged.
10+
11+
The plugin version is unchanged at 37 and is compatible with AvalancheGo versions v1.11.12.
12+
13+
### Updates
14+
15+
* Added Standalone DB creation in chain data directory (`~/.avalanchego/chainData/{chain-ID}/db/`). Subnet-EVM will create seperate databases for chains by default if there is no accepted blocks previously
16+
* Refactored Warp Backend to support new payload types
17+
* Refactored TrieDB reference root configuration
18+
* Bumped AvalancheGo dependency to v1.11.12
19+
* Bumped minimum Golang version to v1.22.8
20+
21+
### Configs
22+
23+
* Added following new database options:
24+
* `"use-standalone-database"` (`bool`): If true it enables creation of standalone database. If false it uses the GRPC Database provided by AvalancheGo. Default is nil and creates the standalone database only if there is no accepted block in the AvalancheGo database (node has not accepted any blocks for this chain)
25+
* `"database-type"` (`string`): Specifies the type of database to use. Must be one of `pebbledb`, `leveldb` or `memdb`. memdb is an in-memory, non-persisted database. Default is `pebbledb`
26+
* `"database-config-file"` (`string`): Path to the database config file. Config file is changed for every database type. See [docs](https://docs.avax.network/api-reference/avalanche-go-configs-flags#database-config) for available configs per database type. Ignored if --config-file-content is specified
27+
* `"database-config-file-content"` (`string`): As an alternative to `database-config-file`, it allows specifying base64 encoded database config content
28+
* `"database-path"` (`string`): Specifies the directory to which the standalone database is persisted. Defaults to "`$HOME/.avalanchego/chainData/{chainID}`"
29+
* `"database-read-only"` (`bool`) : Specifies if the standalone database should be a read-only type. Defaults to false
30+
31+
### Fixes
32+
33+
* Fixed Eth upgrade mapping with Avalanche upgrades in genesis
34+
* Fixed transaction size tracking in worker environment
35+
* Fixed a rare case of VM's shutting down ends up panicking in RPC server

0 commit comments

Comments
 (0)