You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/latest/cloud/cloud-vs-self-hosting.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,4 +52,4 @@ Metabase also has a paid version that ships with all of the bells and whistles (
52
52
-[Metabase Pro](/product/pro)
53
53
-[Metabase Enterprise](/product/enterprise)
54
54
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.
Copy file name to clipboardExpand all lines: _docs/latest/cloud/how-billing-works.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Companies with large number of users can talk to sales about our [Enterprise pla
29
29
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:
30
30
31
31
- $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.
Copy file name to clipboardExpand all lines: _docs/latest/developers-guide/api-changelog.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ latest: true
100
100
When setting `archived` to `false`, you may optionally also provide a `collection_id` (for Dashboards or Cards) or a
101
101
`parent_id` (for Collections). In this case, the entity will be re-parented to the specified Collection when it is
102
102
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
104
104
error will occur.
105
105
106
106
-`/api/metric`
@@ -132,7 +132,7 @@ NOTE: These endpoint changes were added in 0.49.3, and a bug in `GET /api/embed/
132
132
133
133
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.
134
134
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.
136
136
137
137
The value of `format_rows` has no effect when exporting xlsx files.
Copy file name to clipboardExpand all lines: _docs/latest/developers-guide/driver-changelog.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ latest: true
58
58
59
59
- Added a feature `:multi-level-schema` for drivers that support hierarchical levels between database and schema. Such as databricks' catalog. Defaults to false.
60
60
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.
62
62
63
63
- 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.
64
64
@@ -199,7 +199,7 @@ latest: true
199
199
for better performance when saving Questions. Refer to the method docstring for more information and where to find
200
200
an example implementation.
201
201
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,
203
203
then attempt to parse the SQL replace and replace `?` placeholders with inline values from the driver method
204
204
`metabase.driver.sql.util.unprepare/unprepare-value`. In 0.51.0+, Metabase instead generates these queries using
205
205
Honey SQL 2's `:inline` option, eliminating the need to parse and replace `?` placeholders. As such, the
@@ -277,7 +277,7 @@ latest: true
277
277
- Similarly, `metabase.test.data.sql-jdbc.execute/execute-sql!` and helper functions like
278
278
`metabase.test.data.sql-jdbc.execute/sequentially-execute-sql!` are now called with a `java.sql.Connection`
279
279
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
281
281
accordingly.
282
282
283
283
- Added method `metabase.test.data.interface/dataset-already-loaded?` to check if a test dataset has already been
@@ -410,7 +410,7 @@ latest: true
410
410
- New feature `:identifiers-with-spaces` has been added to indicate where a driver supports identifiers like table or
411
411
column names that contains a space character. Defaults to `false`.
412
412
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.
414
414
Only a few database support native UUID types. The default is `false`.
415
415
416
416
## Metabase 0.49.22
@@ -534,7 +534,7 @@ latest: true
534
534
new function takes a Field as returned by `lib.metadata/field`, i.e. a `kebab-case` map.
535
535
536
536
- 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
538
538
`metabase.query-processor.test-util` for mocking them, such as `mock-metadata-provider`,
539
539
`metabase-provider-with-cards-for-queries`, `remap-metadata-provider`, and `merged-mock-metadata-provider`.
540
540
@@ -789,7 +789,7 @@ differences between the library versions.
789
789
790
790
#### Breaking Changes in 0.46.0 related to the Honey SQL 2 transition
791
791
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.**
793
793
794
794
The classes `metabase.util.honeysql_extensions.Identifer` and `metabase.util.honeysql_extensions.TypedHoneySQLForm`
795
795
have been moved to `metabase.util.honey_sql_1.Identifer` and `metabase.util.honey_sql_1.TypedHoneySQLForm`,
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.
64
64
65
65
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.
66
66
@@ -120,7 +120,7 @@ Here's an example of a script:
120
120
121
121
Note the `defer` attribute and the reference to your Metabase URL in the script that loads `embed.js` library.
122
122
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.
124
124
125
125
You can also generate the code snippet for Embedded Analytics JS interactively in Metabase through **+ New > Embed**. Check out the [Quickstart](#quickstart).
Copy file name to clipboardExpand all lines: _docs/latest/embedding/public-links.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ latest: true
18
18
19
19
> Only admins can create public links and iframes.
20
20
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 drilldown into the underlying data on their own.
### 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
65
65
66
66
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.
Copy file name to clipboardExpand all lines: _docs/latest/installation-and-operation/running-metabase-on-docker.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ If you've already been running Metabase with the default application database (H
126
126
127
127
Here's an example `docker-compose.yml` file for running Metabase with a PostgreSQL database `metabaseappdb`:
128
128
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)
130
130
131
131
```yml
132
132
services:
@@ -352,7 +352,7 @@ We currently support the following [environment variables](../configuring-metaba
352
352
353
353
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.
354
354
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).
0 commit comments