diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml
index 53f19b59b2..3c2f2a50c7 100644
--- a/.github/workflows/e2e-tests.yml
+++ b/.github/workflows/e2e-tests.yml
@@ -12,7 +12,7 @@ env:
K8S_PORT: ${{ secrets.K8S_PORT }}
USERNAME: ${{ secrets.USERNAME }}
BASTION_SSH_KEY: ${{secrets.BASTION_SSH_KEY}}
- RELEASE_VERSION: 5.1.2
+ RELEASE_VERSION: 5.1.3
jobs:
push_to_registry:
diff --git a/.github/workflows/publish-docker-image-every-push.yml b/.github/workflows/publish-docker-image-every-push.yml
index 1b4586e743..f1f54fe1c7 100644
--- a/.github/workflows/publish-docker-image-every-push.yml
+++ b/.github/workflows/publish-docker-image-every-push.yml
@@ -7,7 +7,7 @@ on:
env:
OTP_VERSION: '25.2.1'
ELIXIR_VERSION: '1.14.3'
- RELEASE_VERSION: 5.1.2
+ RELEASE_VERSION: 5.1.3
jobs:
push_to_registry:
diff --git a/.github/workflows/publish-docker-image-release.yml b/.github/workflows/publish-docker-image-release.yml
index bf27bb5520..0e1897da31 100644
--- a/.github/workflows/publish-docker-image-release.yml
+++ b/.github/workflows/publish-docker-image-release.yml
@@ -18,7 +18,7 @@ jobs:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
env:
- RELEASE_VERSION: 5.1.2
+ RELEASE_VERSION: 5.1.3
steps:
- name: Check out the repo
uses: actions/checkout@v3
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e49b49de4..49fc6bf12b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,19 @@
### Features
+### Fixes
+
+### Chore
+
+
+ Dependencies version bumps
+
+
+
+## 5.1.3-beta
+
+### Features
+
- [#7253](https://github.com/blockscout/blockscout/pull/7253) - Add `EIP_1559_ELASTICITY_MULTIPLIER` env variable
- [#7187](https://github.com/blockscout/blockscout/pull/7187) - Integrate [Eth Bytecode DB](https://github.com/blockscout/blockscout-rs/tree/main/eth-bytecode-db/eth-bytecode-db)
- [#7185](https://github.com/blockscout/blockscout/pull/7185) - Aave v3 transaction actions indexer
@@ -23,6 +36,28 @@
- [#7107](https://github.com/blockscout/blockscout/pull/7107) - Tx actions: remove excess delete_all calls and remake a cache
- [#7201](https://github.com/blockscout/blockscout/pull/7201) - Remove rust, cargo from dependencies since the latest version of ex_keccak is using precompiled rust
+
+ Dependencies version bumps
+
+- [#7183](https://github.com/blockscout/blockscout/pull/7183) - Bump sobelow from 0.11.1 to 0.12.1
+- [#7188](https://github.com/blockscout/blockscout/pull/7188) - Bump @babel/preset-env from 7.20.2 to 7.21.4 in /apps/block_scout_web/assets
+- [#7190](https://github.com/blockscout/blockscout/pull/7190) - Bump @amplitude/analytics-browser from 1.9.1 to 1.9.2 in /apps/block_scout_web/assets
+- [#7189](https://github.com/blockscout/blockscout/pull/7189) - Bump @babel/core from 7.21.3 to 7.21.4 in /apps/block_scout_web/assets
+- [#7206](https://github.com/blockscout/blockscout/pull/7206) - Bump tesla from 1.5.1 to 1.6.0
+- [#7207](https://github.com/blockscout/blockscout/pull/7207) - Bump sobelow from 0.12.1 to 0.12.2
+- [#7205](https://github.com/blockscout/blockscout/pull/7205) - Bump @amplitude/analytics-browser from 1.9.2 to 1.9.3 in /apps/block_scout_web/assets
+- [#7204](https://github.com/blockscout/blockscout/pull/7204) - Bump postcss-loader from 7.1.0 to 7.2.1 in /apps/block_scout_web/assets
+- [#7214](https://github.com/blockscout/blockscout/pull/7214) - Bump core-js from 3.29.1 to 3.30.0 in /apps/block_scout_web/assets
+- [#7215](https://github.com/blockscout/blockscout/pull/7215) - Bump postcss-loader from 7.2.1 to 7.2.4 in /apps/block_scout_web/assets
+- [#7220](https://github.com/blockscout/blockscout/pull/7220) - Bump wallaby from 0.30.2 to 0.30.3
+- [#7236](https://github.com/blockscout/blockscout/pull/7236) - Bump sass from 1.60.0 to 1.61.0 in /apps/block_scout_web/assets
+- [#7235](https://github.com/blockscout/blockscout/pull/7235) - Bump @amplitude/analytics-browser from 1.9.3 to 1.9.4 in /apps/block_scout_web/assets
+- [#7224](https://github.com/blockscout/blockscout/pull/7224) - Bump webpack from 5.77.0 to 5.78.0 in /apps/block_scout_web/assets
+- [#7245](https://github.com/blockscout/blockscout/pull/7245) - Bump eslint from 8.37.0 to 8.38.0 in /apps/block_scout_web/assets
+- [#7250](https://github.com/blockscout/blockscout/pull/7250) - Bump dialyxir from 1.2.0 to 1.3.0
+
+
+
## 5.1.2-beta
### Features
diff --git a/apps/block_scout_web/mix.exs b/apps/block_scout_web/mix.exs
index bc447deacf..d793f48a52 100644
--- a/apps/block_scout_web/mix.exs
+++ b/apps/block_scout_web/mix.exs
@@ -23,7 +23,7 @@ defmodule BlockScoutWeb.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
- version: "5.1.2"
+ version: "5.1.3"
]
end
diff --git a/apps/ethereum_jsonrpc/mix.exs b/apps/ethereum_jsonrpc/mix.exs
index 6a40bef34e..6837f34608 100644
--- a/apps/ethereum_jsonrpc/mix.exs
+++ b/apps/ethereum_jsonrpc/mix.exs
@@ -23,7 +23,7 @@ defmodule EthereumJsonrpc.MixProject do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
- version: "5.1.2"
+ version: "5.1.3"
]
end
diff --git a/apps/explorer/mix.exs b/apps/explorer/mix.exs
index c9f7ace69b..7b555e037a 100644
--- a/apps/explorer/mix.exs
+++ b/apps/explorer/mix.exs
@@ -24,7 +24,7 @@ defmodule Explorer.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
- version: "5.1.2",
+ version: "5.1.3",
xref: [exclude: [BlockScoutWeb.WebRouter.Helpers]]
]
end
diff --git a/apps/indexer/mix.exs b/apps/indexer/mix.exs
index 221204d14d..3834118635 100644
--- a/apps/indexer/mix.exs
+++ b/apps/indexer/mix.exs
@@ -14,7 +14,7 @@ defmodule Indexer.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
lockfile: "../../mix.lock",
start_permanent: Mix.env() == :prod,
- version: "5.1.2"
+ version: "5.1.3"
]
end
diff --git a/deploy/testing/eth-goerli/values.yaml b/deploy/testing/eth-goerli/values.yaml
index 607bbc1a8a..eb6125d541 100644
--- a/deploy/testing/eth-goerli/values.yaml
+++ b/deploy/testing/eth-goerli/values.yaml
@@ -38,7 +38,7 @@ blockscout:
environment:
BLOCKSCOUT_VERSION:
- _default: v5.1.2-beta
+ _default: v5.1.3-beta
ETHEREUM_JSONRPC_VARIANT:
_default: geth
HEART_BEAT_TIMEOUT:
@@ -203,7 +203,7 @@ frontend:
NEXT_PUBLIC_API_BASE_PATH:
_default: /
NEXT_PUBLIC_BLOCKSCOUT_VERSION:
- _default: v5.1.2-beta
+ _default: v5.1.3-beta
NEXT_PUBLIC_FOOTER_GITHUB_LINK:
_default: https://github.com/blockscout/blockscout
NEXT_PUBLIC_FOOTER_TWITTER_LINK:
diff --git a/docker-compose/docker-compose-no-rust-services.yml b/docker-compose/docker-compose-no-rust-services.yml
index 5ae18e148e..336c442cdf 100644
--- a/docker-compose/docker-compose-no-rust-services.yml
+++ b/docker-compose/docker-compose-no-rust-services.yml
@@ -28,7 +28,7 @@ services:
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED: ""
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL: ""
ADMIN_PANEL_ENABLED: ""
- RELEASE_VERSION: 5.1.2
+ RELEASE_VERSION: 5.1.3
restart: always
stop_grace_period: 5m
container_name: 'blockscout'
diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml
index 6681f8dc53..56eecc9a72 100644
--- a/docker-compose/docker-compose.yml
+++ b/docker-compose/docker-compose.yml
@@ -29,7 +29,7 @@ services:
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED: ""
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL: ""
ADMIN_PANEL_ENABLED: ""
- RELEASE_VERSION: 5.1.2
+ RELEASE_VERSION: 5.1.3
restart: always
stop_grace_period: 5m
container_name: 'blockscout'
diff --git a/docker/Makefile b/docker/Makefile
index 04535f9ca0..dd883a704a 100644
--- a/docker/Makefile
+++ b/docker/Makefile
@@ -7,7 +7,7 @@ BS_CONTAINER_NAME := blockscout
PG_CONTAINER_IMAGE := postgres:14
PG_CONTAINER_NAME := db
THIS_FILE = $(lastword $(MAKEFILE_LIST))
-RELEASE_VERSION ?= '5.1.2'
+RELEASE_VERSION ?= '5.1.3'
PORT ?= '4000'
TAG := $(RELEASE_VERSION)-commit-$(shell git log -1 --pretty=format:"%h")
STABLE_TAG := $(RELEASE_VERSION)
diff --git a/mix.exs b/mix.exs
index ece2bcfbc2..2665c055b3 100644
--- a/mix.exs
+++ b/mix.exs
@@ -7,7 +7,7 @@ defmodule BlockScout.Mixfile do
[
# app: :block_scout,
# aliases: aliases(config_env()),
- version: "5.1.2",
+ version: "5.1.3",
apps_path: "apps",
deps: deps(),
dialyzer: dialyzer(),
diff --git a/rel/config.exs b/rel/config.exs
index bdaeed6082..e0292ec789 100644
--- a/rel/config.exs
+++ b/rel/config.exs
@@ -71,7 +71,7 @@ end
# will be used by default
release :blockscout do
- set version: "5.1.2-beta"
+ set version: "5.1.3-beta"
set applications: [
:runtime_tools,
block_scout_web: :permanent,