This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Jun 20, 2024
-
-
John Swanson authored
Add a new query parameter to `/api/collection/:id/items` and `/api/collection/root/items`. If `official_collections_first` is passed, we'll sort official collections first, or not, as requested. If it isn't passed, we'll default to `false` for the trash collection, or `true` for normal collections.
-
Nick Fitzpatrick authored
* Fix crash on restoring bookmarked items, update bookmarks on restore * adding bookmark assertions to e2e tests * removing unintended createDashboard change
-
Cam Saul authored
-
Jeff Bruemmer authored
-
Noah Moss authored
-
Nemanja Glumac authored
-
Nicolò Pretto authored
* simplify bordered logic *
setTitled * setHideDownloadButton * setHideParameters * inline useEmbedDisplayOptions * move DEFAULT_EMBED_DISPLAY_OPTIONS to costants file so we can remove use-embed-display-options.ts * move consts up in the file * update deps of useEffect * fix ts error in the sdk * use useEmbedFrameOptions in useDashboardUrlParams * embed frame should not touch the `embed` slice, which is used for interactive embedding -
Mahatthana (Kelvin) Nomsawadi authored
-
Alexander Polyankin authored
-
Raphael Krut-Landau authored
fix(admin): Add e2e tests of the database caching policy form's basic functionality (in Admin / Performance) (#44416) Closes #44478
-
Ngoc Khuat authored
-
Raphael Krut-Landau authored
-
Phoomparin Mano authored
* funnel start color should be text-dark * change pivot table font size unit to em for scaling * change funnel and legend item unit to em * change funnel font size to em * change object detail font size to em * change gauge font size to em * add cartesian chart padding config * update docs * remove isEmbeddingSdk prop * simulate the 0.875em base font size * chart padding override should apply in query builder * add cartesian padding to stories * update readme docs * fix collection browser option in readme docs * fix pivot table font size scaling * update loki * update loki * use em for smart scalar * update chart default padding * revert smart scalar font size scaling due to measurement * dynamic font family and font size as defaults * pivot table * add more properties to sdk docs * make FONT_SIZES constant local * link to discussion on query builder extra spacing * enforce that font is passed to getLeftHeaderWidths
-
Phoomparin Mano authored
* load custom font family * always return custom font family * add tests for returning custom font family
-
github-automation-metabase authored
-
Uladzimir Havenchyk authored
* Adjust undo toast timeout 12s -> 8s * typo * Address review
-
Alberto Perdomo authored
Remove warnings about not using MB versions in production. This is a left over from the time we were pointing to builds off master and RCs.
-
- Jun 19, 2024
-
-
Raphael Krut-Landau authored
* Use an indicator-agnostic testid * Run sed * Use correct testid
-
Case Nelson authored
* Update e2e test * Update e2e test * fix: populate param-fields for named fields on public dashboards * Add name to public hydration * Add tests * Add tests * Fix tests --------- Co-authored-by:
Alexander Polyankin <alexander.polyankin@metabase.com>
-
Raphael Krut-Landau authored
Ensures that minimum query durations are correctly displayed in the form post-save (#44249) and that all times can be used in the Schedule component (#44257)
-
Raphael Krut-Landau authored
-
Cal Herries authored
Exclude native query matches in search scoring when the search should exclude native queries (#43982) Co-authored-by:
Chris Truter <crisptrutski@users.noreply.github.com>
-
adam-james authored
* UserParameterValue transforms wrapped to properly escape string vals The `json-in` and `json-out` functions used for toucan model transforms do not perform any string escaping logic. This makes sense as we don't want to make assumptions about the shape of data flowing in/out of the db. But, this did mean that for the User paramter values table, string values were causing an error to be logged. This doesn't break anything, as the function will still correctly return the string, but it can clutter up logs. So, this PR wraps all incoming values in a map and unwraps it for outgoing values. * Add migration to wrap existing user param values with ::wrapper key Since the in/out transform for UserParameterValues is updated, we need to migrate any existing values to have this wrapping. * Simplify the solution to the problem. Since we're already getting what we need from the json-in/json-out *except* that it's logging a parse error, we can create a json-out that works the same way (tries to parse and returns the string as-is if it fails) without logging an error at all. * take away the arg and keywordize inside the json-out fn * remove irrelevant comment Signed-off-by:
Adam James <adam.vermeer2@gmail.com> * Add a little more test coverage for different value types * faster test thanks to Dan! * Add a comment about the data being tested --------- Signed-off-by:
Adam James <adam.vermeer2@gmail.com>
-
Alexander Polyankin authored
-
adam-james authored
* XLSX Pivot Table Downloads have 'Native' Pivot Table Addresses: #2473 The xlsx downloads work fine for regular tables. However, on Pivot Table downloads, the resulting file isn't pivoted and is formatted somewhat strangely (it contains additional rows related to totals, has an extra 'pivot-grouping' column). Now, the downloaded xlsx file contains 2 sheets: - the data sheet containing the question's rows unpivoted. If you were constructing a pivot table yourself, you would probably start with this shape of data. - the pivot sheet containing a 'native' Pivot table whose reference points to the data on the data sheet, and whose columns, rows, and values align with the cols, rows, and measures set up in Metabase * Silly typo! * Exported Pivot uses correct aggregation (sum, count, stddev, avg, min, max) * data for pivot exports now also uses the formatting * Add a test asserting that a pivot table exists in the xlsx file * add-row! is a method dispatching on sheet class * remove unnecessary hint * address review feedback: - consolidate the aggregation function key fns into one function in the .xlsx namespace this was moved out of postprocessing so that the xlsx specific fns don't litter the post processing namespace at this time - clean up an unnecessary destructiring inside the native-pivot function - don't shadow 'name' inside the body of a fn * Add tests that confirm zero-col and zero-row situations work * Consolidate the atoms used to store pivot rows/options
-
Alex Yarosh authored
* call attention to POST * wording
-
Nemanja Glumac authored
* Expose "Include this {period}" in timeseries chrome * Fix type errors * Simplify type guards * Add unit tests * Remove Flex wrapper around Switch * Extract `IncludeCurrentSwitch` component * Add E2E smoke tests * Cover the toggle behavior with E2E tests * Simplify test with a simple helper
-
Chris Truter authored
-
Denis Berezin authored
* Temp * Add support for saved questions * Try to fix question not found issue * Try to fix question not found issue * Fix unit tests * Add basic unit test * Fix unit tests * Fix unit tests, fix question not found issue * Review fixes * Review fixes * Refactor components structure, review fixes * Adjust readme
-
Anton Kulyk authored
* Add repro test * Fix null check
-
Braden Shepherdson authored
Fixes #43993 for real. The earlier fix #44182 was needlessly restricting the "nominal refs" check to fields which were using numeric IDs, when really any match on nominal refs is valid.
-
Braden Shepherdson authored
Part of #44298.
-
Mahatthana (Kelvin) Nomsawadi authored
-
github-automation-metabase authored
-
Mahatthana (Kelvin) Nomsawadi authored
* Update readme pointing to newer 50 release * Update enterprise/frontend/src/embedding-sdk/README.md Co-authored-by:
Phoomparin Mano <poom@metabase.com> --------- Co-authored-by:
Phoomparin Mano <poom@metabase.com>
-
Ryan Laurie authored
* automatically add milestones to prs and issues * test code * test code * test commit (#3138) * test commit (#43320) * test commit (#44357) * remove test code * add newlines * prefer older version milestones
-
Alex Yarosh authored
* docs: change paid to pro/enterprise * Apply suggestions from code review Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com> --------- Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
Jeff Bruemmer authored
* add 50.6 to list of releases * 49.17
-
Ryan Laurie authored
-
dependabot[bot] authored
Bumps [ws](https://github.com/websockets/ws) from 7.5.9 to 7.5.10. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/7.5.9...7.5.10 ) --- updated-dependencies: - dependency-name: ws dependency-type: indirect ... Signed-off-by:
dependabot[bot] <support@github.com> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by:
Uladzimir Havenchyk <125459446+uladzimirdev@users.noreply.github.com>
-