Skip to content

Commit ac0da9e

Browse files
committed
changelog: Clever Tools 4.10
1 parent 4ec8ef9 commit ac0da9e

2 files changed

Lines changed: 47 additions & 3 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: "Clever Tools 4.10: organisation-scoped add-on providers"
3+
date: 2026-05-07
4+
description: Clever Tools 4.10 adds an --org option to filter add-on providers, regions and plans for a specific organisation
5+
tags:
6+
- clever-tools
7+
- cli
8+
- addons
9+
authors:
10+
- name: Hubert Sablonnière
11+
link: https://github.com/hsablonniere
12+
image: https://github.com/hsablonniere.png?size=40
13+
- name: David Legrand
14+
link: https://github.com/davlgd
15+
image: https://github.com/davlgd.png?size=40
16+
excludeSearch: true
17+
---
18+
19+
[Clever Tools 4.10.0](https://github.com/CleverCloud/clever-tools/releases/tag/4.10.0) is available. This release makes add-on provider discovery organisation-aware, so you can see exactly which providers, regions and plans are available for a given organisation before creating a new add-on.
20+
21+
## Organisation-scoped add-on providers
22+
23+
The `clever addon providers` and `clever addon providers show` commands now accept an `--org` option. When set, results are filtered to match the providers, zones and plans exposed by the `addonproviders` API for that organisation, instead of the global catalogue.
24+
25+
```bash
26+
# List add-on providers available for a specific organisation
27+
clever addon providers --org orga_xxx
28+
29+
# Inspect a single provider, with org-specific plans and regions
30+
clever addon providers show postgresql-addon --org orga_xxx
31+
```
32+
33+
The `clever addon create` command also uses `--org` to validate the requested region. Without it, region availability checks were not organisation-aware, which could let creation calls through in regions not allowed for your organisation. With this fix, the CLI rejects the call up front when the target region is not available in the selected organisation.
34+
35+
## How to upgrade
36+
37+
To upgrade Clever Tools, [use your favourite package manager](/doc/cli/install/). For example with `npm`:
38+
39+
```bash
40+
npm update -g clever-tools
41+
clever version
42+
```

content/doc/reference/cli.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,8 @@ clever addon providers [options]
422422

423423
**Options**
424424
```
425-
-F, --format <format> Output format (human, json) (default: human)
425+
-F, --format <format> Output format (human, json) (default: human)
426+
-o, --org, --owner <org-id|org-name> Organisation to target by its ID (or name, if unambiguous)
426427
```
427428

428429
#### addon providers show
@@ -438,12 +439,13 @@ clever addon providers show <addon-provider> [options]
438439

439440
**Arguments**
440441
```
441-
addon-provider Add-on provider
442+
addon-provider Add-on provider
442443
```
443444

444445
**Options**
445446
```
446-
-F, --format <format> Output format (human, json) (default: human)
447+
-F, --format <format> Output format (human, json) (default: human)
448+
-o, --org, --owner <org-id|org-name> Organisation to target by its ID (or name, if unambiguous)
447449
```
448450

449451
### addon rename

0 commit comments

Comments
 (0)