Skip to content

Commit

Permalink
Merge pull request #4708 from stellar/release-horizon-v2.23.1
Browse files Browse the repository at this point in the history
Horizon 2.23.1 - CHANGELOG
  • Loading branch information
bartekn committed Dec 7, 2022
2 parents 62c18dc + 6def229 commit 42e5528
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

strategy:
fail-fast: false
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
complete:
if: always()
needs: [check, build, test]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1

check:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.19]
os: [ubuntu-20.04]
go: [1.19.4]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -37,8 +37,8 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.18.6, 1.19]
os: [ubuntu-20.04]
go: [1.18.6, 1.19.4]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -55,8 +55,8 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.18.6, 1.19]
os: [ubuntu-20.04]
go: [1.18.6, 1.19.4]
pg: [9.6.5, 10]
runs-on: ${{ matrix.os }}
services:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
golangci:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # version v3.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/horizon-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

push-state-diff-image:
name: Push stellar/ledger-state-diff:{sha,latest} to DockerHub
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/horizon-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:

publish-artifacts:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: Upload artifacts to GitHub release
steps:
- name: Run deprecation tests
Expand All @@ -22,7 +22,7 @@ jobs:

- uses: ./.github/actions/setup-go
with:
go-version: 1.19
go-version: 1.19.4

- name: Check dependencies
run: ./gomod.sh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/horizon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: Integration tests
strategy:
matrix:
os: [ubuntu-latest]
go: [1.18.6, 1.19]
os: [ubuntu-20.04]
go: [1.18.6, 1.19.4]
pg: [9.6.5]
ingestion-backend: [db, captive-core, captive-core-remote-storage]
protocol-version: [18, 19]
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:

verify-range:
name: Test (and push) verify-range image
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env:
STELLAR_CORE_VERSION: 19.5.0-1108.ca2fb0605.focal
CAPTIVE_CORE_STORAGE_PATH: /tmp
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/soroban-rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: Integration tests
strategy:
matrix:
os: [ubuntu-latest]
go: [1.19.1]
os: [ubuntu-20.04]
go: [1.19.4]
runs-on: ${{ matrix.os }}
env:
SOROBAN_RPC_INTEGRATION_TESTS_ENABLED: true
Expand Down
6 changes: 6 additions & 0 deletions services/horizon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ file. This project adheres to [Semantic Versioning](https://semver.org/).

## Unreleased

## 2.23.1

### Changes

- Bump Go to the latest version, including net/http security fixes.

## 2.23.0

**Upgrading to this version will trigger a state rebuild. During this process, Horizon will not ingest new ledgers.**
Expand Down

0 comments on commit 42e5528

Please sign in to comment.