pull/10779/head v6.8.1-beta
Viktor Baranov 1 month ago
parent 8ce08ee5fc
commit 5afe65bd0d
  1. 30
      CHANGELOG.md
  2. 2
      apps/block_scout_web/mix.exs
  3. 2
      apps/ethereum_jsonrpc/mix.exs
  4. 2
      apps/explorer/mix.exs
  5. 2
      apps/indexer/mix.exs
  6. 2
      docker-compose/docker-compose.yml
  7. 2
      docker/Makefile
  8. 2
      mix.exs
  9. 2
      rel/config.exs

@ -1,5 +1,35 @@
# Changelog
## 6.8.1
### 🚀 Features
- Add `INDEXER_OPTIMISM_L1_DEPOSITS_TRANSACTION_TYPE` env variable ([#10674](https://github.com/blockscout/blockscout/issues/10674))
- Support for filecoin native addresses ([#10468](https://github.com/blockscout/blockscout/issues/10468))
### 🐛 Bug Fixes
- Decoding of zero fields in mud ([#10764](https://github.com/blockscout/blockscout/issues/10764))
- Insert coin balances placeholders in internal transactions fetcher ([#10603](https://github.com/blockscout/blockscout/issues/10603))
- Avoid key violation error in `Indexer.Fetcher.Optimism.TxnBatch` ([#10752](https://github.com/blockscout/blockscout/issues/10752))
- Fix empty current token balances ([#10745](https://github.com/blockscout/blockscout/issues/10745))
- Allow disabling group votes fetcher independently of epoch block fetcher ([#10673](https://github.com/blockscout/blockscout/issues/10673))
- Fix gettext usage warning ([#10693](https://github.com/blockscout/blockscout/issues/10693))
- Truncate token symbol in Explorer.Chain.PolygonZkevm.BridgeL1Token ([#10688](https://github.com/blockscout/blockscout/issues/10688))
### ⚡ Performance
- Improve performance of transactions list page ([#10734](https://github.com/blockscout/blockscout/issues/10734))
### ⚙ Miscellaneous Tasks
- Add meta to migrations_status ([#10678](https://github.com/blockscout/blockscout/issues/10678))
- Token balances fetcher slow queue ([#10694](https://github.com/blockscout/blockscout/issues/10694))
- Shrink sample response for the trace in Filecoin chain type
- Extend missing balanceOf function with :unable_to_decode error ([#10713](https://github.com/blockscout/blockscout/issues/10713))
- Fix flaking explorer tests ([#10676](https://github.com/blockscout/blockscout/issues/10676))
- Change shrink internal transactions migration default batch_size ([#10689](https://github.com/blockscout/blockscout/issues/10689))
## 6.8.0
### 🚀 Features

@ -23,7 +23,7 @@ defmodule BlockScoutWeb.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "6.8.0",
version: "6.8.1",
xref: [
exclude: [
Explorer.Chain.PolygonZkevm.Reader,

@ -23,7 +23,7 @@ defmodule EthereumJsonrpc.MixProject do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "6.8.0"
version: "6.8.1"
]
end

@ -24,7 +24,7 @@ defmodule Explorer.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "6.8.0",
version: "6.8.1",
xref: [exclude: [BlockScoutWeb.Routers.WebRouter.Helpers, Indexer.Helper]]
]
end

@ -14,7 +14,7 @@ defmodule Indexer.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
lockfile: "../../mix.lock",
start_permanent: Mix.env() == :prod,
version: "6.8.0",
version: "6.8.1",
xref: [
exclude: [
Explorer.Chain.Optimism.Deposit,

@ -37,7 +37,7 @@ services:
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED: ""
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL: ""
ADMIN_PANEL_ENABLED: ""
RELEASE_VERSION: 6.8.0
RELEASE_VERSION: 6.8.1
links:
- db:database
environment:

@ -10,7 +10,7 @@ STATS_CONTAINER_NAME := stats
STATS_DB_CONTAINER_NAME := stats-db
PROXY_CONTAINER_NAME := proxy
PG_CONTAINER_NAME := postgres
RELEASE_VERSION ?= '6.8.0'
RELEASE_VERSION ?= '6.8.1'
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()),
version: "6.8.0",
version: "6.8.1",
apps_path: "apps",
deps: deps(),
dialyzer: dialyzer(),

@ -71,7 +71,7 @@ end
# will be used by default
release :blockscout do
set version: "6.8.0-beta"
set version: "6.8.1-beta"
set applications: [
:runtime_tools,
block_scout_web: :permanent,

Loading…
Cancel
Save