Blockscout 5.1.2

pull/7183/head
Viktor Baranov 2 years ago
parent dc21de260d
commit c1b0e1ba5c
  1. 2
      .github/workflows/publish-docker-image-every-push.yml
  2. 2
      .github/workflows/publish-docker-image-release.yml
  3. 8
      CHANGELOG.md
  4. 2
      apps/block_scout_web/mix.exs
  5. 2
      apps/ethereum_jsonrpc/mix.exs
  6. 2
      apps/explorer/mix.exs
  7. 2
      apps/indexer/mix.exs
  8. 4
      deploy/testing/eth-goerli/values.yaml
  9. 2
      mix.exs
  10. 2
      rel/config.exs

@ -7,7 +7,7 @@ on:
env:
OTP_VERSION: '25.2.1'
ELIXIR_VERSION: '1.14.3'
RELEASE_VERSION: 5.1.1
RELEASE_VERSION: 5.1.2
jobs:
push_to_registry:

@ -18,7 +18,7 @@ jobs:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
env:
RELEASE_VERSION: 5.1.1
RELEASE_VERSION: 5.1.2
steps:
- name: Check out the repo
uses: actions/checkout@v3

@ -4,6 +4,14 @@
### Features
### Fixes
### Chore
## 5.1.2-beta
### Features
- [#6925](https://github.com/blockscout/blockscout/pull/6925) - Rework token price fetching mechanism and sort token balances by fiat value
- [#7068](https://github.com/blockscout/blockscout/pull/7068) - Add authenticate endpoint
- [#6990](https://github.com/blockscout/blockscout/pull/6990) - Improved http requests logging, batch transfers pagination; New API v2 endpoint `/smart-contracts/counters`; And some refactoring

@ -23,7 +23,7 @@ defmodule BlockScoutWeb.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "5.1.1"
version: "5.1.2"
]
end

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

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

@ -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.1"
version: "5.1.2"
]
end

@ -38,7 +38,7 @@ blockscout:
environment:
BLOCKSCOUT_VERSION:
_default: v5.1.1-beta
_default: v5.1.2-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.1-beta
_default: v5.1.2-beta
NEXT_PUBLIC_FOOTER_GITHUB_LINK:
_default: https://github.com/blockscout/blockscout
NEXT_PUBLIC_FOOTER_TWITTER_LINK:

@ -7,7 +7,7 @@ defmodule BlockScout.Mixfile do
[
# app: :block_scout,
# aliases: aliases(config_env()),
version: "5.1.1",
version: "5.1.2",
apps_path: "apps",
deps: deps(),
dialyzer: dialyzer(),

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

Loading…
Cancel
Save