@ -65,7 +65,7 @@ body:
attributes:
label: Backend version
description: The release version of the backend or branch/commit.
placeholder: v5.4.0
placeholder: v6.0.0
validations:
required: true
@ -16,7 +16,7 @@ jobs:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
env:
RELEASE_VERSION: 5.4.0
RELEASE_VERSION: 6.0.0
steps:
- name: Check out the repo
uses: actions/checkout@v4
@ -11,7 +11,7 @@ on:
OTP_VERSION: '25.2.1'
ELIXIR_VERSION: '1.14.5'
jobs:
push_to_registry:
@ -15,7 +15,7 @@ jobs:
DOCKER_CHAIN_NAME: poa
DOCKER_CHAIN_NAME: eth-goerli
DOCKER_CHAIN_NAME: eth-sepolia
DOCKER_CHAIN_NAME: mainnet
DOCKER_CHAIN_NAME: fuse
DOCKER_CHAIN_NAME: immutable
DOCKER_CHAIN_NAME: optimism-l2-advanced
DOCKER_CHAIN_NAME: lukso
DOCKER_CHAIN_NAME: optimism
DOCKER_CHAIN_NAME: polygon-edge
DOCKER_CHAIN_NAME: rsk
@ -18,7 +18,7 @@ jobs:
DOCKER_CHAIN_NAME: stability
DOCKER_CHAIN_NAME: suave
DOCKER_CHAIN_NAME: xdai
DOCKER_CHAIN_NAME: zkevm
DOCKER_CHAIN_NAME: zksync
@ -12,7 +12,7 @@ on:
@ -1,5 +1,18 @@
# ChangeLog
## Current
### Features
### Fixes
### Chore
<details>
<summary>Dependencies version bumps</summary>
</details>
## 6.0.0-dev
@ -65,6 +78,7 @@
- [#9094](https://github.com/blockscout/blockscout/pull/9094) - Improve exchange rates logging
- [#9014](https://github.com/blockscout/blockscout/pull/9014) - Decrease amount of NFT in address collection: 15 -> 9
- [#8994](https://github.com/blockscout/blockscout/pull/8994) - Refactor transactions event preloads
- [#8991](https://github.com/blockscout/blockscout/pull/8991) - Manage DB queue target via runtime env var
@ -23,7 +23,7 @@ defmodule BlockScoutWeb.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "5.4.0",
version: "6.0.0",
xref: [exclude: [Explorer.Chain.Zkevm.Reader]]
]
end
@ -23,7 +23,7 @@ defmodule EthereumJsonrpc.MixProject do
version: "5.4.0"
version: "6.0.0"
@ -24,7 +24,7 @@ defmodule Explorer.Mixfile do
xref: [exclude: [BlockScoutWeb.WebRouter.Helpers]]
@ -14,7 +14,7 @@ defmodule Indexer.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
lockfile: "../../mix.lock",
@ -34,7 +34,7 @@ services:
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED: ""
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL: ""
ADMIN_PANEL_ENABLED: ""
links:
- db:database
environment:
@ -10,7 +10,7 @@ STATS_CONTAINER_NAME := stats
STATS_DB_CONTAINER_NAME := stats-postgres
PROXY_CONTAINER_NAME := proxy
PG_CONTAINER_NAME := postgres
RELEASE_VERSION ?= '5.4.0'
RELEASE_VERSION ?= '6.0.0'
TAG := $(RELEASE_VERSION)-commit-$(shell git log -1 --pretty=format:"%h")
STABLE_TAG := $(RELEASE_VERSION)
@ -7,7 +7,7 @@ defmodule BlockScout.Mixfile do
[
# app: :block_scout,
# aliases: aliases(config_env()),
apps_path: "apps",
deps: deps(),
dialyzer: dialyzer(),
@ -71,7 +71,7 @@ end
# will be used by default
release :blockscout do
set version: "5.4.0-beta"
set version: "6.0.0-beta"
set applications: [
:runtime_tools,
block_scout_web: :permanent,