This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Dec 14, 2021
-
-
Dalton authored
* don't pass dashcard viz settings to qb * mark cards without IDs as dirty in QB
-
Jeff Evans authored
We probably never want to use message lookups or JNDI integration
-
- Dec 13, 2021
-
-
Ariya Hidayat authored
-
Luis Paolini authored
-
Howon Lee authored
Static visualizations for area charts. Pursuant to #18676
-
Alexander Polyankin authored
-
Ariya Hidayat authored
-
Alexander Kiselev authored
* fix flake questtion tests by adding should("exist") before click * add should check to setup tests
-
Dalton authored
* add FieldFingerprintInfo component to DimensionInfo * add getFieldValues selector to the fields entity * add fingerprint data to example page * prettier fix * add a defined const for '35' value
-
Dalton authored
-
Luis Paolini authored
* Build in GH actions and push to Dockerhub head * Update build-and-push-head-images.yml
-
Noah Moss authored
Co-authored-by:
Alexander Polyankin <alexander.polyankin@metabase.com>
-
Dalton authored
* default undefined expression map to empty object * add unit test
-
Dalton authored
* Add DimensionInfoPopover component * convert DimensionInfoPopover into ts
-
Dalton authored
-
- Dec 10, 2021
-
-
Ariya Hidayat authored
-
Ariya Hidayat authored
-
Cam Saul authored
* Refactor: move Card and Dashboard QP code into their own qp.* namespaces * Disable extra validation for now so a million tests don't fail * WIP * Validate template tag :parameters in query in context of a Card * Fixes * Disable strict validation for now * Test fixes [WIP] * Make the parameter type schema a little more forgiving for now * Tests & test fixes
* More test fixes * 1. Need more tests 2. Need to actually validate stuff * More test fixes. * Test fixes (again) * Test fix * Some test fixes / PR feedback * Disallow native queries with a tag widget-type of "none" Template tags with a widget-type that is undefined, null, or "none" now cause the query's isRunnable method to return false. Existing questions that have this defect won't be runnable until they are resaved with a set widget-type. * Fix prettier error * add snippet and card types to validation pass * Make sure template tag map keys + `:names` agree + test fixes * Have MBQL normalization reconcile template tags map key and :name * Test fix * Fix tests for Cljs * Fix Mongo tests. * Allow passing :category parameters for :text/:number/:date for now. * Dashboard subscriptions should use qp.dashboard code for executing * Make sure Dashboard QP parameter resolution code merges in default values * Add a test for sending a test Dashboard subscription with default params * Prettier * If both Dashboard and Card have default param value, prefer Card's default * Test fix * More tests and more fixes Co-authored-by:Dalton Johnson <daltojohnso@users.noreply.github.com>
-
Luis Paolini authored
* Update 17490.cy.spec.js Seems that we removed the finder * Update 17490.cy.spec.js skipping the test as it's no longer relevant
-
Jeff Bruemmer authored
-
Alexander Polyankin authored
-
Jeff Evans authored
* Fix Presto JDBC test in CircleCI Maybe sudo isn't needed for the import operation * Also print the file permission * Add write permission
-
Jeff Evans authored
* Bump log4j from 2.14.1 to 2.15.0 * Disable failing logging tests when bumping log4j 0day in log4j requires bump in dependency. These tests look for logs in testing but our test logger doesn't seem to have levels set correctly. The disease is certainly worse than the remedy in this case and each instance is annotated with the reason it is disabled, and we can reenable them in calmer waters * Fix unused ns Co-authored-by:
Youngho Kim <miku@korea.ac.kr> Co-authored-by:
dan sutton <dan@dpsutton.com>
-
Gustavo Saiani authored
-
Alexander Polyankin authored
-
Alexander Polyankin authored
-
Gustavo Saiani authored
-
- Dec 09, 2021
-
-
adam-james authored
* Added URL to test for repro of issue #14491 * Allow alphanumeric and _ characters in domains. Hostnames and domains are not the same. Hostnames have the restriction of alphanum, hyphen, and must start with an alpha char. This is what our regex seemed to match before. Relevant RFC for domain names: [https://www.rfc-editor.org/rfc/rfc2181#section-11](RFC2181 Section 11) Relevant RFC for hostnames: [https://www.ietf.org/rfc/rfc1123.html#section-2.1](RFC1123 Section 2.1) It seems that our url? regex is for hostnames, and is based on the UrlValidator code from apache commons. Though the issue #14491 author brings up the RFC1034 (which links to RFC1123 with a bit of a spec) to indicate that underscores SHOULD be allowed, they aren't really in that case. But it seems that there's wiggle room in allowing it for 'domains' generally, and perhaps we should permit the use of underscores in this URL validation to allow for more configuration options for our users. A stackoverflow page with helpful context and explanantion which helped me think about this: https://stackoverflow.com/questions/2180465/can-domain-name-subdomains-have-an-underscore-in-it * Fixed spacing
-
frannietrempe authored
* docs - expanding description of LDAP features * Apply suggestions from code review Co-authored-by:
Jeff Bruemmer <jeff@metabase.com> * docs - edits to LDAP docs based on feedback Co-authored-by:
Jeff Bruemmer <jeff@metabase.com>
-
Ariya Hidayat authored
-
Ariya Hidayat authored
-
Dalton authored
* first pass at adding parameters to gui qb * handle refresh of qb when there are parameters * second pass * minor refactoring * correctly map dashboard params to template tag params * make click behavior question params work again * lint fix * run with dsahboard endpoint in query builder * fix parameter click behavior * fix title drill navigating to new question * add some extra care when setting props on card * refactor getUrlWithParameters & sprinkle comments * fix and remove irrelevant unit tests in meta/Card * fix metadata fetch race condition * refactor logic * fix click behavior * rmv unit tests for function that no longer exists * add Question unit tests * add dashboardId to card serialization in qb * add more title drill e2e tests * rmv unneeded code in qb initialization * fix click behavior query param problem * add targets unit tests * dashboards unit test + simplification of fn logic * add cards unit test * prevent passing of nil parameterValues to native qb
-
Alexander Polyankin authored
-
- Dec 08, 2021
-
-
Howon Lee authored
Combo type and multiple cards for static viz BE. These go into one FE endpoint but are two really separate things in BE. This one conforms to the FE type but the price is that the previous more-dynamic BE types needed to be changed to conform: this will require a refactoring to whack the js-viz types that already exist, when the FE is refactored also.
-
Gustavo Saiani authored
-
Alexander Lesnenko authored
* support ts and tsx in parse-deps * use strip flow types plugin * remove strip flow types plugin
-
Dalton authored
* Rewrite DashCardCardParameterMapper to use tippy + be functional * add unauthed state * make the mapper popover interactive * make Popover and TippyPopover use same selector * add targets unit tests * add e2e test for this specific scenario * kill tippyPopover util because selectors are now the same * fix e2e tests that rely on anchor tag * delete old component * rmv console.log call
-
Ariya Hidayat authored
Caching node_modules (see PR #19202) doesn't seem to _always_ work for Percy CI workflow, there must be some non-deterministic behavior somewhere. Until we figure out that, skip node_modules caching for now to unblock Percy CI runs.
-
Jeff Bruemmer authored
-
Alexander Lesnenko authored
* select none keeps the first one selected * make "None" and "All" lowercase * fix select none when a query has joins Co-authored-by:
Maz Ameli <maz@metabase.com>
-