Skip to content

Commit b0f3eed

Browse files
authored
chore(docs): fix latest version references in docs (#18693)
We have versioned docs so we should not be using latest in the versioned docs as install directions
2 parents c42ef23 + 351884e commit b0f3eed

File tree

6 files changed

+11
-153
lines changed

6 files changed

+11
-153
lines changed

docs/docs/the_aztec_network/operation/operator_faq.md

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ ERROR: world-state:database Call SYNC_BLOCK failed: Error: Can't synch block: bl
4242
rm -rf ~/.aztec/v2.0.4/data/archiver
4343
```
4444

45-
3. Update to the latest version (see the "Updating to Latest Version" section below)
46-
47-
4. Restart your node:
45+
3. Restart your node:
4846

4947
```bash
5048
docker compose up -d
@@ -216,29 +214,9 @@ Sequencers with insufficient funds in their publisher account risk being slashed
216214

217215
## Updates and Maintenance
218216

219-
### Updating to Latest Version
220-
221-
**Issue**: You need to update your node to the latest Aztec version.
222-
223-
**Solution**:
224-
225-
```bash
226-
# Pull the latest image
227-
docker compose pull
228-
229-
# Stop the current container
230-
docker compose down
231-
232-
# Start with the new image
233-
docker compose up -d
234-
235-
# Verify it's running
236-
docker compose logs -f aztec-sequencer
237-
```
238-
239217
#### Version-Specific Updates:
240218

241-
To update to a specific version instead of latest, update your `docker-compose.yml`:
219+
To update to a specific version , update your `docker-compose.yml`:
242220

243221
```yaml
244222
# Change the image tag from:

docs/versioned_docs/version-v2.1.4/developers/getting_started_on_testnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ bash -i <(curl -s https://install.aztec.network)
4949
3. The testnet version installed:
5050

5151
```bash
52-
aztec-up -v latest
52+
aztec-up -v 2.1.4
5353
```
5454

5555
:::warning

docs/versioned_docs/version-v2.1.4/the_aztec_network/operation/operator_faq.md

Lines changed: 2 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,7 @@ ERROR: world-state:database Call SYNC_BLOCK failed: Error: Can't synch block: bl
4141
rm -rf ~/.aztec/v2.1.4/data/archiver
4242
```
4343

44-
3. Update to the latest version:
45-
46-
```bash
47-
aztec-up -v latest
48-
```
49-
50-
4. Restart your node with your normal startup command
44+
3. Restart your node with your normal startup command
5145

5246
:::warning Data Loss and Resync
5347
This process removes local state and requires full resynchronization. Consider using snapshot sync mode (`--sync-mode snapshot`) to speed up recovery. See the [syncing best practices guide](../setup/syncing_best_practices.md) for more information.
@@ -215,43 +209,9 @@ Sequencers with insufficient funds in their publisher account risk being slashed
215209

216210
## Updates and Maintenance
217211

218-
### Updating to Latest Version
219-
220-
**Issue**: You need to update your node to the latest Aztec version.
221-
222-
**Solution**:
223-
224-
#### For CLI Method:
225-
226-
```bash
227-
# Update the Aztec binary
228-
aztec-up -v latest
229-
230-
# Verify the new version
231-
aztec --version
232-
233-
# Restart your node with your normal startup command
234-
```
235-
236-
#### For Docker Compose Method:
237-
238-
```bash
239-
# Pull the latest image
240-
docker compose pull
241-
242-
# Stop the current container
243-
docker compose down
244-
245-
# Start with the new image
246-
docker compose up -d
247-
248-
# Verify it's running
249-
docker compose logs -f aztec-sequencer
250-
```
251-
252212
#### Version-Specific Updates:
253213

254-
To update to a specific version instead of latest:
214+
To update to a specific version:
255215

256216
```bash
257217
# CLI method

docs/versioned_docs/version-v2.1.5-ignition/developers/getting_started_on_testnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ bash -i <(curl -s https://install.aztec.network)
4949
3. The testnet version installed:
5050

5151
```bash
52-
aztec-up -v latest
52+
aztec-up -v 2.1.5
5353
```
5454

5555
:::warning

docs/versioned_docs/version-v2.1.5-ignition/the_aztec_network/operation/operator_faq.md

Lines changed: 2 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,7 @@ ERROR: world-state:database Call SYNC_BLOCK failed: Error: Can't synch block: bl
4141
rm -rf ~/.aztec/v2.1.5/data/archiver
4242
```
4343

44-
3. Update to the latest version:
45-
46-
```bash
47-
aztec-up -v latest
48-
```
49-
50-
4. Restart your node with your normal startup command
44+
3. Restart your node with your normal startup command
5145

5246
:::warning Data Loss and Resync
5347
This process removes local state and requires full resynchronization. Consider using snapshot sync mode (`--sync-mode snapshot`) to speed up recovery. See the [syncing best practices guide](../setup/syncing_best_practices.md) for more information.
@@ -217,43 +211,9 @@ Sequencers with insufficient funds in their publisher account risk being slashed
217211

218212
## Updates and Maintenance
219213

220-
### Updating to Latest Version
221-
222-
**Issue**: You need to update your node to the latest Aztec version.
223-
224-
**Solution**:
225-
226-
#### For CLI Method:
227-
228-
```bash
229-
# Update the Aztec binary
230-
aztec-up -v latest
231-
232-
# Verify the new version
233-
aztec --version
234-
235-
# Restart your node with your normal startup command
236-
```
237-
238-
#### For Docker Compose Method:
239-
240-
```bash
241-
# Pull the latest image
242-
docker compose pull
243-
244-
# Stop the current container
245-
docker compose down
246-
247-
# Start with the new image
248-
docker compose up -d
249-
250-
# Verify it's running
251-
docker compose logs -f aztec-sequencer
252-
```
253-
254214
#### Version-Specific Updates:
255215

256-
To update to a specific version instead of latest:
216+
To update to a specific version:
257217

258218
```bash
259219
# CLI method

docs/versioned_docs/version-v3.0.0-devnet.5/the_aztec_network/operation/operator_faq.md

Lines changed: 3 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,10 @@ ERROR: world-state:database Call SYNC_BLOCK failed: Error: Can't synch block: bl
3838
2. Remove the archiver data directory:
3939

4040
```bash
41-
rm -rf ~/.aztec/v2.0.4/data/archiver
41+
rm -rf ~/.aztec/v3.0.0-devnet.5/data/archiver
4242
```
4343

44-
3. Update to the latest version:
45-
46-
```bash
47-
aztec-up -v latest
48-
```
49-
50-
4. Restart your node with your normal startup command
44+
3. Restart your node with your normal startup command
5145

5246
:::warning Data Loss and Resync
5347
This process removes local state and requires full resynchronization. Consider using snapshot sync mode (`--sync-mode snapshot`) to speed up recovery. See the [syncing best practices guide](../setup/syncing_best_practices.md) for more information.
@@ -215,43 +209,9 @@ Sequencers with insufficient funds in their publisher account risk being slashed
215209

216210
## Updates and Maintenance
217211

218-
### Updating to Latest Version
219-
220-
**Issue**: You need to update your node to the latest Aztec version.
221-
222-
**Solution**:
223-
224-
#### For CLI Method:
225-
226-
```bash
227-
# Update the Aztec binary
228-
aztec-up -v latest
229-
230-
# Verify the new version
231-
aztec --version
232-
233-
# Restart your node with your normal startup command
234-
```
235-
236-
#### For Docker Compose Method:
237-
238-
```bash
239-
# Pull the latest image
240-
docker compose pull
241-
242-
# Stop the current container
243-
docker compose down
244-
245-
# Start with the new image
246-
docker compose up -d
247-
248-
# Verify it's running
249-
docker compose logs -f aztec-sequencer
250-
```
251-
252212
#### Version-Specific Updates:
253213

254-
To update to a specific version instead of latest:
214+
To update to a specific version:
255215

256216
```bash
257217
# CLI method

0 commit comments

Comments
 (0)