This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Feb 16, 2021
-
-
Cam Saul authored
-
Nemanja Glumac authored
-
Cam Saul authored
-
Jeff Bruemmer authored
* clarify pivot tables only work with simple and custom questions * typo * Maz edit Co-authored-by:
Maz Ameli <maz@metabase.com> * picking your starting data Co-authored-by:
Maz Ameli <maz@metabase.com>
-
Cam Saul authored
* Revert test-data-loading tweaks for now * Test fix
* Test fix * Test fixes * Unskip repro for #14859 * Test fix Co-authored-by:Nemanja <31325167+nemanjaglumac@users.noreply.github.com>
-
Ariya Hidayat authored
-
Nemanja Glumac authored
#14854 Repro: Custom Expression using `case()` function fails when referencing the same column names [ci skip] (#14857)
-
dpsutton authored
-
Nemanja Glumac authored
#14843 Repro: Filtering a Custom Column does not give correct results when using "Not equal to" (#14847) This issue is fixed on dc50e8a2 Closes #14843
-
Nemanja Glumac authored
-
- Feb 15, 2021
-
-
Tim Macdonald authored
Co-authored-by:
Kyle Doherty <5248953+kdoh@users.noreply.github.com>
-
Maz Ameli authored
-
Tim Macdonald authored
[ci skip]
-
Nemanja Glumac authored
-
Nemanja Glumac authored
-
Nemanja Glumac authored
#14776 Repro: Autocomplete results not correctly showing summary columns when full word entered [ci skip] (#14827)
-
Nemanja Glumac authored
-
Jeff Bruemmer authored
-
Cam Saul authored
-
Nemanja Glumac authored
* Group 2 repro versions into common describe block * Unskip repro version 1 (fixed in #14804) * Rewrite version 1 of the repro for #12985 using API * Add version 2 of repro for #12985
-
dpsutton authored
* Semantic types migration * Fixup for basic querying * Remove the relation type migration. it makes the diff far too hard at the moment. need to be able to just move everything from special_type -> semantic_type and then correct the few that look at it to care about the effective type. the PK/FK stuff gets really invasive and needs to be in its own much smaller changeset * Just rename special_type -> semantic_type for first change * Special type -> semantic type * special-type -> semantic-type * SpecialType -> SemanticType * special type -> semantic type mostly in documentation, docstrings, etc * Fix tests which relied on order of sets database position was annotated by map-index'ing over the set. changing `:special-type` to `:semantic-type` changed the order of the seq produced from it. * special -> semantic in schema_metadata * Tim is awesome: Undo overeager special->semantic in docstrings * Un-rename semantic_type in data_migrations These migrations are run unless a migrations table marks them as already having run. If they haven't run, then the db is older and the column is special_type most likely. So we let them run as `:special_type` and add some error handling to the migration runner that is _opt in_. ```clojure (defmigration ^{:author "camsaul", :added "0.20.0", :catch? true} migrate-field-types ... ) (try (@migration-var) (catch Exception e (if catch? ;; catch? from metadata (log/warn (format "Data migration %s failed: %s" migration-name (.getMessage e))) (throw e)))) ``` * Fix merged master changes just accepted their changes and fixed up rather than fix conflicts.
-
Tim Macdonald authored
* Search card queries [Fixes #4227] * Only show results with a non-zero score * Don't pollute the namespace with search.config's vars * Use a transducer to filter search results from the DB
-
Nemanja Glumac authored
It was fixed in #14804.
-
- Feb 13, 2021
-
-
Cam Saul authored
-
Nemanja Glumac authored
-
- Feb 12, 2021
-
-
Cam Saul authored
Merge `release-x.38.x` into master
-
Cam Saul authored
-
Nemanja Glumac authored
-
Nemanja Glumac authored
-
Jeff Evans authored
Supporting "seconds", "minutes", and "hours" for relative date strings under "past", "next", "last", and "this" in the backend Add the "minutes" and "hours" options to the frontend widget for relative date picker Adding backend parsing tests for new options Adding Cypress test to ensure new options appear in the relative date filter widget
-
Jeff Evans authored
Supporting "seconds", "minutes", and "hours" for relative date strings under "past", "next", "last", and "this" in the backend Add the "minutes" and "hours" options to the frontend widget for relative date picker Adding backend parsing tests for new options Adding Cypress test to ensure new options appear in the relative date filter widget
-
Luis Paolini authored
* Add LDAP instructions + troubleshooting * Update docs/administration-guide/10-single-sign-on.md Co-authored-by:
Jeff Bruemmer <jeff@metabase.com> * Update docs/troubleshooting-guide/ldap.md Co-authored-by:
Jeff Bruemmer <jeff@metabase.com> * Update docs/troubleshooting-guide/ldap.md Co-authored-by:
Jeff Bruemmer <jeff@metabase.com> * Update a few lines * A fully working example without any modifications * Update docs/troubleshooting-guide/ldap.md Co-authored-by:
Jeff Bruemmer <jeff@metabase.com> * Update docs/troubleshooting-guide/ldap.md Co-authored-by:
Jeff Bruemmer <jeff@metabase.com> * Update ldap.md Co-authored-by:
Jeff Bruemmer <jeff@metabase.com>
-
Nemanja Glumac authored
-
Nemanja Glumac authored
#12492 Repro: Custom expression filter with dates wrong display on subsequent click [ci skip] (#14772)
-
Cam Saul authored
Fixes #14724 × FK remaps Fixes #14724 × inception query Fixes #14724 × inception query × FK remaps Fixes #14766 Co-authored-by:
Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com>
-
- Feb 11, 2021
-
-
Cam Saul authored
* "regex-match-first" and "replace" operators aren't safe against SQL injection DRIVER SPECIFIC CHANGES: Updating Redshift driver code to use parameterized search/replace patterns for :replace, and the result of running the QUOTE_LITERAL function on the raw string for :regex-match-first Updating Redshift driver version to latest Parameterizing pattern in Postgres version of :regex-match-first implementation TESTS: Adding new tests to string_extracts_test.clj for ensuring :replace and :regex-match-first work with single quotes in expressions, across all DB drivers supporting those features Adding ability to pass filter into test-string-extract helper, using that from new tests Fixing typo in name of test-replace * Fixing import order in namespace declaration Adding explicit group number param of 0 for Hive-like driver (since the default is 1), when calling regexp_extract * Remove trace logging in the new test Co-authored-by:
Jeff Evans <jeff.evans@metabase.com>
-
Robert Roland authored
Changing the namespace name of the logging middleware broke access logging. Changing this config file to the proper namespace for logging makes it happen again See #14773
-
Raimon Grau authored
This field is always plain text to let other instances of mb know they have to flush the settings cache.
-
Nemanja Glumac authored
#14766 Repro: Cannot summarize columns from joined table based on a Saved Question [ci skip] (#14770)
-