This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Jul 19, 2022
-
-
Cam Saul authored
* Fix CircleCI job skipping magic: `$CIRCLE_STAGE` has been renamed to `$CIRCLE_JOB` * Bust cache if `$CIRCLE_JOB` is unset * Print message if `$CIRCLE_JOB` is unset and we're busting the cache * Fix GoogleAnalytics status code
-
Aleksandr Lesnenko authored
* adjust font size on scalar cards * fix specs
-
dpsutton authored
To persist we need: - a schema - to be able to create, read, and delete tables in that schema. So we run the following sql: ```sql create schema "metabase_cache_134ba_45" create table "metabase_cache_134ba_45"."persistence_check_8667" as values (1) select * from metabase_cache_134ba_45.persistence_check_8667 drop table if exists "metabase_cache_134ba_45"."persistence_check_8667" ``` The `create table ... as values (1)` seems to only be valid in pg not redshift. ```sql dev=# create table "metabase_cache_4b4bb_2"."persistence_check_9755" as values (1); ERROR: syntax error at or near "values" LINE 1: ...tabase_cache_4b4bb_2"."persistence_check_9755" as values (1)... ^ dev=# create table "metabase_cache_4b4bb_2"."persistence_check_9755" as select 1; SELECT dev=# select * from metabase_cache_4b4bb_2.persistence_check_9755 ; ?column? ---------- 1 (1 row) ``` But it is valid to use `create table ... as select 1` This is also valid in pg so we are gold again.
-
Nemanja Glumac authored
-
Luiz Arakaki authored
* Update scanning process details Product doc: https://www.notion.so/metabase/Overhaul-field-values-scan-query-and-filter-widget-behavior-edc24a6ac4b54093ac1c5133345dcb3c#ab7c3aa6b5ce4d0aa39ef8edca1d0bdf Relevant PRs: https://github.com/metabase/metabase/pull/23138 https://github.com/metabase/metabase/pull/23403 * we trigger only one query * revision Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
GitStart authored
Co-authored-by:
gitstart <gitstart@users.noreply.github.com> Co-authored-by:
GitStart-Chalktalk <nitesh.singh@gitstart.dev> Co-authored-by:
Gh0sT <coolmagnas@gmail.com> Co-authored-by:
Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by:
Benjamin Mayanja <vibenjamin6@gmail.com> Co-authored-by:
Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev>
-
Jeff Bruemmer authored
-
Jeff Bruemmer authored
-
Alexander Polyankin authored
-
Alexander Polyankin authored
-
Ryan Laurie authored
* allow field values widget to fill width * banish horizontal fieldvaluespicker scroll
-
Nemanja Glumac authored
* Define all Java flags separately for readability * Separate database and snowplow configs * Explicitly say that we are generating a temporary DB file * Extract `userDefaults` and warn about it * Rename `databaseConfig` to `metabaseConfig` * Rename temporary database path generator
-
Aleksandr Lesnenko authored
-
Aleksandr Lesnenko authored
-
- Jul 18, 2022
-
-
Nemanja Glumac authored
* Remove unused and non-existent ENV * Export only resources actually used elsewhere * Remove the default callback implementation * Remove unused Cypress app db fixture * Remove `DEFAULT_DB_KEY` We're never ever going to use `test_db_fixture.db` to spin a Cypress instance up. That was the only reason why `DEFAULT_DB_KEY` existed in the first place. In order to fall back to using that fixture app db `dbKey` would have to be `undefined` or `null`. * Simplify `get` method Get the `dbKey` inline, rather than having to pass another callback with the separate logic. * Remove obsolete filter flag (see #19378) * Remove unused Java flag * Bring back `MB_USER_DEFAULTS` This reverts 70ea7bedddb5cc1e221cff934c7c939e96bb43c8 * Link the PR that explains the origin of `MB_USER_DEFAULTS`
-
Jeff Bruemmer authored
-
Ryan Laurie authored
* disable erroring json filters * better summarize action handling
-
GitStart authored
Co-authored-by:
gitstart <gitstart@users.noreply.github.com> Co-authored-by:
gitstart <gitstart@gitstart.com> Co-authored-by:
Benjamin Mayanja <vibenjamin6@gmail.com> Co-authored-by:
GitStart-Chalktalk <nitesh.singh@gitstart.dev> Co-authored-by:
Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev>
-
Cam Saul authored
-
Nick Fitzpatrick authored
* Closing all Dashboard sidebars when entering/exiting edit mode * fixing unit test
-
Luis Paolini authored
As the user in https://github.com/metabase/metabase/pull/14585#discussion_r922696696 quickly noticed, the key value syntax in Dockerfiles is legacy and also we shouldn't use it with more than 1 key. This didn't make any effect as the base image had our Env keys already there, but if there's a change at some point, we might end up with weird env settings
-
Braden Shepherdson authored
Cam suggested most of these changes in another PR, and I'm tackling them here.
-
Gustavo Saiani authored
-
Case Nelson authored
Fixes #23938 metabase.driver.ddl.postgres should be named metabase.driver.postgres.ddl metabase.driver.ddl.mysql should be named metabase.driver.mysql.ddl metabase.driver.ddl.sql should be named metabase.driver.sql.ddl Renamed aliases to match new structure
-
Noah Moss authored
-
Nemanja Glumac authored
-
Jeff Bruemmer authored
-
Ryan Laurie authored
* allow operator changes on category fields
-
Nick Fitzpatrick authored
-
Mahatthana (Kelvin) Nomsawadi authored
-
Alexander Polyankin authored
-
Ryan Laurie authored
-
Ngoc Khuat authored
* add snowplow tracking for new records on TaskHistory * more tests and have a better way to figure out db_id, db_engine
-
Alexander Polyankin authored
-
Alexander Polyankin authored
-
Nemanja Glumac authored
-
- Jul 15, 2022
-
-
GitStart authored
* Visualization: Bar chart not showing 0 values unlike line and area chart Co-authored-by:
gitstart <gitstart@gitstart.com> Co-authored-by:
gitstart <gitstart@users.noreply.github.com> Co-authored-by:
Nitesh Singh <nitesh.singh@gitstart.dev> Co-authored-by:
Gh0sT <coolmagnas@gmail.com> Co-authored-by:
Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by:
GitStart <1501599+gitstart@users.noreply.github.com> Co-authored-by:
Benjamin Mayanja <vibenjamin6@gmail.com> Co-authored-by:
Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev> * Visualization: Bar chart not showing 0 values unlike line and area chart Co-authored-by:
gitstart <gitstart@gitstart.com> Co-authored-by:
gitstart <gitstart@users.noreply.github.com> Co-authored-by:
GitStart-Chalktalk <nitesh.singh@gitstart.dev> Co-authored-by:
Gh0sT <coolmagnas@gmail.com> Co-authored-by:
Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by:
GitStart <1501599+gitstart@users.noreply.github.com> Co-authored-by:
Benjamin Mayanja <vibenjamin6@gmail.com> Co-authored-by:
Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev> * remove 0 filter for bar chart Co-authored-by:
gitstart <gitstart@gitstart.com> Co-authored-by:
gitstart <gitstart@users.noreply.github.com> Co-authored-by:
GitStart-Chalktalk <nitesh.singh@gitstart.dev> Co-authored-by:
Gh0sT <coolmagnas@gmail.com> Co-authored-by:
Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by:
GitStart <1501599+gitstart@users.noreply.github.com> Co-authored-by:
Benjamin Mayanja <vibenjamin6@gmail.com> Co-authored-by:
Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev> Co-authored-by:
gitstart <gitstart@users.noreply.github.com> Co-authored-by:
gitstart <gitstart@gitstart.com> Co-authored-by:
Nitesh Singh <nitesh.singh@gitstart.dev> Co-authored-by:
Gh0sT <coolmagnas@gmail.com> Co-authored-by:
Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by:
Benjamin Mayanja <vibenjamin6@gmail.com> Co-authored-by:
Júlio Piubello da Silva Cabral <julio.piubello@gitstart.dev>
-
Ryan Laurie authored
-
Natalie authored
-
metamben authored
-