Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Nov 30, 2022
  2. Nov 29, 2022
    • Nick Fitzpatrick's avatar
      Adjusting style of Column Title label in Table Viz (#26757) · ad64ba77
      Nick Fitzpatrick authored
      * Adjusting style of Column Title label in Table Viz
      
      * removing all form-field lable types
      ad64ba77
    • Nick Fitzpatrick's avatar
      Doing isBreakout check sooner, removing column formatting from 2nd dimension (#26777) · 811ecb6d
      Nick Fitzpatrick authored
      * Doing isBreakout check sooner, removing column formatting from 2nd dimension
      
      * PR Feedback
      
      * separating showColumnSettings and showColumnSettingsForIndicies
      811ecb6d
    • Cam Saul's avatar
      Athena driver (#26301) · a32bb77b
      Cam Saul authored
      * Include Amazon Athena support for dacort/metabase-athena-driver
      
      * Use Metabase Maven repo to fetch Athena driver
      
      * Copy test extensions from Damon's Athena driver repo
      
      * Some code cleanup.
      
      * Move namespaces => metabase.driver.athena
      
      * Clean up the test extensions namespace
      
      * 42 failures, 16 errors
      
      * Fix regex support; disable a few tests
      
      * Minor tweaks
      
      * Fix data-source-name
      
      * Fix :week and :day-of-week impls (mostly): 2 failures, 3 errors
      
      * Fix OFFSET, :week-of-year; skip test that has TIME column
      
      * Add Athena to CircleCI config. Don't wait for Java 11 tests to finish before driver tests.
      
      * ALL TESTS ARE PASSING! <3
      
      * Copy fixes for https://github.com/dacort/metabase-athena-driver/issues/115;
      
       add test
      
      * We don't need to prep source files or fetch dependencies before running backend tests.
      
      * Fix Eastwood error.
      
      * Tweak CircleCI config.
      
      * Fix TIMESTAMP WITH TIME ZONE
      
      * Include the Athena/Redshift repos in the build-drivers deps.edn
      
      * Build and release scripts need to have the :mvn/repos as well
      
      * Revert change that enabled test for Presto
      
      * Un-enable failing test for Snowflake as well.
      
      * moves all is clauses into the test
      
      - previously only the first few tests were being run
      
      * Sort ns in `metabase.driver.athena-test`
      
      * Prevent athena's log4j2.properties file from becoming log config
      
      athena includes log4j2.properties top-level with the properties:
      
      ```
      status = debug
      rootLogger.level=debug
      ```
      
      And this kills our beautifully crafted logging. Set
      "log4j2.configurationFile" in bootstrap to our own log4j2.xml.
      
      Log4j2 looks in a few places for its logging config, the first of which
      is the properties file. So when the jar is loaded, log4j2 considers this
      a logging config change and we lose our logging.
      
      Co-authored-by: default avatarDamon P. Cortesi <d.lifehacker@gmail.com>
      Co-authored-by: default avatarBryan Maass <bryan.maass@gmail.com>
      Co-authored-by: default avatardan sutton <dan@dpsutton.com>
      a32bb77b
    • Nemanja Glumac's avatar
    • Ngoc Khuat's avatar
      9f5a86e1
    • Alexander Polyankin's avatar
    • Nemanja Glumac's avatar
      [CI] Trigger `uberjar` workflow manually (#26680) · b1f7029b
      Nemanja Glumac authored
      * [CI] Trigger `uberjar` workflow manually
      
      * Do not make commit SHA input required
      
      * Continue building on push to `master`
      
      This will keep `metabase-head` and `metabase-enterprise-head`
      DockerHub repos working as they did before.
      
      * Simplify by removing references to `main` branch
      
      * Ignore unrelated paths for push on `master` branch
      b1f7029b
    • Luis Paolini's avatar
      07960f5e
    • Anton Kulyk's avatar
      Basic clean up for the root `Visualization` component (#26791) · fd84af1d
      Anton Kulyk authored
      * Move visualization errors messages to viz lib
      
      * Sort imports
      
      * Clean up comments
      
      * Clean up state definition and default props
      fd84af1d
    • Anton Kulyk's avatar
      Clean up routes (#26789) · d0ab6c0e
      Anton Kulyk authored
      * Remove not used route
      
      * Add space between imports
      
      * Remove not used collection URL helper
      
      * Remove not used dashboard URL helper
      d0ab6c0e
    • Anton Kulyk's avatar
      a67b7203
    • Anton Kulyk's avatar
      Migrate new dashboard form to formik (#26770) · 6ff54cd4
      Anton Kulyk authored
      * Add `isValidCollectionId` helper
      
      * Add `FormCollectionPicker` component
      
      * Add `FormFooter` component
      
      * Fix `FormProvider` template types
      
      * Add `CreateDashboardForm`
      
      * Reimplement `CreateDashboardModal`
      
      * Fix type error
      
      * Use new `CreateDashboardModal`
      
      * Delete old `CreateDashboardModal`
      
      * Accept root collection's `null` id
      
      * Remove console errors/warns overwrite in tests
      
      * Remove flaky test
      
      * Use `getBy*` element selectors instead of `queryBy*`)
      
      * Fix creating new dashboard for a question
      
      * Open new dashboards in editing mode
      
      * Rely on validation schema to set initial values
      
      * Make `description` input `nullable`
      
      * Use `userEvent` instead of `fireEvent` in tests
      
      * Move `FormCollectionPicker` to collections module
      6ff54cd4
    • Braden Shepherdson's avatar
    • Alexander Polyankin's avatar
      Add database form skeleton (#26766) · b0f7d8a1
      Alexander Polyankin authored
      b0f7d8a1
    • Mahatthana (Kelvin) Nomsawadi's avatar
      Match static combo chart colors and legends with app viz colors (#26211) · c6e41b75
      Mahatthana (Kelvin) Nomsawadi authored
      * Match static combo chart colors with app viz colors
      
      * Match colors when individual series color is set
      
      * Remove tests that test colors
      
      Since colors is now determined in FE
      
      * Fix static viz Series type
      
      * Match static progress bar colors with app viz colors
      
      * Simplify Clojure code, makes it more idiomatic
      
      * Fix certain combo charts don't respect whitelabel colors
      
      * Make Clojure code more idiomatic
      
      * Fix Series type
      
      * Add colors back to static internal page
      
      * Simplify type predicate
      
      * fix colors matching for multiple series with mulitple metrics or dimensions
      
      * Handle legends not formatted in static viz in some cases
      
      * Fix failed BE tests after BE API changed
      
      * Fix failed BE tests after BE API changed
      
      * Add multiple series dashcard test to `getSeriesWithColors` test
      
      * Add `getSeriesWithLegends` tests
      
      * Fix URL `/_internal/static-viz` not loading due to API change
      
      * Correctly render legend when having dashcard title set
      
      * Simplify combo-chart API
      
      don't really need `settings-seqs` yet
      
      * Make static combo chart component type easier to understand
      
      * Address review: refactor `render-multiple-lab-chart`
      
      * Make variable names easier to understand
      
      * Simplify color API
      
      * Address review on `body.clj`
      
      * Address review, make parameter name more consistent
      
      * Fix multiple scalars not rendering
      
      * Remove unused imports
      c6e41b75
  3. Nov 28, 2022
  4. Nov 25, 2022
Loading