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

Changelog and french #457

Merged
merged 3 commits into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
38 changes: 38 additions & 0 deletions website/docs/About/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,44 @@ instead.
> On 1/27/2022, Eth Docker's repository name changed. Everything should work as it did.
> If you do wish to manually update your local reference, run `git remote set-url origin https://github.com/eth-educators/eth-docker.git`

## v2.12.3.0 2024-09-20

*This is a recommended release*

Changes
- Support Lido CSM module. Thanks @dgusakov, @vgorkavenko and @cnupy!
- Add non-censoring Titan relay to mainnet default
- Remove Eden relay from defaults
- Do not switch Erigon repo to `erigontech/erigon`, yet, until images there contain `linux/amd64`

Bug Fixes
- `grafana.yml` and `grafana-cloud.yml` work with Docker `27.3.0` and later. Thanks u/ChewsMacRibs!
- Fix incorrect method name during `./ethd update`. Thanks @kajeagentspi!

## v2.12.2.0 2024-09-14

*This is an optional release*

Changes
- Reth full sync now supports RocketPool, SSV and StakeWise by including their contracts for eth_getLogs / receipts.
If you have an existing synced Reth, you'd need to make the change to `reth.toml` manually.
- Erigon now defaults to the new `erigontech/erigon` repo and `latest` tag
- Updated SSV dashboards
- Add `./ethd keys count` command. Thanks @Hydepwns!
- Persist Web3signer keys registered with Prysm
- Use Go 1.23 for source builds
- Support IPv6 for traefik
- Besu sync mode and RPC API can be configured with `EL_EXTRAS`
- Do not override Nethermind's `--Pruning.CacheMb`, as it was causing performance issues
- Offer Prysm on ARM64
- Offer Erigon on ARM64
- Clarify the OS version nag
- Source build for Teku and Besu uses Noble Numbat
- Fresh sync of Besu, Geth or Nethermind prefers a Docker volume without `eth1` in the name

Bug fixes
- Only use `sudo` for `dkg_output` directory permission changes when needed. Thanks @jshufro!

## v2.12.1.0 2024-08-10

*This is an optional release*
Expand Down
13 changes: 13 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ module.exports = {
image: 'img/eth-moby-logo.png',
},
scripts: ['https://buttons.github.io/buttons.js'],
i18n: {
defaultLocale: 'en',
locales: ['en', 'fr'],
localeConfigs: {
en: {
htmlLang: 'en-GB',
},
},
},
themeConfig: {
docs: {
sidebar: {
Expand All @@ -30,6 +39,10 @@ module.exports = {
href: '/',
label: 'Get Started',
position: 'right',
},
{
type: 'localeDropdown',
position: 'left',
}
],
},
Expand Down
Loading