Skip to content

Commit b91d871

Browse files
github-automation-metabaseMetabase Docs bot
andauthored
[auto] adding content to release-x.56.x->release-x.56.x (#753)
Co-authored-by: Metabase Docs bot <[email protected]>
1 parent f828dd2 commit b91d871

File tree

616 files changed

+8198
-3014
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

616 files changed

+8198
-3014
lines changed

_docs/latest/cloud/cloud-vs-self-hosting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ Metabase also has a paid version that ships with all of the bells and whistles (
5252
- [Metabase Pro](/product/pro)
5353
- [Metabase Enterprise](/product/enterprise)
5454

55-
You can self-host this paid version, or have have us host it for you on Metabase Cloud for no additional cost. We don't charge more because we believe you'll have such a better experience that it'll be easier for us to support you.
55+
You can self-host this paid version, or have us host it for you on Metabase Cloud for no additional cost. We don't charge more because we believe you'll have such a better experience that it'll be easier for us to support you.

_docs/latest/cloud/how-billing-works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Companies with large number of users can talk to sales about our [Enterprise pla
2929
Though we bill you monthly, we calculate how much you owe each day. So, say you're on the [Starter plan](/pricing/). Your monthly bill would include:
3030

3131
- $100 flat payment for the month. This payment additionally covers the first five people who use your Metabase that month. If you have fewer than five people using your Metabase, your bill will still be $100 that month.
32-
- Each additional person costs \$6, prorated for how many days their [accounts were available](#what-counts-as-a-user-account) that month. So if an account only existed for the last 10 days of your 30 day billing period, you'd only be charged for those 10 days, not for the full 30 days. Same goes if you deactivated an account prior to the end of the billing period, you'll only be charged for the days when the account was available for use during that billing period. Basically, you only ever pay for all accounts in your Metabase that haven't been deactivated yet.
32+
- Each additional person costs \$6, prorated for how many days their [accounts were available](#what-counts-as-a-user-account) that month. So if an account only existed for the last 10 days of your 30 day billing period, you'd only be charged for those 10 days, not for the full 30 days. Same goes if you deactivated an account before the end of the billing period, you'll only be charged for the days when the account was available for use during that billing period. Basically, you only ever pay for all accounts in your Metabase that haven't been deactivated yet.
3333

3434
## How annual billing works
3535

_docs/latest/developers-guide/api-changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ latest: true
100100
When setting `archived` to `false`, you may optionally also provide a `collection_id` (for Dashboards or Cards) or a
101101
`parent_id` (for Collections). In this case, the entity will be re-parented to the specified Collection when it is
102102
moved from the Trash. If a new `collection_id` or `parent_id` is not provided, the entity will be moved back to its
103-
original location if possible. If this is not possible (for example, the original location is also in the Trash) an
103+
original location if possible. If this is impossible (for example, the original location is also in the Trash) an
104104
error will occur.
105105

106106
- `/api/metric`
@@ -132,7 +132,7 @@ NOTE: These endpoint changes were added in 0.49.3, and a bug in `GET /api/embed/
132132

133133
The above endpoints now accept the `format_rows` query parameter. It is an optional boolean parameter that will default to `true` if not included in the request.
134134
When `format_rows` is `true`, the export will have formatting applied such that the values match what they appear as in the app.
135-
When `format_rows` is `false`, formatting is not applied and exports will behave as they did prior to 0.49.0.
135+
When `format_rows` is `false`, formatting is not applied and exports will behave as they did before 0.49.0.
136136

137137
The value of `format_rows` has no effect when exporting xlsx files.
138138

_docs/latest/developers-guide/driver-changelog.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ latest: true
5858

5959
- Added a feature `:multi-level-schema` for drivers that support hierarchical levels between database and schema. Such as databricks' catalog. Defaults to false.
6060

61-
- Added the multi-method `adjust-schema-qualification` that allows drivers to to qualify, or unqualify table schemas based on enabling or disabling multi-level-schema support. Drivers may need to implement `sql.qp/->honeysql [driver ::h2x/identifier]` to properly quote fully qualified schemas.
61+
- Added the multi-method `adjust-schema-qualification` that allows drivers to qualify, or unqualify table schemas based on enabling or disabling multi-level-schema support. Drivers may need to implement `sql.qp/->honeysql [driver ::h2x/identifier]` to properly quote fully qualified schemas.
6262

6363
- Added the multi-method `float-dbtype` which returns the name of the float type we coerce to for coercion strategies and the `float()` custom expression function.
6464

@@ -199,7 +199,7 @@ latest: true
199199
for better performance when saving Questions. Refer to the method docstring for more information and where to find
200200
an example implementation.
201201

202-
- Prior to 0.51.0, to generate SQL queries with inline parameters, Metabase would generate a parameterized SQL string,
202+
- Before 0.51.0, to generate SQL queries with inline parameters, Metabase would generate a parameterized SQL string,
203203
then attempt to parse the SQL replace and replace `?` placeholders with inline values from the driver method
204204
`metabase.driver.sql.util.unprepare/unprepare-value`. In 0.51.0+, Metabase instead generates these queries using
205205
Honey SQL 2's `:inline` option, eliminating the need to parse and replace `?` placeholders. As such, the
@@ -277,7 +277,7 @@ latest: true
277277
- Similarly, `metabase.test.data.sql-jdbc.execute/execute-sql!` and helper functions like
278278
`metabase.test.data.sql-jdbc.execute/sequentially-execute-sql!` are now called with a `java.sql.Connection`
279279
instead of both a `DatabaseDefinition` and either `:server` or `:db` _context_; the appropriate connection type is
280-
created automatically and passed in in the calling code. Update your method implementations and usages
280+
created automatically and passed in the calling code. Update your method implementations and usages
281281
accordingly.
282282

283283
- Added method `metabase.test.data.interface/dataset-already-loaded?` to check if a test dataset has already been
@@ -410,7 +410,7 @@ latest: true
410410
- New feature `:identifiers-with-spaces` has been added to indicate where a driver supports identifiers like table or
411411
column names that contains a space character. Defaults to `false`.
412412

413-
- New feature `:uuid-type` has been added to indicate that this database is able to distinguish and filter against UUIDs.
413+
- New feature `:uuid-type` has been added to indicate that this database can distinguish and filter against UUIDs.
414414
Only a few database support native UUID types. The default is `false`.
415415

416416
## Metabase 0.49.22
@@ -534,7 +534,7 @@ latest: true
534534
new function takes a Field as returned by `lib.metadata/field`, i.e. a `kebab-case` map.
535535

536536
- Tests should try to avoid using any of the `with-temp` helpers or application database objects; instead, use the
537-
metadata functions above and and the helper _metadata providers_ in `metabase.lib`, `metabase.lib.test-util`, and
537+
metadata functions above and the helper _metadata providers_ in `metabase.lib`, `metabase.lib.test-util`, and
538538
`metabase.query-processor.test-util` for mocking them, such as `mock-metadata-provider`,
539539
`metabase-provider-with-cards-for-queries`, `remap-metadata-provider`, and `merged-mock-metadata-provider`.
540540

@@ -789,7 +789,7 @@ differences between the library versions.
789789

790790
#### Breaking Changes in 0.46.0 related to the Honey SQL 2 transition
791791

792-
**Note: these breaking changes will hopefully be fixed before 0.46.0 ships. This will be updated if they are.**
792+
**Note: we expect these breaking changes to be fixed before 0.46.0 ships. This will be updated if they are.**
793793

794794
The classes `metabase.util.honeysql_extensions.Identifer` and `metabase.util.honeysql_extensions.TypedHoneySQLForm`
795795
have been moved to `metabase.util.honey_sql_1.Identifer` and `metabase.util.honey_sql_1.TypedHoneySQLForm`,

_docs/latest/embedding/embedded-analytics-js.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The exact customization options you see will depend on what type of entity you'r
6060

6161
![Customizing embeds](./images/embed-flow-options.png)
6262

63-
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](#theming) in your embed code snippet.
63+
You'll also 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](#theming) in your embed code snippet.
6464

6565
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.
6666

@@ -120,7 +120,7 @@ Here's an example of a script:
120120

121121
Note the `defer` attribute and the reference to your Metabase URL in the script that loads `embed.js` library.
122122

123-
If you're embedding multiple entities on the same page, you only need to include the `<script>` tags once globally.
123+
If you're embedding multiple entities in a single page, you only need to include the `<script>` tags once globally.
124124

125125
You can also generate the code snippet for Embedded Analytics JS interactively in Metabase through **+ New > Embed**. Check out the [Quickstart](#quickstart).
126126

_docs/latest/embedding/public-links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ latest: true
1818

1919
> Only admins can create public links and iframes.
2020
21-
Admins can create and share public links (URLs) for questions and dashboards. People can view them as standalone destinations (URLs) or as embedded iframes in another page or app. In both cases, the public item will display static (view-only) results of your question or dashboard, so visitors won't be able to drill-down into the underlying data on their own.
21+
Admins can create and share public links (URLs) for questions and dashboards. People can view them as standalone destinations (URLs) or as embedded iframes in another page or app. In both cases, the public item will display static (view-only) results of your question or dashboard, so visitors won't be able to drill down into the underlying data on their own.
2222

2323
## Create a public link for a question
2424

_docs/latest/embedding/sdk/quickstart-with-sample-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ From any Metabase page, click on the **gear** icon in the upper right and select
111111

112112
Turn on:
113113

114-
- Embedded analytics SDK
114+
- Embedded analytics SDK (it's in the **Modular** section)
115115
- Static embedding
116116

117117
Otherwise, this whole thing is hopeless.

_docs/latest/embedding/sdk/upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ yarn add @metabase/embedding-sdk-react@{next-major-version-number}-stable
6161

6262
See more on [SDK versions](./version).
6363

64-
### If there are breaking changes, make the necessary changes to your application code
64+
### If there are deprecations or breaking changes, make the necessary changes to your application code
6565

6666
Breaking changes are rare, but if you do need to make changes, we'll mention it in the release notes for the new major version and have docs that walk you through the changes.
6767

_docs/latest/exploration-and-organization/start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ View changes to a question, dashboard or model and revert to previous versions.
3535

3636
## [Delete and restore items](./delete-and-restore)
3737

38-
Move outdated outdated questions, models, and dashboards to trash, or delete them permanently.
38+
Move outdated questions, models, and dashboards to trash, or delete them permanently.
3939

4040
## [Data reference](./data-model-reference)
4141

_docs/latest/installation-and-operation/running-metabase-on-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ If you've already been running Metabase with the default application database (H
126126

127127
Here's an example `docker-compose.yml` file for running Metabase with a PostgreSQL database `metabaseappdb`:
128128

129-
> This is an example file and and is not meant to be used when running Metabase in a production environment. Please refer to our guide about [How to run Metabase in production](/learn/metabase-basics/administration/administration-and-operation/metabase-in-production)
129+
> This is an example file and is not meant to be used when running Metabase in a production environment. Please refer to our guide about [How to run Metabase in production](/learn/metabase-basics/administration/administration-and-operation/metabase-in-production)
130130
131131
```yml
132132
services:
@@ -352,7 +352,7 @@ We currently support the following [environment variables](../configuring-metaba
352352

353353
In order for the Metabase container to read the files and use the contents as a secret, the environment variable name needs to be appended with a "\_FILE" as explained above.
354354

355-
> This is an example file and and is not meant to be used when running Metabase in a production environment. Please refer to our guide about [How to run Metabase in production](/learn/metabase-basics/administration/administration-and-operation/metabase-in-production).
355+
> This is an example file and is not meant to be used when running Metabase in a production environment. Please refer to our guide about [How to run Metabase in production](/learn/metabase-basics/administration/administration-and-operation/metabase-in-production).
356356
357357
## Troubleshooting
358358

0 commit comments

Comments
 (0)