Skip to content

Dev blog post for removed snapshot command in client CLI #1746

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
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
28 changes: 28 additions & 0 deletions docs/website/blog/2024-06-12-client-cli-removed-command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Mithril client CLI 'snapshot' command is removed
authors:
- name: Mithril Team
tags: [mithril client, cli, removed, command, snapshot]
---

### The 'snapshot' command of the client CLI is removed

With the release of the new distribution [2423](https://github.com/input-output-hk/mithril/releases/tag/2423.0), we have removed the **snapshot** command of the **client CLI**.

The **snapshot** command has been superseded by the **cardano-db snapshot** command.

The **snapshot** command has been deprecated with the release [2412](https://github.com/input-output-hk/mithril/releases/tag/2412.0), and this has been announced in this [post](https://mithril.network/doc/dev-blog/2024/03/26/client-cli-deprecated-command).

In order to proceed to the upgrade, install the latest stable client CLI, and replace the removed command with the new command, e.g.:
```bash
mithril-client -vvv snapshot download latest --json
```

Should be replaced with
```bash
mithril-client -vvv cardano-db snapshot download latest --json
```

The documentation of the **client CLI** has been updated accordingly and can be found [here](https://mithril.network/doc/manual/developer-docs/nodes/mithril-client#cardano-db).

For any inquiries or assistance, don't hesitate to reach out to the team on the [Discord channel](https://discord.gg/5kaErDKDRq).
Loading