diff --git a/_docs/master/api.html b/_docs/master/api.html
index 961f58ca75..5c8c7536d2 100644
--- a/_docs/master/api.html
+++ b/_docs/master/api.html
@@ -16909,7 +16909,7 @@
}
}, {
"in" : "query",
- "name" : "payload_type",
+ "name" : "pyaload_type",
"required" : false,
"schema" : {
"type" : "string",
diff --git a/_docs/master/dashboards/filters.md b/_docs/master/dashboards/filters.md
index 2376e30205..b59f923df1 100644
--- a/_docs/master/dashboards/filters.md
+++ b/_docs/master/dashboards/filters.md
@@ -212,7 +212,7 @@ You might want to require a filter value if:
To edit a filter's settings:
1. Click the **pencil** icon to enter dashboard editing mode.
-2. Click the filter you want to edit.
+2. Click the **gear** icon on the filter you want to edit.
From this filter editing view, you can wire up dashboard cards to the filter, or use the filter settings sidebar to:
@@ -226,14 +226,14 @@ From this filter editing view, you can wire up dashboard cards to the filter, or
### Rename filter
-1. In dashboard edit mode, click the fiter you want to edit.
+1. In dashboard edit mode, click your filter's **gear** icon.
2. Change the label text.
Renaming the filter only affects the filter's display; the label has no effect on which columns Metabase filters.
### Set filter input type
-1. In dashboard edit mode, click the fiter you want to edit.
+1. In dashboard edit mode, click your filter's **gear** icon.
2. From the filter settings sidebar, set **How should people filter on this column?**:
- [Dropdown list](#dropdown-list)
@@ -263,14 +263,14 @@ Useful for looking up partial matches (such as the ["contains" filter](#text-or-
### Set a default filter value
-1. In dashboard edit mode, click the filter you want to edit.
+1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, choose a value from the **Default value** input field.
For example, you might want to set a default filter value like "Active", so that when people load your dashboard, they only see data for "Active" records (not "Inactive", "Cancelled", etc).
### Remove a filter
-1. In dashboard edit mode, click the fiter you want to edit.
+1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, click **Remove**.
If you accidentally remove a filter, just click **Cancel** in the top-right to exit dashboard edit mode without saving your changes.
@@ -281,14 +281,14 @@ In dashboard edit mode, click on the grabber handle (six dots) on the left side
### Make a multi-select filter
-1. In dashboard edit mode, click the fiter you want to edit.
+1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, find **People can pick** and select "Multiple values".
A multi-select filter with the widget type [Dropdown list](#dropdown-list) or [Search box](#search-box) will display a list of values with checkboxes.
### Change a filter's selectable values
-1. In dashboard edit mode, click the fiter you want to edit.
+1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, find **How should users filter on this column?**.
3. Select "Dropdown list".\*
4. Click **Edit** (to the right of "Dropdown list") to specify where the values should come from:
diff --git a/_docs/master/developers-guide/driver-changelog.md b/_docs/master/developers-guide/driver-changelog.md
index 8900473622..1bfeb9d407 100644
--- a/_docs/master/developers-guide/driver-changelog.md
+++ b/_docs/master/developers-guide/driver-changelog.md
@@ -36,11 +36,13 @@ layout: new-docs
- Added the driver multi-method `driver/set-database-used!` for drivers to set a database on the connection with statements like `USE DATABASE`.
+- Added the driver features `:transforms/table`, `:transforms/view`, and `:transforms/matarialized-view` for drivers
+ that support transforms with table, view, and materialized view as target, respectively.
+
## Metabase 0.55.9
- Add multi-method `driver/do-with-resilient-connection` for executing functions in a context where closed connections may be automatically reopened
-
## Metabase 0.55.0
- Add the multi-method `->date` that allows the driver to control how to cast strings and temporal types to dates.
diff --git a/_docs/master/embedding/embedded-analytics-js.md b/_docs/master/embedding/embedded-analytics-js.md
deleted file mode 100644
index c05d20f09b..0000000000
--- a/_docs/master/embedding/embedded-analytics-js.md
+++ /dev/null
@@ -1,355 +0,0 @@
----
-version: master
-has_magic_breadcrumbs: true
-show_category_breadcrumb: true
-show_title_breadcrumb: true
-category: Embedding
-title: 'Embedded Analytics JS'
-source_url: 'https://github.com/metabase/metabase/blob/master/docs/embedding/embedded-analytics-js.md'
-layout: new-docs
-summary: 'Getting started with Embedded Analytics JS for embedding Metabase entities into external applications'
----
-
-# Embedded Analytics JS
-
-Embedded analytics JS allows you to embed Metabase entities like questions, dashboards, or even the query builder into your own application using customizable components.
-
-Embedded Analytics JS is a JavaScript library built on top of Metabase's [Embedded Analytics React SDK](./sdk/introduction). But it does not require using React or setting up full SDK embedding.
-Unlike with [interactive embedding](./interactive-embedding), where you embed the entire Metabase app in an iframe, Embedded Analytics JS lets you choose from a set of predefined components like a single chart, a dashboard with optional drill-through, or query builder, and customize those components.
-
-Embedded Analytics JS leverages [JWT SSO](../people-and-groups/authenticating-with-jwt) to authenticate people and automatically apply permissions to show people the right data upon sign-in.
-
-Currently you can choose to embed:
-
-- A dashboard
-- A question (chart). You can embed both questions built with the query builder and questions built with SQL.
-- Full graphical [query builder](../questions/query-builder/editor) to enable people to build their own charts and explorations.
-
-## Quickstart
-
-### 1. Enable Embedded Analytics JS
-
-1. In Metabase, go to **Admin Settings > Embedding > Modular embedding**.
-2. Toggle on **Embedded Analytics JS**.
-3. Under **Cross-Origin Resource Sharing (CORS)**, add the URLs of the websites where you want to embed Metabase (such as `https://*.example.com`). For testing embeds, you can use `localhost` which is always included in CORS policy.
-
-### 2. Create a new embed
-
-1. In Metabase, click on **+ New** button in top right corner and select **Embed**. Note that this will only be visible to admins.
-2. Choose the type of entity to embed. Currently the available types are dashboard, question, and exploration (which will embed the Metabase query builder).
-3. Next, select the entity you want to embed.
-
-Once you selected what you want to embed, click Next to customize your embed.
-
-### 3. Customize your embed
-
-The exact customization options you see will depend on what type of entity you're embedding. You will see live preview of how the embed will look with your chosen options. See [Customizing embeds](#customizing-embeds) for more information on customization options.
-
-
-
-You'll also be be able to pick brand, text, and background color used for all your embeds. To configure other colors (e.g. secondary colors, query builder colors etc), as well as font, you' can specify a theme in your embed code snippet, see [Theming](#theming).
-
-All the customization options you select in this interactive flow will be reflected in the parameter values in the embed code, so you'll be able to adjust them later by editing the embed snippet.
-
-Once you're done customizing your embed, click "Next".
-
-### 4. Select authentication method
-
-You'll get a choice between "Existing Metabase session" and "Single sign-on (SSO)".
-
-- If you select **Existing Metabase session**, you'll be able to preview your embeds as the user you're currently logged into Metabase, and only in the same browser as your current session. Not all browsers are supported - we recommend using Google Chrome. To test out embedding in other contexts, you can use [API keys](#use-api-keys-to-test-embeds) instead. For production usage, use [SSO](#set-up-sso).
-
-- If you set up JWT in your Metabase instance, you'll be able to select **Single sign-on (SSO)**, see [Set up SSO](#set-up-sso).
-
-### 5. Add the embedding script into your app
-
-Metabase will generate a code snippet that you can copy and paste into your app, see [Embed code snippets](#embed-code-snippets) for an example. You can later modify this code snippet to specify additional appearance options or change the behavior of some components.
-
-Add the code snippet into your app, and refresh the page.
-
-## Embed code snippets
-
-The code snippets to embed Metabase entities using Embedded Analytics JS should have three parts:
-
-1. Loading the Embedded Analytics JS library from your Metabase instance.
-2. Global configuration settings to be used for all embeds, like the URL of your Metabase instance, appearance themes, etc. See [Configuring embeds](#configuring-embeds).
-3. Components for Metabase entities to be embedded, with their parameters. See [Components](#components).
-
-Here's an example of a script:
-
-```html
-
-
-
-
-
-
-
-
-
-
Optional
entity_Optional
last-Optional
typeOptional
entity_Optional
last-Optional
type
The CollectionItem entity
-