This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Oct 27, 2022
-
-
Noah Moss authored
-
Ngoc Khuat authored
-
- Oct 26, 2022
-
-
Cam Saul authored
* Config from file: fix User upsert not hashing password * Move metabase.config.file code => enterprise directory * Support setting Settings in config.yml * Setting name has to be a keyword since that's how YAML gets parsed * Test fix
* Fix Kondo error * Fix Kondo errors * Remove unused namespace -
Cam Saul authored
* Move metabase.config.file code => enterprise directory * Test fix
* Fix Kondo error * Fix Kondo errors * Remove unused namespace -
Braden Shepherdson authored
This makes them less likely to collide, which was a problem on some larger instances. A following PR will generate entity_id from the hashes before (de)serialization, allowing for easier merging later (since entity_id is indexed in the database).
-
- Oct 25, 2022
-
-
Nemanja Glumac authored
-
Cal Herries authored
* Add collection to card tag autocomplete results * Remove comment * Tidy test * Remove unused import * Bump width
-
- Oct 24, 2022
-
-
Aleksandr Lesnenko authored
* static pie labels * visual tests * Quick fix to prevent non-temporal labels from datetime formatting * show values pie BE * Text fix
* add specs * renamt show_labels to show_values * Test fix * update spec Co-authored-by:Adam James <adam.vermeer2@gmail.com> Co-authored-by:
Tim Macdonald <tim@tsmacdonald.com>
-
Cam Saul authored
* Fix Collection created_at migrations for H2 * Fix MySQL/MariaDB set created_at for empty collections * Fix MySQL/MariaDB one last time
-
- Oct 21, 2022
-
-
Cam Saul authored
* Add created_at to Collection * Simplified migrations [ci skip] * Add SQL for H2 and MySQL; add tests * Sort namespaces * Test fixes
* Test fixes * Test fixes * Make sure MySQL/MariaDB Liquibase generator sets the current timestamp function for ADD COLUMN -
adam-james authored
* Column settings correct keys. Show Axes labels logic defaults 'true' These are two small changes related to static viz column formatting. The show axes labels logic change fixes a faulty assumption from an earlier PR where it was assumed that if :labels_enabled key was NOT present, then it was 'false'. The default however, is 'true', so the check had to change to reflect the frontend. Column settings have to be formatted so that the js code running in the backend looks in the right places. For example, `:number-format` must become `:number_format`. I move the function that does that change up so that it can be rolled up into `settings-from-column` to reduce the number of call sites for `update-col-for-js`. * Adjust number format fn to consider :decimal_digits of currencies * Simpler date-separator fix * Prevent non-temporal labels from being passed to datetime formatter * Table Temporal format columns are improved The column headers will now be properly looked up, the key format was incorrect before, causing the `:column_title` lookup to return nil, which ignores when a user changes the column name. Table columns with temporal formatting settings come in with `:unit` `:default`, so that case was added to the datetime formatter. Additionally, a helper function was added to pull the correct column viz settings to pass to the datetime. * Change some table rendering to look for '_' keys instead of '-' And also allow the field-id to take the form `[:field-id 10 nil]` OR `[:field-id 10]` * Added test utils for static-viz rendering. Docstrings for details. A big set of functions to enable cleaner static-viz rendering tests. Next push will be thorough table tests, and some other static viz cleanup * Add some viz-scenarios to help with table testing * Lint * Wrong map here * Currently unused bindings * Writing tests with render-test utils now, and catching new bugs * Use column's field ref to maybe get the column settings * Adjustments so that column-settings are properly grabbed * Number formatter no longer assumes decimal places The frontend will only display decimal places when strictly necessary OR when the column formatting dictates the number of decimal places to show. The number formatter on the backend made different assumptions about decimal places, so precision may be lost OR needlessly displayed. The formatter now checks the actual value passed in and adjusts the format string according to the decimal places present in the value, not just via column-settings, though the column settings will still take priority. * Shame on me. inline def is not needed here :/ * Adjust number format tests to assert that now we match FE behavior * Really trying to get formatting buttoned up. * Matching frontend's default format behavior for numbers * Some tests failed because they assumed two decimal places always * Values less than one still round after 2 sig-figs * Column formatting on tables follows expected default behavior * Getting public-settings included in number and datetime formatters * Test for custom formatting public settings * Removed unused require. * address some PR feedback * Try to clarify the logic in the number formatter * Add some clarifying comments * Use the existing viz tools to help create field-refs properly * Cleaned up column-name impl. to use normed field-refs. Much nicer! * Remove some unnecessary tests, and add a negative scientific num * Simplify table columns test * Simplify and add more format settings to column-formatting test * Unused require * Another one * Fix format of column refs in test * Remove unused thread
-
Braden Shepherdson authored
Previously, some automatic behavior was causing problems in serdes. (The worst example is generating an `entity_id` on insert while deserializing an entity we don't own - if deserialized again it would be duplicated.) A whole cascade of design choices fell out of this problem: - `insert!` would generate `entity_id`s, so use `simple-insert!` - But `simple-insert!` doesn't convert eg. MBQL `:definition` maps back into JSON strings - We got the maps as Clojure data and not JSON strings because `select` and `simple-select` both run `post-select` and parse the JSON. - So we ended up with a raw query on the select side and `simple-insert!` on the storage side. This change unwinds that whole stack, and instead uses a dynamic var to suppress the few pieces of `pre-insert` and `pre-update` logic that causes problems. The end result is much cleaner, and much more consistent with the rest of Metabase's backend logic.
-
Tim Macdonald authored
* Ensure static visualizations with multiple cards are rendered [Fixes #21559] * [static viz] Render multiple scalars as a bar chart
-
- Oct 20, 2022
-
-
Aleksandr Lesnenko authored
* add static viz build watch command * reload graalvm context each time in dev mode * run static viz with yarn:dev * address comments * use watch webpack env var Co-authored-by:
Noah Moss <noahbmoss@gmail.com>
-
Cam Saul authored
* Initialize Metabase from a file * Code cleanup * Support optional template tags; more dox * Finish documentation for ns str * Force the first User to be an admin * Tests for DB creation * Add test to ensure that you can set User password with an {{env ...}} template * Remove data app permission code (#26016) * Revert "Use "apps" collection namespace for app collections (#25963)" This reverts commit a1894202. * Revert "Implement EE/Pro app permissions (#25764)" This reverts commit cf9b1bf5. * Revert "Implement global app permissions for the "All Users" group (#25679)" This reverts commit 63e950f2. * Revert "Require data permissions for executing actions (#25784)" This reverts commit 732bf6b1. * Revert "Prevent modifying app permissions via the collection endpoint (#25684)" This reverts commit 5d3f8279. * Revert "Implement DB specific execution permissions (#25629)" This reverts commit 141a13ce. * Revert "Introduce /execution/ permission (#25529)" This reverts commit 57cbb921. * Keep the app permission revision table * [Apps] Remove emitters (#25999) * [Apps] Remove emitters Emitters were created when we thought that we would be adding actions to multiple places in metabase. Instead we've coalesced to actions being a core feature of data-apps and are executed from within them. Attaching actions to models, as a form of re-use rather than a form of execution, means that actions can still be executed directly from a model, if we want to allow that in the future. * Fix lint errors * Move perform-action! tests out of the api. Since we want to keep the implicit bulk functionality but remove those endpoints move the tests to the actions namespace. * Fix linter * Change driver test to use function instead of endpoint Co-authored-by:
metamben <103100869+metamben@users.noreply.github.com> Co-authored-by:
Case Nelson <case@metabase.com>
-
Noah Moss authored
* fix detection of backend files when generation i18n edn * appease whitespace linter * tweak comment * fix cypress test * appease linter * Use eduction instead of threading * Update bin/i18n/test/i18n/create_artifacts/backend_test.clj Co-authored-by:
Tim Macdonald <tim@metabase.com> Co-authored-by:
Tim Macdonald <tim@metabase.com>
-
- Oct 19, 2022
-
-
Case Nelson authored
* [Apps] Remove emitters Emitters were created when we thought that we would be adding actions to multiple places in metabase. Instead we've coalesced to actions being a core feature of data-apps and are executed from within them. Attaching actions to models, as a form of re-use rather than a form of execution, means that actions can still be executed directly from a model, if we want to allow that in the future. * Fix lint errors * Move perform-action! tests out of the api. Since we want to keep the implicit bulk functionality but remove those endpoints move the tests to the actions namespace. * Fix linter * Change driver test to use function instead of endpoint
-
metamben authored
* Revert "Use "apps" collection namespace for app collections (#25963)" This reverts commit a1894202. * Revert "Implement EE/Pro app permissions (#25764)" This reverts commit cf9b1bf5. * Revert "Implement global app permissions for the "All Users" group (#25679)" This reverts commit 63e950f2. * Revert "Require data permissions for executing actions (#25784)" This reverts commit 732bf6b1. * Revert "Prevent modifying app permissions via the collection endpoint (#25684)" This reverts commit 5d3f8279. * Revert "Implement DB specific execution permissions (#25629)" This reverts commit 141a13ce. * Revert "Introduce /execution/ permission (#25529)" This reverts commit 57cbb921. * Keep the app permission revision table
-
Case Nelson authored
This ensures that the api endpoints and the relevant models cannot be created. We enable during testing, so that we can ensure the integration points like permissions, search, collection items, etc... will continue to be tested.
-
-
metamben authored
* Create app collections in the "apps" collection namespace * Add test macro for setting global app permissions for "All Users" * Introduce app permission audit table
-
- Oct 18, 2022
-
-
Noah Moss authored
-
- Oct 17, 2022
-
-
metamben authored
Fixes #22519.
-
- Oct 15, 2022
-
-
Noah Moss authored
* validate dashcard-id in addition to card-id when running a query for a dashcard * basic test * update tests with dan's suggestion * correctness fix and dashcard series tests
-
- Oct 14, 2022
-
-
Noah Moss authored
* set initial sync status of crufty tables to complete automatically * fix test
-
- Oct 13, 2022
- Oct 12, 2022
-
-
Cam Saul authored
* Add CLI SerDes command for seeding entity IDs (#25655) * Remove stray comment * Fix Kondo error * Fix Eastwood error * Update identity-hash-fields to multimethod for ModelAction * Fix identity-hash-fields for Dimension and DashboardCardSeries
-
metamben authored
* Return models used in scaffolding in GET /app/:id * Return models added to an app page * Return models referenced by queries on app pages
-
Noah Moss authored
-
- Oct 11, 2022
-
-
Case Nelson authored
When scaffolding, we should be automatically adding the insert,update,delete implicit actions. * Add order by on test Co-authored-by:
metamben <103100869+metamben@users.noreply.github.com>
-
Case Nelson authored
* [Apps] Model Actions Adding migration and endpoints for model_action. * model action execution Changing the execution endpoints again, still working on implicit action execution tests. Need to also test the parameters fetch. * Re-add execution route for dashcard action_id until Front End catches up * Add name to model_action GET * Hydrate model-action on dashcards * Rename and combine hydration of model_action to action * Implicit action execution support. Use slug columns as parameter ids * Go through model-action when using GET /action * FE integration fixes * Move action execution to use new parameter shape Now, parameters should be a map of parameter-id to value Parameter-id should be mapped on the FE. So the action parameter-id not the unmapped dashboard parameter-id. * Bring ModelAction into copy code * Generate target of implicit actions to match http actions * Update action test to place action on model * Add unique constraint to model_action for (card_id, slug) * Add missing require * model_action.slug needs to be varchar for mysql constraint * Fix test from unique constraint * Consistent ordering for tests * Addressing Code Reviews and Scaffold changes * Add type: implicit to implicit model actions * Update src/metabase/api/model_action.clj Co-authored-by:
metamben <103100869+metamben@users.noreply.github.com> * Allow changing card_id with PUT to dashcard for model-actions * Update tests after merge * Fix implicit delete and add better test coverage * Addressing review changes Add PUT test Add schema for dashboard-id and dashcard-id params Fix select ordering in test * Model Actions: Frontend (#25646) * save actions in models * list model actions on detail page (#25648) * Link Dashcards to model-based actions (#25770) * Link dashcards to model-based actions * address review comments * Data apps model actions implicit creator (#25807) * Link dashcards to model-based actions * address review comments * Link dashcards to model-based actions * Allow implicit actions to be used like explicit ones * address review comments Co-authored-by:
Anton Kulyk <kuliks.anton@gmail.com> Co-authored-by:
metamben <103100869+metamben@users.noreply.github.com> Co-authored-by:
Ryan Laurie <30528226+iethree@users.noreply.github.com> Co-authored-by:
Anton Kulyk <kuliks.anton@gmail.com> Co-authored-by:
Kyle Doherty <5248953+kdoh@users.noreply.github.com>
-
- Oct 07, 2022
-
-
metamben authored
-
- Oct 06, 2022
-
-
Noah Moss authored
* draft fix * test * revert change to email testing helper to fix tests
-
Mahatthana (Kelvin) Nomsawadi authored
* Fix static viz not rendering Lato font * Move function re font registering to metabase.pulse.render.style namespace
-
- Oct 05, 2022
-
-
Noah Moss authored
* Add UUID param to version info checks * add test and minor tweaks * Update test/metabase/task/upgrade_checks_test.clj Co-authored-by:
Cal Herries <39073188+calherries@users.noreply.github.com> * add is-prod check Co-authored-by:
Cal Herries <39073188+calherries@users.noreply.github.com>
-
Tim Macdonald authored
[Fixes #25704]
-
- Oct 04, 2022
- Sep 30, 2022
-
-
Bryan Maass authored
* untangled date time ranges (and filters) * more tests for relative dates * Update test/metabase/driver/common/parameters/dates_test.clj Co-authored-by:
Cam Saul <1455846+camsaul@users.noreply.github.com> * respond to review + remove an extra tap> * remove java time * with-clock is not allowed inside parallel tests. Co-authored-by:
Cam Saul <1455846+camsaul@users.noreply.github.com>
-