From 12e25b65a1d1c0f0f2254d8c1ad44cd08c2797ea Mon Sep 17 00:00:00 2001 From: Jeff Bruemmer <jeff.bruemmer@gmail.com> Date: Mon, 3 Jun 2024 16:56:24 -0400 Subject: [PATCH] notes and links to relevant docs (#42975) --- docs/developers-guide/api-changelog.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/developers-guide/api-changelog.md b/docs/developers-guide/api-changelog.md index b1998df97b2..c5b12ca45fa 100644 --- a/docs/developers-guide/api-changelog.md +++ b/docs/developers-guide/api-changelog.md @@ -38,10 +38,12 @@ title: API changelog - `GET /api/permissions/graph` and `PUT /api/permissions/graph` - The `data` key has been removed from the permissions graph. It has been replaced with `view-data` and `create-queries`. + The `data` key has been removed from the permissions graph. The `data` key has been replaced with two new keys: `view-data` and `create-queries`. Valid permission values for `view-data` are `unrestricted`, `blocked`, `sandboxed` or `restricted`. Valid permission values for `create-queries` are `query-builder-and-native`, `query-builder`, and `no`. + If you're scripting permissions, you'll need to update your scripts to reflect these breaking changes to the `/api/permissions/graph` endpoints. For more about the new data permissions of View data and Create queries, see our docs on [data permissions](../permissions/data.md). And here's a page that [talks about the change (and why we did it)](../permissions/no-self-service-deprecation.md). + - `GET /api/transform/:db-id/:schema/:transform-name`, which hasn't been used internally by Metabase for ages, has been removed. -- GitLab