Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main <- Stage #2011

Merged
merged 34 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
09cdd03
chore: remove old ci files
vaclav-ssvlabs Dec 17, 2024
d96f336
fix: (EventHandler) update non-committee shares upon liquidation/reac…
moshe-blox Jan 12, 2025
81c9e6b
optimization(validatorStore): handlers (add, remove, update) and test…
olegshmuelov Jan 13, 2025
1d90a85
feat(eventsyncing): health calls check last seen block distance (#1978)
anatolie-ssv Jan 14, 2025
bfec50e
fix(p2p): start listening to P2P messages only after contract and met…
nkryuchkov Jan 15, 2025
67b6d43
refactor(exporter): change storage key structure, add pruning (#1845)
anatolie-ssv Jan 16, 2025
c57d7f5
Observability - beacon client 'Validators' endpoint request duration …
oleg-ssvlabs Dec 30, 2024
6b27b3a
remove check for block below threshold in historical sync (#1983)
anatolie-ssv Jan 16, 2025
6fe1a65
Metrics - EL set status to 'syncing' only when distance is above the …
oleg-ssvlabs Jan 17, 2025
b0b305d
eth/executionclient: fix double sync distance metrics (#1985)
nkryuchkov Jan 17, 2025
4ba0e85
increase subscription buffer size (#1989)
olegshmuelov Jan 19, 2025
504b985
Merge pull request #1987 from ssvlabs/main
y0sher Jan 20, 2025
aa993e0
Merge pull request #1943 from ssvlabs/chore-remove-old-ci-files
vaclav-ssvlabs Jan 20, 2025
290fcaa
Update golangci config file
oleg-ssvlabs Jan 20, 2025
4e1c82f
Update Lint GitHub Actions job
oleg-ssvlabs Jan 20, 2025
3afee55
shares-storage: replace GOB encoding with SSZ, deduplicate validator …
iurii-ssv Jan 21, 2025
3e76188
fix(pubsub): increase subscription buffer size to 256 and update go-l…
olegshmuelov Jan 21, 2025
c55c696
v2.2.0 feat(cl/el): support multiple nodes (#1964)
nkryuchkov Jan 21, 2025
791919d
fix(exporter): missing identifier value (#1982)
anatolie-ssv Jan 22, 2025
1d05abd
Add dependabot configuration for GitHub Actions
oleg-ssvlabs Jan 23, 2025
09e159d
Bump actions/upload-artifact to V4
oleg-ssvlabs Jan 23, 2025
27c9e4b
fix(eventsyncer): retry if historical sync finished on old block (#1986)
anatolie-ssv Jan 24, 2025
fc6e21d
Fix flaky unit test by adding a 10% margin
oleg-ssvlabs Jan 24, 2025
49b18ec
config: p2p, fix parsing HostDNS (#1995)
iurii-ssv Jan 24, 2025
9ad77c8
fix: (discovery) logged configuration (attempt 2) (#1981)
iurii-ssv Jan 24, 2025
61ad5b5
migrations: finalize migration_5 (share encoding GOB -> SSZ) (#2002)
iurii-ssv Jan 26, 2025
ff4fa98
executionclient: add a comment about SubscribeNewHead choice (#1996)
nkryuchkov Jan 26, 2025
860597a
Remove unused Prometheus metric
oleg-ssvlabs Jan 27, 2025
285cd60
hotfix(el/cl): allow multi clients to start if at least one node is u…
y0sher Jan 30, 2025
30c677f
eth/executionclient: rate limit multi client Healthy call (#2010)
nkryuchkov Feb 3, 2025
443945d
eth/executionclient: use go-eth2-client with el_offline support (#2012)
nkryuchkov Feb 3, 2025
b6f2f58
Revert "eth/executionclient: use go-eth2-client with el_offline suppo…
nkryuchkov Feb 3, 2025
65e739f
eth/executionclient: fix panic in multi-client (#2015)
nkryuchkov Feb 3, 2025
33f2610
eth/executionclient: use go-eth2-client with el_offline support (#2017)
nkryuchkov Feb 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2

updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
9 changes: 2 additions & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,19 @@ on:
push:
branches:
- "**"
# pull_request:
# branches:
# - "**"

workflow_dispatch:

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup make
run: sudo apt-get update && sudo apt-get install make

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: "1.22.x"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spec-alignment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Upload output.diff
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: output.diff
path: ./scripts/spec-alignment/output.diff
122 changes: 0 additions & 122 deletions .gitlab-ci.yml

This file was deleted.

Loading