pull/5801/head v4.1.7-beta
Viktor Baranov 2 years ago
parent f3ef51999f
commit 08c77408c0
  1. 6
      .github/workflows/publish-docker-image-every-push.yml
  2. 2
      .github/workflows/publish-docker-image-release.yml
  3. 11
      CHANGELOG.md
  4. 2
      mix.exs

@ -7,7 +7,7 @@ on:
env:
OTP_VERSION: '24.3.4.1'
ELIXIR_VERSION: '1.13.4'
RELEASE_VERSION: 4.1.7
NEXT_RELEASE_VERSION: 4.1.8
jobs:
push_to_registry:
@ -43,7 +43,7 @@ jobs:
- name: Add outputs
run: |
echo "::set-output name=release-version::${{ env.RELEASE_VERSION }}"
echo "::set-output name=release-version::${{ env.NEXT_RELEASE_VERSION }}"
echo "::set-output name=short-sha::${{ env.SHORT_SHA }}"
id: output-step
@ -53,7 +53,7 @@ jobs:
context: .
file: ./docker/Dockerfile
push: true
tags: blockscout/blockscout:latest, blockscout/blockscout:${{ env.RELEASE_VERSION }}-prerelease-${{ env.SHORT_SHA }}
tags: blockscout/blockscout:latest, blockscout/blockscout:${{ env.NEXT_RELEASE_VERSION }}-prerelease-${{ env.SHORT_SHA }}
build-args: |
CACHE_EXCHANGE_RATES_PERIOD=
DISABLE_READ_API=false

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

@ -1,11 +1,20 @@
## Current
### Features
### Fixes
### Chore
## 4.1.7-beta
### Features
- [#5783](https://github.com/blockscout/blockscout/pull/5783) - Allow to setup multiple ranges of blocks to index
### Fixes
- [#5797](https://github.com/blockscout/blockscout/pull/5797) - Fix flickering token tooltip
- [#5799](https://github.com/blockscout/blockscout/pull/5799) - Fix address_tokens_usd_sum function
- [#5798](https://github.com/blockscout/blockscout/pull/5798) - Copy explorer node_modules to result image
- [#5797](https://github.com/blockscout/blockscout/pull/5797) - Fix flickering token tooltip
### Chore
- [#5796](https://github.com/blockscout/blockscout/pull/5796) - Add job for e2e tests on every push to master + fix job "Merge 'master' to specific branch after release"

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

Loading…
Cancel
Save