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

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

@ -1,11 +1,20 @@
## Current ## Current
### Features
### Fixes
### Chore
## 4.1.7-beta
### Features ### Features
- [#5783](https://github.com/blockscout/blockscout/pull/5783) - Allow to setup multiple ranges of blocks to index - [#5783](https://github.com/blockscout/blockscout/pull/5783) - Allow to setup multiple ranges of blocks to index
### Fixes ### 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 - [#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 ### 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" - [#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, # app: :block_scout,
# aliases: aliases(config_env()), # aliases: aliases(config_env()),
version: "4.1.6", version: "4.1.7",
apps_path: "apps", apps_path: "apps",
deps: deps(), deps: deps(),
dialyzer: dialyzer(), dialyzer: dialyzer(),

Loading…
Cancel
Save