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: Clever Tools 3.11 #477

Merged
merged 1 commit into from
Dec 18, 2024
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
34 changes: 34 additions & 0 deletions content/changelog/2024-12-18-clever-tools-3.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: 'Clever Tools 3.11 is available with features flags and KV native support'
date: 2024-12-18
tags:
- clever-tools
- cli
authors:
- name: David Legrand
link: https://github.com/davlgd
image: https://github.com/davlgd.png?size=40
- name: Hubert Sablonnière
link: https://github.com/hsablonniere
image: https://github.com/hsablonniere.png?size=40
description: Some tiny changes, before the huge ones
excludeSearch: true
---

[Clever Tools 3.11](https://github.com/CleverCloud/clever-tools/releases/tag/3.11.0) is available. It includes some bug fixes and `clever profile open` commands. Most importantly, it introduces feature flags and KV native support. Thus, you can now enable some commands in alpha/beta status. First is `clever kv` which allows you to manage a Materia KV or Redis® database and send it commands without any dependencies:

Check failure on line 18 in content/changelog/2024-12-18-clever-tools-3.11.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/changelog/2024-12-18-clever-tools-3.11.md#L18

[Vale.Spelling] Did you really mean 'Materia'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'Materia'?", "location": {"path": "content/changelog/2024-12-18-clever-tools-3.11.md", "range": {"start": {"line": 18, "column": 343}}}, "severity": "ERROR"}

```bash
clever addon create kv myKV
clever features enable kv
clever kv myKV SET myKey myValue
clever kv myKV GET myKey
```

You can learn more about `clever kv` in [Clever Tools documentation](https://github.com/CleverCloud/clever-tools/blob/master/docs/kv.md) or using `clever features info kv`. Next year we'll introduce more experimental commands through features flags. Next to come is `clever ng` to manage our [wireguard](https://www.wireguard.com/) based Network Groups.

Check warning on line 27 in content/changelog/2024-12-18-clever-tools-3.11.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/changelog/2024-12-18-clever-tools-3.11.md#L27

[Google.We] Try to avoid using first-person plural like 'we'.
Raw output
{"message": "[Google.We] Try to avoid using first-person plural like 'we'.", "location": {"path": "content/changelog/2024-12-18-clever-tools-3.11.md", "range": {"start": {"line": 27, "column": 184}}}, "severity": "WARNING"}

Check warning on line 27 in content/changelog/2024-12-18-clever-tools-3.11.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/changelog/2024-12-18-clever-tools-3.11.md#L27

[Google.We] Try to avoid using first-person plural like 'our'.
Raw output
{"message": "[Google.We] Try to avoid using first-person plural like 'our'.", "location": {"path": "content/changelog/2024-12-18-clever-tools-3.11.md", "range": {"start": {"line": 27, "column": 289}}}, "severity": "WARNING"}

To upgrade Clever Tools, [use your favorite package manager](https://github.com/CleverCloud/clever-tools/blob/master/docs/setup-systems.md#how-to-install-clever-tools). For example with `npm`:

```
npm update -g clever-tools
clever version
```
Loading