Skip to content

Commit 518ee7f

Browse files
github-automation-metabaseMetabase Docs bot
andauthored
[auto] adding content to master->master (#820)
Co-authored-by: Metabase Docs bot <[email protected]>
1 parent 55eea31 commit 518ee7f

File tree

10 files changed

+54
-29
lines changed

10 files changed

+54
-29
lines changed

_docs/master/developers-guide/devenv.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ Both components are built and assembled together into a single JAR file. In the
2020

2121
## Quick start
2222

23+
First, make sure your local dev tooling matches the Metabase requirements. Run:
24+
25+
```
26+
./bin/dev-requirements
27+
```
28+
2329
To spin up a development environment, run:
2430

2531
```
@@ -159,10 +165,12 @@ use Metabase, don't forget to start the frontend as well (e.g. with `yarn build-
159165
By default Rspack runs the development server on port `8088`. You can run multiple instances of Metabase on the same machine by specifying a different port for each instance.
160166

161167
Frontend:
168+
162169
- If you are running the frontend with `yarn build-hot`, set the `MB_FRONTEND_DEV_PORT` environment variable: `MB_FRONTEND_DEV_PORT=8089 MB_EDITION=ee yarn build-hot`
163170
- If you are building the frontend statically with `yarn build`, there is nothing different to do
164171

165172
Backend:
173+
166174
- Set the `MB_JETTY_PORT` environment variable and `MB_FRONTEND_DEV_PORT` to the same one as for the frontend.
167175

168176
### The application database

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ layout: new-docs
1111

1212
# Driver Interface Changelog
1313

14+
## Metabase 0.58.0
15+
16+
- Added a `:collate` feature for drivers that support collation settings on text fields
17+
1418
## Metabase 0.57.0
1519

1620
- `driver/field-reference-mlv2` is now deprecated, and is no longer used. Please remove your implementations.

_docs/master/embedding/sdk/api/MetabaseCollectionItem.html

Lines changed: 3 additions & 2 deletions
Large diffs are not rendered by default.

_docs/master/embedding/sdk/api/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_docs/master/embedding/sdk/api/snippets/MetabaseCollectionItem.md

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ type MetabaseCollectionItem = {
1414
description: string | null;
1515
entity_id?: SdkEntityId;
1616
id: SdkCollectionId;
17+
is_remote_synced?: boolean;
1718
last-edit-info?: {
1819
email: string;
1920
first_name: string;
@@ -23,13 +24,7 @@ type MetabaseCollectionItem = {
2324
};
2425
model: string;
2526
name: string;
26-
type?: | "instance-analytics"
27-
| "trash"
28-
| "remote-synced"
29-
| "model"
30-
| "question"
31-
| "metric"
32-
| null;
27+
type?: "instance-analytics" | "trash" | "model" | "question" | "metric" | null;
3328
};
3429
```
3530

@@ -39,19 +34,20 @@ The CollectionItem entity
3934

4035
<!-- [<snippet properties>] -->
4136

42-
| Property | Type |
43-
| :-------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- |
44-
| <a id="description"></a> `description` | `string` \| `null` |
45-
| <a id="entity_id"></a> `entity_id?` | [`SdkEntityId`](./api/SdkEntityId) |
46-
| <a id="id"></a> `id` | [`SdkCollectionId`](./api/SdkCollectionId) |
47-
| <a id="last-edit-info"></a> `last-edit-info?` | \{ `email`: `string`; `first_name`: `string`; `id`: [`SdkUserId`](./api/SdkUserId); `last_name`: `string`; `timestamp`: `string`; \} |
48-
| `last-edit-info.email` | `string` |
49-
| `last-edit-info.first_name` | `string` |
50-
| `last-edit-info.id` | [`SdkUserId`](./api/SdkUserId) |
51-
| `last-edit-info.last_name` | `string` |
52-
| `last-edit-info.timestamp` | `string` |
53-
| <a id="model"></a> `model` | `string` |
54-
| <a id="name"></a> `name` | `string` |
55-
| <a id="type"></a> `type?` | \| `"instance-analytics"` \| `"trash"` \| `"remote-synced"` \| `"model"` \| `"question"` \| `"metric"` \| `null` |
37+
| Property | Type |
38+
| :------------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------------------------- |
39+
| <a id="description"></a> `description` | `string` \| `null` |
40+
| <a id="entity_id"></a> `entity_id?` | [`SdkEntityId`](./api/SdkEntityId) |
41+
| <a id="id"></a> `id` | [`SdkCollectionId`](./api/SdkCollectionId) |
42+
| <a id="is_remote_synced"></a> `is_remote_synced?` | `boolean` |
43+
| <a id="last-edit-info"></a> `last-edit-info?` | \{ `email`: `string`; `first_name`: `string`; `id`: [`SdkUserId`](./api/SdkUserId); `last_name`: `string`; `timestamp`: `string`; \} |
44+
| `last-edit-info.email` | `string` |
45+
| `last-edit-info.first_name` | `string` |
46+
| `last-edit-info.id` | [`SdkUserId`](./api/SdkUserId) |
47+
| `last-edit-info.last_name` | `string` |
48+
| `last-edit-info.timestamp` | `string` |
49+
| <a id="model"></a> `model` | `string` |
50+
| <a id="name"></a> `name` | `string` |
51+
| <a id="type"></a> `type?` | `"instance-analytics"` \| `"trash"` \| `"model"` \| `"question"` \| `"metric"` \| `null` |
5652

5753
<!-- [<endsnippet properties>] -->

_site/docs/master/developers-guide/devenv.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5452,6 +5452,11 @@ <h1 id="development-environment">Development environment</h1>
54525452

54535453
<h2 id="quick-start">Quick start</h2>
54545454

5455+
<p>First, make sure your local dev tooling matches the Metabase requirements. Run:</p>
5456+
5457+
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>./bin/dev-requirements
5458+
</code></pre></div></div>
5459+
54555460
<p>To spin up a development environment, run:</p>
54565461

54575462
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>yarn dev
@@ -5580,12 +5585,14 @@ <h3 id="multiple-instances">Multiple Instances</h3>
55805585
<p>By default Rspack runs the development server on port <code class="language-plaintext highlighter-rouge">8088</code>. You can run multiple instances of Metabase on the same machine by specifying a different port for each instance.</p>
55815586

55825587
<p>Frontend:</p>
5588+
55835589
<ul>
55845590
<li>If you are running the frontend with <code class="language-plaintext highlighter-rouge">yarn build-hot</code>, set the <code class="language-plaintext highlighter-rouge">MB_FRONTEND_DEV_PORT</code> environment variable: <code class="language-plaintext highlighter-rouge">MB_FRONTEND_DEV_PORT=8089 MB_EDITION=ee yarn build-hot</code></li>
55855591
<li>If you are building the frontend statically with <code class="language-plaintext highlighter-rouge">yarn build</code>, there is nothing different to do</li>
55865592
</ul>
55875593

55885594
<p>Backend:</p>
5595+
55895596
<ul>
55905597
<li>Set the <code class="language-plaintext highlighter-rouge">MB_JETTY_PORT</code> environment variable and <code class="language-plaintext highlighter-rouge">MB_FRONTEND_DEV_PORT</code> to the same one as for the frontend.</li>
55915598
</ul>

_site/docs/master/developers-guide/driver-changelog.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<meta name="twitter:site" content="@metabase">
5555

5656
<meta name="twitter:title" content="Driver interface changelog | Metabase Documentation">
57-
<meta name="twitter:description" content="Driver Interface Changelog Metabase 0.57.0 driver/field-reference-mlv2 is now deprecated, and is no longer used. Please remove your implementations. The key metabase.driver-api.core/qp.add.nfc-path is now more consistently populated; other qp.add.* keys no...">
57+
<meta name="twitter:description" content="Driver Interface Changelog Metabase 0.58.0 Added a :collate feature for drivers that support collation settings on text fields Metabase 0.57.0 driver/field-reference-mlv2 is now deprecated, and is no longer used. Please remove...">
5858
<meta name="twitter:card" content="summary_large_image">
5959
<meta name="twitter:image" content="https://www.metabase.com/images/docs/docs-og.png">
6060
<!-- end of Twitter cards -->
@@ -64,7 +64,7 @@
6464
<meta property="og:type" content="article">
6565
<meta property="og:url" content="https://www.metabase.com/docs/master/developers-guide/driver-changelog">
6666
<meta name="title" property="og:title" content="Driver interface changelog | Metabase Documentation">
67-
<meta name="description" property="og:description" content="Driver Interface Changelog Metabase 0.57.0 driver/field-reference-mlv2 is now deprecated, and is no longer used. Please remove your implementations. The key metabase.driver-api.core/qp.add.nfc-path is now more consistently populated; other qp.add.* keys no...">
67+
<meta name="description" property="og:description" content="Driver Interface Changelog Metabase 0.58.0 Added a :collate feature for drivers that support collation settings on text fields Metabase 0.57.0 driver/field-reference-mlv2 is now deprecated, and is no longer used. Please remove...">
6868
<meta name="image" property="og:image" content="https://www.metabase.com/images/docs/docs-og.png">
6969
<!-- end of Open Graph metadata -->
7070

@@ -5441,6 +5441,12 @@ <h5>Other resources</h5>
54415441

54425442
<h1 id="driver-interface-changelog">Driver Interface Changelog</h1>
54435443

5444+
<h2 id="metabase-0580">Metabase 0.58.0</h2>
5445+
5446+
<ul>
5447+
<li>Added a <code class="language-plaintext highlighter-rouge">:collate</code> feature for drivers that support collation settings on text fields</li>
5448+
</ul>
5449+
54445450
<h2 id="metabase-0570">Metabase 0.57.0</h2>
54455451

54465452
<ul>

0 commit comments

Comments
 (0)