This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Jan 25, 2024
-
-
Chris Truter authored
* Workaround for read-only settings not supporting temp overrides yet * Squash to remove metabase-bot authorship
-
- Jan 16, 2024
-
-
Cal Herries authored
* Serdes for DashboardCardSeries (#37271) (#37337) * backported "Serdes for DashboardCardSeries" for 47 Backports https://github.com/metabase/metabase/pull/37271 to 47 Closes https://github.com/metabase/metabase/issues/37232 * Remove accidentally committed files * Remove accidentally committed file * serdes.load/load-metabase! -> serdes.load/load-metabase * Fix ts/with-temp-dpc * dashcards -> ordered_cards * Fix e2e test --------- Co-authored-by:
metabase-bot[bot] <109303359+metabase-bot[bot]@users.noreply.github.com>
-
- Jan 15, 2024
-
-
metamben authored
Fixes #37245.
-
Alexander Solovyov authored
Resolves #37555
-
- Jan 05, 2024
-
-
Ryan Laurie authored
-
Noah Moss authored
* fix issue with model index search * additionally backport new version of search-db-call-count-test that uses admin perms * fix ns alias
-
- Dec 19, 2023
-
-
Nemanja Glumac authored
-
Nemanja authored
-
- Dec 13, 2023
-
-
metabase-bot[bot] authored
This mitigates the impact of an ambiguous case we can't quickly fix properly; see #27521 for the crash and #36185 for the larger issue. With this change the impact of #27521 is reduced so it is not blocking 48. Co-authored-by:
Braden Shepherdson <braden@metabase.com>
-
- Dec 12, 2023
-
-
Alexander Solovyov authored
Backport of #36535
-
- Dec 11, 2023
-
-
metabase-bot[bot] authored
Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
- Dec 07, 2023
-
-
metabase-bot[bot] authored
Co-authored-by:
Ngoc Khuat <qn.khuat@gmail.com>
-
Mahatthana (Kelvin) Nomsawadi authored
* Fix click behavior link to dashboards/questions not using client router * Make the code cleaner * Fix unit tests * Make API clearer * Address review: Handle case insensitive subpath * Add E2E tests * Fix failed E2E tests * Fix another fail E2E test * Add a test to ensure invalid URL won't break navigation * Add tests + ensure multiple level subpath works
-
- Dec 06, 2023
-
-
metabase-bot[bot] authored
Resolves #35677 Co-authored-by:
Alexander Solovyov <alexander@solovyov.net>
-
Alexander Solovyov authored
resolves #36365
-
- Dec 05, 2023
-
-
metabase-bot[bot] authored
Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
- Dec 04, 2023
-
-
metabase-bot[bot] authored
* Fix all unused arg errors * Address review: Clean up default + remove unused args Co-authored-by:
Mahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev>
-
metabase-bot[bot] authored
changed format to bullets and added note about the badge showing up for Questions in official collections on dashboards not in official collections Co-authored-by:
Jacob Joseph <likeshumidity@users.noreply.github.com>
-
metamben authored
-
metabase-bot[bot] authored
Co-authored-by:
Uladzimir Havenchyk <125459446+uladzimirdev@users.noreply.github.com>
-
metabase-bot[bot] authored
Co-authored-by:
Ngoc Khuat <qn.khuat@gmail.com>
-
- Dec 01, 2023
-
-
metabase-bot[bot] authored
Co-authored-by:
Nick Fitzpatrick <nick@metabase.com>
-
metabase-bot[bot] authored
Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
- Nov 30, 2023
-
-
metabase-bot[bot] authored
Co-authored-by:
Aleksandr Lesnenko <alxnddr@users.noreply.github.com>
-
metabase-bot[bot] authored
Co-authored-by:
Aleksandr Lesnenko <alxnddr@users.noreply.github.com>
-
metabase-bot[bot] authored
Co-authored-by:
Cal Herries <39073188+calherries@users.noreply.github.com>
-
lbrdnk authored
Co-authored-by:
john-metabase <92878045+john-metabase@users.noreply.github.com>
-
- Nov 29, 2023
-
-
metabase-bot[bot] authored
* Attach dashcard's viz settings to the card's :data :viz-settings key (#36067) * Attach dashcard's viz settings to the card's :data :viz-settings key This flows through to the export format fn `metabase.email.messages/stream-api-results-to-export-format` Where it is then properly used. * Added test that gets the contents of .csv attachments Not sure yet why it's not working. Locally, with a real db id it works as expected, so it's on the right track. * Create a working test. * Card qp merges dashcard viz when it exists. Viz middleware normalizes card/dashcard viz-settings * Addressed feedback. - if viz settings map is empty in process viz settings middleware, use qp store. - now we don't have to do the (or ...) logic anywhere else - added comment in the test to try clarify what the 'viz' is setting up * Fix run fn in middleware --------- Co-authored-by:
adam-james <21064735+adam-james-v@users.noreply.github.com> Co-authored-by:
Adam James <adam.vermeer2@gmail.com>
-
metabase-bot[bot] authored
* Update athena.md Added notes about permissions requirements especially re: Lake Formation as a source and changed headings to have a H2 permissions heading with the example bucket policy under it. * Update docs/databases/connections/athena.md --------- Co-authored-by:
Jacob Joseph <likeshumidity@users.noreply.github.com> Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
Aleksandr Lesnenko authored
* Fix TableSimple styles (#35927) * fix TableSimple styles * tweak sorting icon opacity * Update TableSimple.styled.tsx * fix imports * revert unnecessary PK column pills fix
-
- Nov 28, 2023
-
-
lbrdnk authored
* Use sessions in mongo aggregation pipelines (#35680) Manual backport of #35680 * Use mongo sessions in aggregation pipelines Using sessions, cancel signal from streaming response can be handled correctly - query is killed also on database side. * Update tests * Let the middleware handle the exception While coding the other test, I've found out that if exception is handled in the `reducible-results`, code clogs for 3 minutes, which is `.maxTime` for aggregation. I don't know the exact reason yet, but for time being I'm leaving the exception handling to middleware. * Add testing string * Encode aggregation results as `BasicDBObject` Use this type instead of BSON's Document because code transforming DBObject to clojure structures is already in place. * Update exceptions handling and tests Exception handling now more resembles code in other drivers. Tests were updated to use mbql query instead of raw native to avoid differences between various mongodb versions. `$dateTrunc` was not available in version 4. * Increase cancelation interval in tests * Address remarks and update test to handle cold start By cold start I mean running it before dataset is initialized. * Remove unnecessary hint * Indentation
-
lbrdnk authored
* Adjust mysql container env * Setting the HOST can cause trouble they said https://hub.docker.com/_/mysql. Let's try it without then. * Also MYSQL_USER doesn't play well with empty password * Cast results of temporal extract to decimal * Update test * Update test * Revert casting temporal-extract results to decimals * Handle mysql YEAR type as a number instead of a date * Cleanup
-
- Nov 27, 2023
-
-
metabase-bot[bot] authored
* Update models.md added a note about the timezone used for model caching cron schedules * Update docs/data-modeling/models.md --------- Co-authored-by:
Jacob Joseph <likeshumidity@users.noreply.github.com> Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
metabase-bot[bot] authored
* Update upgrading-metabase.md added note about major version upgrades taking longer * Update docs/installation-and-operation/upgrading-metabase.md --------- Co-authored-by:
Jacob Joseph <likeshumidity@users.noreply.github.com> Co-authored-by:
Luis Paolini <paoliniluis@gmail.com> Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
metabase-bot[bot] authored
Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
metabase-bot[bot] authored
Co-authored-by:
Oleg Gromov <mail@oleggromov.com>
-
Oleg Gromov authored
* QueryBuild and SQL questions: hide Explore results with parameters * Fix AtomicQuery.canNest return type (so that it is always boolean) * Add Question.canExploreResults tests Manual backport of #35476
-
Alexander Solovyov authored
adds new `ascendants` multimethod, which traverses tree upwards w/o looking for children. Backport of #36081
-
Cal Herries authored
-