Skip to content

merge #3

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

Merged
merged 177 commits into from
Apr 9, 2025
Merged

merge #3

merged 177 commits into from
Apr 9, 2025

Conversation

pradavc
Copy link

@pradavc pradavc commented Apr 9, 2025

No description provided.

barnabasbusa and others added 30 commits June 24, 2024 13:20
Signed-off-by: Barnabas Busa <[email protected]>
Signed-off-by: Barnabas Busa <[email protected]>
Signed-off-by: Parithosh Jayanthi <[email protected]>
Co-authored-by: parithosh <[email protected]>
Signed-off-by: Barnabas Busa <[email protected]>
Signed-off-by: Barnabas Busa <[email protected]>
Signed-off-by: Parithosh Jayanthi <[email protected]>
Co-authored-by: parithosh <[email protected]>
update ephemery genesis loader to use latest `network-config.tar.gz`
from ephemery genesis repository
## Summary

This PR adds the possibility to define static ports for most of the
components included in the ethereum-package for kurtosis.

Furthermore, some parts of the code, which are relevant for this PR,
will be refactored.

## Tasks

- [x] Add new settings to network_params
- [x] Update input_parser
- [x] Update shared_utils
- [x] Add static ports to el clients
- [x] Add static ports to cl clients
- [x] Add static ports to vc clients
- [x] Add static ports to additional services
- [x] Update documentation

---------

Co-authored-by: Barnabas Busa <[email protected]>
🤖 I have created a release *beep* *boop*
---


##
[4.1.0](4.0.0...4.1.0)
(2024-07-03)


### Features

* add back k8s tests
([#699](#699))
([d621cf0](d621cf0))
* add checkpoint_enabled and checkpoint_url flags
([#689](#689))
([b8cd2b4](b8cd2b4))
* add eof support
([#682](#682))
([cb203ff](cb203ff))
* add mev relays to dora config
([#679](#679))
([293001a](293001a))
* Add static ports
([#677](#677))
([4f054d0](4f054d0))
* add ws_url to el_context
([#696](#696))
([26fea61](26fea61))
* introduce devnet_repo override
([#686](#686))
([9952361](9952361))
* use CDN URL for data snapshots used for shadow forks
([#676](#676))
([91dc68c](91dc68c))


### Bug Fixes

* besu bonsai log disable
([#673](#673))
([955f19f](955f19f))
* blockscout bad return
([#685](#685))
([e80870b](e80870b))
* bump peerdas images
([#678](#678))
([1acc201](1acc201))
* DNS-1035 label
([#697](#697))
([440fb31](440fb31))
* ephemery genesis loader
([#700](#700))
([0235063](0235063))
* ignore bootnodes if in shadowfork
([#660](#660))
([cda5dda](cda5dda))
* minimal eof
([#687](#687))
([26a7618](26a7618))
* release please manifest
([#675](#675))
([75ed7e1](75ed7e1))
* remove docker login
([#701](#701))
([ede5962](ede5962))
* return empty services
([#688](#688))
([6571a70](6571a70))
* return the correct network_id
([#705](#705))
([7c592f6](7c592f6))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
Nimbus BN is working with Lodestar VC and Prysm vc as of
`ethpandaops/nimbus-eth2:unstable-85c2850`
allow setting vc_* properties in participants_matrix.cl:

```
participants_matrix:
  el:
    - el_type: nethermind
      el_image: nethermindeth/nethermind:pectra
    - el_type: geth
      el_image: ethpandaops/geth:lightclient-prague-devnet-1
  cl:
    - cl_type: teku
      cl_image: ethpandaops/teku:master
    - cl_type: nimbus
      cl_image: ethpandaops/nimbus-eth2:unstable
    - cl_type: lodestar
      cl_image: ethpandaops/lodestar:electra-fork
      vc_max_mem: 1024
    - cl_type: grandine
      cl_image: ethpandaops/grandine:electra
```

in the example above, lodestar vc needs more than 500M memory for key
import, so I'd like to override the vc_max_mem accordingly.
This is theoretically allowed by the logic, but the new sanity check
prevents it.
I noticed it is not possible to run mixed vc<>bn clients if builder /
mev is enabled as it applies extra flags from other clients in
`vc_extra_params` as the params are applied based on `cl_type` but it
should be done based on `vc_type`.

I tested this using the [following
config](https://gist.github.com/nflaig/949c8b5101127961023d89de9c206b04)
with both `mev_type: mock` and `mev_type: flashbots`.
This PR adds `genesis_gas_limit` parameter within `network_params.yaml`
to make the parameter configurable using Kurtosis.

It seems like
[ethereum-genesis-generator](https://github.com/ethpandaops/ethereum-genesis-generator),
which is being used in this package already has the capability to change
`genesis_gas_limit` by changing `export
GENESIS_GASLIMIT="${GENESIS_GASLIMIT:-30000000}"` within
[defaults.env](https://github.com/ethpandaops/ethereum-genesis-generator/blob/master/defaults/defaults.env#L27).
This feature didn't seem like it was directly transferred to the
`ehtereum-package`.

Tested locally with the `main` branch and changing the
`genesis_gas_limit` value to `50000000`.
![Screenshot from 2024-07-26
11-26-12](https://github.com/user-attachments/assets/c3ad1dd9-edd6-461c-bb81-a79de1593833)

---------

Signed-off-by: Ji Hwan <[email protected]>
Co-authored-by: Barnabas Busa <[email protected]>
Would be good to have invalid ssz objects persisted by default in case
there is a consensus bug or other issue. There is not much downside to
this besides slight storage increase but since states / blocks are
generally small on devnets this shouldn't matter, also we prune objects
after some time (15 days).
barnabasbusa and others added 29 commits March 19, 2025 14:24
Prometheus for some reason overrides their bugfix releases for older
versions of major prom versions with `latest`, breaking everything for
everyone else.
🤖 I have created a release *beep* *boop*
---


##
[4.6.0](4.5.0...4.6.0)
(2025-03-19)


### Features

* use `eip7805-support` image for dora when eip7805 is scheduled for
activation
([#900](#900))
([9b3ee49](9b3ee49))


### Bug Fixes

* add milliseconds to histograms
([#879](#879))
([53602f1](53602f1))
* commit boost startup
([#906](#906))
([040e622](040e622))
* decrease lighthouse mev --prepare-payload-lookahead from 12 to 8s
([#904](#904))
([03bb449](03bb449))
* lighthouse minimal image
([#915](#915))
([c3ecee8](c3ecee8))
* prometheus shouldnt use latest
([#924](#924))
([5cc99c8](5cc99c8))
* provide `--network-custom-config-path` to Vero
([#905](#905))
([998063f](998063f))
* Update config.toml.tmpl
([#919](#919))
([8f8830f](8f8830f))
* update to latest spec
([a9058f5](a9058f5))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
)

Renamed:
transaction spammer -> tx_fuzz
el_forkmon -> forkmon
Removed:
beacon-metrics-gazer (broken, dora has these metrics)
blob_spammer (spamoor_blob does this)
…n comment (#922)

Adding the specific versions as a comment

---------

Co-authored-by: Barnabas Busa <[email protected]>
bump images and use releases

Co-authored-by: Barnabas Busa <[email protected]>
Bumps the actions group with 2 updates:
[crate-ci/typos](https://github.com/crate-ci/typos) and
[googleapis/release-please-action](https://github.com/googleapis/release-please-action).

Updates `crate-ci/typos` from 1.29.5 to 1.30.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/crate-ci/typos/releases">crate-ci/typos's
releases</a>.</em></p>
<blockquote>
<h2>v1.30.3</h2>
<h2>[1.30.3] - 2025-03-24</h2>
<h3>Features</h3>
<ul>
<li>Support detecting <code>go.work</code> and <code>go.work.sum</code>
files</li>
</ul>
<h2>v1.30.2</h2>
<h2>[1.30.2] - 2025-03-10</h2>
<h3>Features</h3>
<ul>
<li>Add <code>--highlight-words</code> and
<code>--highlight-identifiers</code> for easier debugging of config</li>
</ul>
<h2>v1.30.1</h2>
<h2>[1.30.1] - 2025-03-04</h2>
<h3>Features</h3>
<ul>
<li><em>(action)</em> Create <code>v1</code> tag</li>
</ul>
<h2>v1.30.0</h2>
<h2>[1.30.0] - 2025-03-01</h2>
<h3>Features</h3>
<ul>
<li>Updated the dictionary with the <a
href="https://redirect.github.com/crate-ci/typos/issues/1221">February
2025</a> changes</li>
</ul>
<h2>v1.29.10</h2>
<h2>[1.29.10] - 2025-02-25</h2>
<h3>Fixes</h3>
<ul>
<li>Also correct <code>contaminent</code> as
<code>contaminant</code></li>
</ul>
<h2>v1.29.9</h2>
<h2>[1.29.9] - 2025-02-20</h2>
<h3>Fixes</h3>
<ul>
<li><em>(action)</em> Correctly get binary for some aarch64 systems</li>
</ul>
<h2>v1.29.8</h2>
<h2>[1.29.8] - 2025-02-19</h2>
<h3>Features</h3>
<ul>
<li>Attempt to build Linux aarch64 binaries</li>
</ul>
<h2>v1.29.7</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/crate-ci/typos/blob/master/CHANGELOG.md">crate-ci/typos's
changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<p>All notable changes to this project will be documented in this
file.</p>
<p>The format is based on <a href="http://keepachangelog.com/">Keep a
Changelog</a>
and this project adheres to <a href="http://semver.org/">Semantic
Versioning</a>.</p>
<!-- raw HTML omitted -->
<h2>[Unreleased] - ReleaseDate</h2>
<h2>[1.30.3] - 2025-03-24</h2>
<h3>Features</h3>
<ul>
<li>Support detecting <code>go.work</code> and <code>go.work.sum</code>
files</li>
</ul>
<h2>[1.30.2] - 2025-03-10</h2>
<h3>Features</h3>
<ul>
<li>Add <code>--highlight-words</code> and
<code>--highlight-identifiers</code> for easier debugging of config</li>
</ul>
<h2>[1.30.1] - 2025-03-04</h2>
<h3>Features</h3>
<ul>
<li><em>(action)</em> Create <code>v1</code> tag</li>
</ul>
<h2>[1.30.0] - 2025-03-01</h2>
<h3>Features</h3>
<ul>
<li>Updated the dictionary with the <a
href="https://redirect.github.com/crate-ci/typos/issues/1221">February
2025</a> changes</li>
</ul>
<h2>[1.29.10] - 2025-02-25</h2>
<h3>Fixes</h3>
<ul>
<li>Also correct <code>contaminent</code> as
<code>contaminant</code></li>
</ul>
<h2>[1.29.9] - 2025-02-20</h2>
<h3>Fixes</h3>
<ul>
<li><em>(action)</em> Correctly get binary for some aarch64 systems</li>
</ul>
<h2>[1.29.8] - 2025-02-19</h2>
<h3>Features</h3>
<ul>
<li>Attempt to build Linux aarch64 binaries</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/crate-ci/typos/commit/d08e4083f112e684fb88f6babd9ae60a1f1cd84f"><code>d08e408</code></a>
chore: Release</li>
<li><a
href="https://github.com/crate-ci/typos/commit/6f7dfef019d6312eadd588da65ef9f0e0492a72a"><code>6f7dfef</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/crate-ci/typos/commit/e601194a5dbac9ac9ea99bb1b3ccee08a1c8d319"><code>e601194</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-ci/typos/issues/1261">#1261</a>
from epage/go</li>
<li><a
href="https://github.com/crate-ci/typos/commit/9a820855083402c964486156732cfd550757c6b8"><code>9a82085</code></a>
fix(type): Include support for go.work</li>
<li><a
href="https://github.com/crate-ci/typos/commit/8c7c9e5c7c0bcdb57c3452e29f60ccf3a34b66e2"><code>8c7c9e5</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-ci/typos/issues/1259">#1259</a>
from j-g00da/patch-1</li>
<li><a
href="https://github.com/crate-ci/typos/commit/62bb5ad3c6168b8b52b9e7b7722cab8b1c7e9c08"><code>62bb5ad</code></a>
docs: fix a typo in README.md</li>
<li><a
href="https://github.com/crate-ci/typos/commit/b48ba0f02b2a623fe5852b679366636e783ada3d"><code>b48ba0f</code></a>
docs(gh): Mention v1 tag</li>
<li><a
href="https://github.com/crate-ci/typos/commit/7bc041cbb7ca9167c9e0e4ccbb26f48eb0f9d4e0"><code>7bc041c</code></a>
chore: Release</li>
<li><a
href="https://github.com/crate-ci/typos/commit/4af8a5a1fbfa8534227a9f8c5404b065179448f9"><code>4af8a5a</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/crate-ci/typos/commit/ec626a1e534129beb0af521bc3116a4040c56dcd"><code>ec626a1</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-ci/typos/issues/1257">#1257</a>
from epage/highlight</li>
<li>Additional commits viewable in <a
href="https://github.com/crate-ci/typos/compare/11ca4583f2f3f74c7e7785c0ecb20fe2c99a4308...d08e4083f112e684fb88f6babd9ae60a1f1cd84f">compare
view</a></li>
</ul>
</details>
<br />

Updates `googleapis/release-please-action` from 4.1.4 to 4.2.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/release-please-action/releases">googleapis/release-please-action's
releases</a>.</em></p>
<blockquote>
<h2>v4.2.0</h2>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.5...v4.2.0">4.2.0</a>
(2025-03-07)</h2>
<h3>Features</h3>
<ul>
<li>support for skip-labeling parameter for GitHub action (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1066">#1066</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/fb7f385da2046f35c544011bc27c9f809122ad2c">fb7f385</a>)</li>
</ul>
<h2>v4.1.5</h2>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.4...v4.1.5">4.1.5</a>
(2025-02-27)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>deps:</strong> update release-please to 16.18.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1083">#1083</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/aeb7f8d38402d856532f7c879373d8116956b1c8">aeb7f8d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/release-please-action/blob/main/CHANGELOG.md">googleapis/release-please-action's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.5...v4.2.0">4.2.0</a>
(2025-03-07)</h2>
<h3>Features</h3>
<ul>
<li>support for skip-labeling parameter for GitHub action (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1066">#1066</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/fb7f385da2046f35c544011bc27c9f809122ad2c">fb7f385</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.4...v4.1.5">4.1.5</a>
(2025-02-27)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>deps:</strong> update release-please to 16.18.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1083">#1083</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/aeb7f8d38402d856532f7c879373d8116956b1c8">aeb7f8d</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.3...v4.1.4">4.1.4</a>
(2024-10-02)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1015">#1015</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/5ec1cbd9cb73c9d06637313bec5e3d6788e6a5f1">5ec1cbd</a>)</li>
<li>bump release-please from 16.12.0 to 16.13.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1030">#1030</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/caa04646d19fbb163bb853d276be1877fd092e90">caa0464</a>)</li>
<li>bump release-please from 16.13.0 to 16.14.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1032">#1032</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/b2a986c7e2f041e21005c546b2e03e9722e45bad">b2a986c</a>)</li>
<li><strong>deps:</strong> update release-please to 16.14.1 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1036">#1036</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/2942e515c92f10850cc891e4900fb50eb62eba74">2942e51</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.2...v4.1.3">4.1.3</a>
(2024-06-10)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>correct log output when creating releases (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/933">#933</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/2725132cd346852cc752c1619637c864deda8440">2725132</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.1...v4.1.2">4.1.2</a>
(2024-06-10)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>bump release-please from 16.10.2 to 16.12.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1005">#1005</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/cb039616703c3396df96b9a92e81bab1c17cbaa7">cb03961</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.1.0...v4.1.1">4.1.1</a>
(2024-05-14)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>bump release-please from 16.10.0 to 16.10.2 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/969">#969</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/aa764e0b5db70af7b607fa690b4d1799ceb802d6">aa764e0</a>)</li>
<li>bump the npm_and_yarn group with 1 update (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/967">#967</a>)
(<a
href="https://github.com/googleapis/release-please-action/commit/ce529d4a4014c4760ec75d3ba6482e3b80d58862">ce529d4</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/release-please-action/compare/v4.0.3...v4.1.0">4.1.0</a>
(2024-03-11)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/release-please-action/commit/a02a34c4d625f9be7cb89156071d8567266a2445"><code>a02a34c</code></a>
chore(main): release 4.2.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1096">#1096</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/dcfad47c69333343b0d0342dbb2f0b5641929213"><code>dcfad47</code></a>
chore: build dist (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1095">#1095</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/fb7f385da2046f35c544011bc27c9f809122ad2c"><code>fb7f385</code></a>
feat: support for skip-labeling parameter for GitHub action (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1066">#1066</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/35ed13664e166c811508c393242aaf21dae004fd"><code>35ed136</code></a>
docs: update paths_released description (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1062">#1062</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/9eba3b9b636347615f713a2061f69fe4bedaf05c"><code>9eba3b9</code></a>
chore: replace bcoe with googleapis references (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1060">#1060</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/73cae700e24db97d0906474c4f4b7a8e05daff34"><code>73cae70</code></a>
chore(main): Update org name to <code>googleapis</code> (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1061">#1061</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/26ac09bebf9d65ff1137edead58f239dd5a04faa"><code>26ac09b</code></a>
build: grant permissions to release-please action (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1090">#1090</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/5792afc6b46e9bb55deda9eda973a18c226bc3fc"><code>5792afc</code></a>
chore(main): release 4.1.5 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1086">#1086</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/e98f9315224b0176b300fa8f18639afe20bfbbec"><code>e98f931</code></a>
chore: build dist (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1084">#1084</a>)</li>
<li><a
href="https://github.com/googleapis/release-please-action/commit/aeb7f8d38402d856532f7c879373d8116956b1c8"><code>aeb7f8d</code></a>
fix(deps): update release-please to 16.18.0 (<a
href="https://redirect.github.com/googleapis/release-please-action/issues/1083">#1083</a>)</li>
<li>See full diff in <a
href="https://github.com/googleapis/release-please-action/compare/d1a8f221d7723166f48a584aebba00ef3f6febec...a02a34c4d625f9be7cb89156071d8567266a2445">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rafael Matias <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rafael Matias <[email protected]>
…ctivation epoch (#849)

WIP PR
gated on #846 &
ethpandaops/ethereum-genesis-generator#179

---------

Signed-off-by: Barnabas Busa <[email protected]>
Co-authored-by: Barnabas Busa <[email protected]>
Co-authored-by: Barnabas Busa <[email protected]>
… group (#932)

Bumps the actions group with 1 update:
[crate-ci/typos](https://github.com/crate-ci/typos).

Updates `crate-ci/typos` from 1.30.3 to 1.31.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/crate-ci/typos/releases">crate-ci/typos's
releases</a>.</em></p>
<blockquote>
<h2>v1.31.0</h2>
<h2>[1.31.0] - 2025-03-28</h2>
<h3>Features</h3>
<ul>
<li>Updated the dictionary with the <a
href="https://redirect.github.com/crate-ci/typos/issues/1266">March
2025</a> changes</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/crate-ci/typos/blob/master/CHANGELOG.md">crate-ci/typos's
changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<p>All notable changes to this project will be documented in this
file.</p>
<p>The format is based on <a href="http://keepachangelog.com/">Keep a
Changelog</a>
and this project adheres to <a href="http://semver.org/">Semantic
Versioning</a>.</p>
<!-- raw HTML omitted -->
<h2>[Unreleased] - ReleaseDate</h2>
<h2>[1.31.0] - 2025-03-28</h2>
<h3>Features</h3>
<ul>
<li>Updated the dictionary with the <a
href="https://redirect.github.com/crate-ci/typos/issues/1266">March
2025</a> changes</li>
</ul>
<h2>[1.30.3] - 2025-03-24</h2>
<h3>Features</h3>
<ul>
<li>Support detecting <code>go.work</code> and <code>go.work.sum</code>
files</li>
</ul>
<h2>[1.30.2] - 2025-03-10</h2>
<h3>Features</h3>
<ul>
<li>Add <code>--highlight-words</code> and
<code>--highlight-identifiers</code> for easier debugging of config</li>
</ul>
<h2>[1.30.1] - 2025-03-04</h2>
<h3>Features</h3>
<ul>
<li><em>(action)</em> Create <code>v1</code> tag</li>
</ul>
<h2>[1.30.0] - 2025-03-01</h2>
<h3>Features</h3>
<ul>
<li>Updated the dictionary with the <a
href="https://redirect.github.com/crate-ci/typos/issues/1221">February
2025</a> changes</li>
</ul>
<h2>[1.29.10] - 2025-02-25</h2>
<h3>Fixes</h3>
<ul>
<li>Also correct <code>contaminent</code> as
<code>contaminant</code></li>
</ul>
<h2>[1.29.9] - 2025-02-20</h2>
<h3>Fixes</h3>
<ul>
<li><em>(action)</em> Correctly get binary for some aarch64 systems</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/crate-ci/typos/commit/718c4ff697435edabd4f1c52c3775521adbb33a3"><code>718c4ff</code></a>
chore: Release</li>
<li><a
href="https://github.com/crate-ci/typos/commit/bfbf137ed65f9abe0e9a3a92a354a787ca084240"><code>bfbf137</code></a>
chore: Release</li>
<li><a
href="https://github.com/crate-ci/typos/commit/d47e90e4ffad8924461124c3b3787e220b811956"><code>d47e90e</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/crate-ci/typos/commit/0694c2a98227bebeefdfff96f2086480295d00a5"><code>0694c2a</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-ci/typos/issues/1266">#1266</a>
from epage/march</li>
<li><a
href="https://github.com/crate-ci/typos/commit/f715ca8b0824515b13e3e51ed80c8a255d8a7d07"><code>f715ca8</code></a>
feat(dict): March 2025 updates</li>
<li>See full diff in <a
href="https://github.com/crate-ci/typos/compare/d08e4083f112e684fb88f6babd9ae60a1f1cd84f...718c4ff697435edabd4f1c52c3775521adbb33a3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crate-ci/typos&package-manager=github_actions&previous-version=1.30.3&new-version=1.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
The code is inside the loop of `for attr in input_args:`, so it's
guaranteed `attr in input_args` is true.

The `participants_matrix` variable is not used.

---------

Co-authored-by: Barnabas Busa <[email protected]>
This makes it more obvious if rate limits are in place. Example for an
authenticated user:

```
regctl image ratelimit ubuntu:latest
{
  "Remain": 0,
  "Limit": 0,
  "Reset": 0,
  "Set": false,
  "Policies": null
}
```

Or unauthenticated:

```
regctl image ratelimit ubuntu:latest
{
  "Remain": 100,
  "Limit": 100,
  "Reset": 0,
  "Set": true,
  "Policies": [
    "100;w=21600"
  ]
}
```

---------

Signed-off-by: Rafael Matias <[email protected]>
@pradavc pradavc merged commit dd4b9ad into shamirlabs:old_full_explorer Apr 9, 2025
5 of 13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.