From 2381f0dce80b4d159f1e38fd04cbf3c0ffe46f53 Mon Sep 17 00:00:00 2001 From: Corentin BARAULT <74433435+Kirbeerus@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:15:07 +0100 Subject: [PATCH 1/3] Ajout restriction trigger et fonction plan dev (#475) ## Describe your PR You cannot create trigger or functions on a DEV plan for MySQL add-on. ## Checklist - [x] My PR is related to an opened issue : # - [x] I've read the [contributing guidelines](/CleverCloud/documentation/blob/main/CONTRIBUTING.md) ## Reviewers _Who should review these changes?_ @CleverCloud/reviewers --- content/doc/addons/mysql/_index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/doc/addons/mysql/_index.md b/content/doc/addons/mysql/_index.md index ed1d6319..551be715 100644 --- a/content/doc/addons/mysql/_index.md +++ b/content/doc/addons/mysql/_index.md @@ -79,5 +79,6 @@ Here is the list of actions that you won't be able to perform: - Plugins installation. - Replica creation. - Backup frequency or retention control. +- Create Trigger or Function (Only on DEV plan) Ask Clever Cloud support if you want to perform one of these actions. From 56ee03d32495d398625e8726fb551c44329ae7bb Mon Sep 17 00:00:00 2001 From: Julia March <101819212+juliamrch@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:41:02 +0100 Subject: [PATCH 2/3] set prod url --- hugo.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo.yaml b/hugo.yaml index ef0ad88d..51f26f37 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -1,4 +1,4 @@ -baseURL: https://stagingv6.cleverapps.io/developers +baseURL: https://www.clever-cloud.com/developers languageCode: en-us title: Clever Cloud Documentation publishDir: public/developers From 595f9c0194b6e99008d73cc44f26ed2c53495e04 Mon Sep 17 00:00:00 2001 From: David Legrand Date: Wed, 18 Dec 2024 15:59:47 +0100 Subject: [PATCH 3/3] changelog: Clever Tools 3.11 --- .../changelog/2024-12-18-clever-tools-3.11.md | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 content/changelog/2024-12-18-clever-tools-3.11.md diff --git a/content/changelog/2024-12-18-clever-tools-3.11.md b/content/changelog/2024-12-18-clever-tools-3.11.md new file mode 100644 index 00000000..13e9322f --- /dev/null +++ b/content/changelog/2024-12-18-clever-tools-3.11.md @@ -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: + +```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. + +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 +```