Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Jan 08, 2024
  2. Jan 07, 2024
  3. Jan 05, 2024
  4. Jan 04, 2024
    • adam-james's avatar
      Number viz render method properly uses :scalar.field name to render value (#37274) · 78b66bca
      adam-james authored
      * Add number-viz test to pulse integration test.
      
      This is a currently failing test. The first card succeeds because the 'narrowing' to 1 field is done in the query
      directly, so the expected single value is shown.
      
      The second (currently failing) card has the viz for a 'number' applied but the query isn't 'narrowed' at all, so we
      see the failure.
      
      * Fix the :scalar render to look at the column specified in :scalar.field
      
      * Addressed feedback: improved get-col-by-name impl. and added test comment
      Unverified
      78b66bca
    • John Swanson's avatar
      Use simple `Secret`s for ApiKeys (#37205) · b176982a
      John Swanson authored
      * Use simple `Secret`s for ApiKeys
      
      I decided to POC the idea I had here:
      https://metaboat.slack.com/archives/CKZEMT1MJ/p1703790833895029
      
      This wraps the generated ApiKeys in a special Secret type. If the object
      is accidentally printed, logged, etc. it will appear as "<< REDACTED
      SECRET >>" rather than the actual value.
      
      When we're actually *using* the Secret, we call `expose` on it to turn
      it into a String.
      Unverified
      b176982a
    • Mark Bastian's avatar
      Fixing case of invalid graph.dimension (#37279) · 27587264
      Mark Bastian authored
      When trying to render a card with viz settings containing a nonexistent dimension, an error would result in `mult-x-axis-rowfn` causing a failure to render.
      
      This fix simply replaces `map` with `keep` in `metabase.util.ui-logic/mult-x-axis-rowfn` and `metabase.util.ui-logic/mult-y-axis-rowfn` so that `nil` values are dropped if a bad dimension or metric name is provided.
      
      The following easily shows the broken case (now fixed). Previously, an error was rendered. Now you get the chart.
      
      ```clojure
      ;; REPRO
      (comment
        (ns tickets.37266-slack-error
          (:require
           [clojure.test :refer :all]
           [dev.render-png :as render-png]
           [metabase.models :refer [Card]]
           [metabase.pulse.render.body :as body]
           [metabase.query-processor :as qp]
           [metabase.test :as mt]
           [toucan2.core :as t2]))
      
        (let [busted? true]
          (mt/dataset test-data
            ;; Note that this uses orders since we have that as test data.
            (mt/with-temp [Card {base-card-id :id}
                           {:dataset_query          {:database (mt/id)
                                                     :type     :query
                                                     :query    {:source-table (mt/id :orders)
                                                                :aggregation  [[:count]]
                                                                :filter       [:between [:field (mt/id :orders :created_at) nil] "2019-05-16" "2019-08-16"]
                                                                :breakout     [:field (mt/id :orders :created_at) {:temporal-unit :week}]}}
                            :display                :line
                            :visualization_settings {:table.pivot_column      "state"
                                                     ;; This is also intentionally broken
                                                     :graph.metrics           (if busted?
                                                                                ["frooby"]
                                                                                ["count"])
                                                     :graph.show_trendline    false
                                                     :graph.x_axis.title_text "Week"
                                                     :graph.y_axis.title_text "PR Review Activity"
                                                     ;; Using a missing dimension name breaks the results
                                                     :graph.dimensions        (if busted?
                                                                                ["_sdc_extracted_at"]
                                                                                ["created_at"])
                                                     :graph.show_values       false
                                                     :table.cell_column       "count"}}]
              (render-png/render-card-to-png base-card-id)))))
      ```
      Unverified
      27587264
    • John Swanson's avatar
      Error if DB downgrades are required (#37239) · a2cfb617
      John Swanson authored
      * Error if DB downgrades are required
      
      Before running migrations, check the major versions of:
      
      - the latest database migration that was actually applied (e.g. if v49
      ran migrations, this would be 49)
      
      - the latest database migration that liquibase is aware of (e.g. if
      we're currently running v48, this would be 48)
      
      If the database has executed migrations that we don't know about, throw
      an exception and exit with a helpful error message telling the user they
      need to run `migrate down` from the newer version before they can
      downgrade.
      
      Fixes #27906
      Unverified
      a2cfb617
    • Alexander Polyankin's avatar
      Rename `Question.query()` to `Question.legacyQuery()` (#37233) · d1df0c6c
      Alexander Polyankin authored
      * Rename query to legacyQuery
      
      * Fix legacy query ref
      Unverified
      d1df0c6c
    • Case Nelson's avatar
      [MLv2] Support exclude date filter for filter args display name (#37246) · e27760d6
      Case Nelson authored
      * [MLv2] Support exclude date filter for filter args display name
      
      * Update spec
      
      * Add excludes to filter args display
      Unverified
      e27760d6
    • Sloan Sparger's avatar
    • Case Nelson's avatar
      [MLv2] Fix field-values-search-info returning string ids (#37238) · 8daa10ad
      Case Nelson authored
      
      * [MLv2] Fix field-values-search-info returning string ids
      
      * Skip join test because the text prompt still doesn't match
      
      * Fix the test
      
      ---------
      
      Co-authored-by: default avatarAlexander Polyankin <alexander.polyankin@metabase.com>
      Unverified
      8daa10ad
    • John Swanson's avatar
      Add last_name to ApiKey users (#37234) · b8a4e0d5
      John Swanson authored
      When we generate a `:common_name` on Users, we check for the presence of
      both `first_name` and `last_name`. If either is `nil`, we don't generate
      a `common_name`.
      
      ApiKey users only have one name (the name of the ApiKey itself) but we
      should set the `last_name` to an empty string. This way, the common name
      will still be generated.
      
      Because the `metabase.models.user/insert-new-user!` function requires a
      NonBlankString for `first_name` and `last_name` if they're present, I
      went back to calling `t2/insert-returning-instances!` directly.
      Unverified
      b8a4e0d5
    • Lena's avatar
      Create CODEOWNERS with camsaul owning src/metabase (#37267) · a300c413
      Lena authored
      For auto-requesting the reviews on backend PRs.
      Unverified
      a300c413
    • Jerry Huang's avatar
      Add shallow and location param to /api/collection/tree (#36919) · c68c5418
      Jerry Huang authored
      
      * add collection/list endpoint
      
      * add children
      
      * address changes
      
      * address change
      
      * fix test
      
      * fix like
      
      * address comments
      
      * Update src/metabase/api/collection.clj
      
      Co-authored-by: default avatarNoah Moss <32746338+noahmoss@users.noreply.github.com>
      
      * address changes
      
      ---------
      
      Co-authored-by: default avatarNoah Moss <32746338+noahmoss@users.noreply.github.com>
      Unverified
      c68c5418
    • Braden Shepherdson's avatar
      [MLv2] Removing a final JOIN condition removes the whole join (#37229) · c157156d
      Braden Shepherdson authored
      This still throws an exception on trying to directly remove the final
      JOIN condition. But if the condition is being removed because a field it
      depends on is being removed (eg. a custom column, a breakout, a
      previous stage aggregation) then the entire JOIN is also removed, in the
      usual cascading fashion.
      
      Fixes #36690.
      Unverified
      c157156d
    • Cal Herries's avatar
    • Nemanja Glumac's avatar
      Adapt the stress-test workflow to work with `replay-chromium` (#37255) · 52b8d410
      Nemanja Glumac authored
      * Fix stress-test workflow
      
      Use `replay-chromium' browser for these tests as well.
      This gives us a bit more confidence because we're using
      the same browser in both "regular" and "stress-test" runs.
      
      [ci skip]
      
      * Enable Replay via envvar
      
      [ci skip]
      Unverified
      52b8d410
    • Cal Herries's avatar
      Redshift support for CSV uploads (#37005) · 2e3a4367
      Cal Herries authored
      Unverified
      2e3a4367
    • Chris Truter's avatar
    • Mark Bastian's avatar
      Consistent formatting of all columns in Excel exports (#37208) · 055561b4
      Mark Bastian authored
      * Removing Time portion of Timestamp when formatted as Date in Excel
      
      This is a starting changeset for fixing the issue "Timestamp is always present in dates when exporting to Excel in the embedded application. #14393", which demonstrates a failure mode in applying column-formatting to Excel downloads. This commit should fix the underlying issue as well as update formatting for remaining CSV file download discrepancies.
      
      The goal of this commit is to get us to a baseline state for some small refactorings to combine our formatting paths for CSV, JSON, and Excel exports.
      
      * Updating common logic and tests to reflect how global settings are passed in and applied to format-temporal-str
      
      * Updating `number-format-strings` to not need semantic type.
      
      * Adding tests for new Excel-export logic.
      
      * Fixing cases for currency where we must specify that `::mb.viz/currency-in-header` is false.
      
      * Fixing formatting tests
      
      * Updating unit test to reflect a global abbreviated dates preference.
      
      * Adding column type defaults for certain test cases.
      
      * Updating logic and tests in xlsx exports
      
      Logic in `metabase.query-processor.streaming.common` further unifies the idea of merging all settings first, then making decisions based on that. It also makes the downstream code more functional, as that code doesn't repeatedly reach for global settings.
      
      `metabase.query-processor.streaming.xlsx-test` has been updated to reflect this change. In particular, the helper function `format-string` now builds the right input settings rather than passing settings through to be accumulated later.
      
      * Fixing two more tests.
      
      * Fixing remaining unit tests
      
      - Update `metabase.api.card-test` with multiple test cases for different formats.
      - Update `export-format-test` to lock temporary settings for consistency.
      - `default-number-format?` to `unformatted-number?` and include "currency" as a potential unformatted type.
      
      * Consistent application of global viz settings
      
      This PR adds a function that will inject the global viz settings into `viz-settings-for-col` if not provided by the query processor. This also simplifies the `xslx-test` ns.
      
      * Treating :default unit as no unit.
      Unverified
      055561b4
  5. Jan 03, 2024
Loading