Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Jul 01, 2024
  2. Jun 28, 2024
    • adam-james's avatar
      Wrap non-latin characters in a span specifying working font (#44580) · 97575697
      adam-james authored
      * Wrap non-latin characters in a span specifying working font
      
      Fixes: #38753
      
      CSSBox seems to have a bug where font fallback doesn't work properly. This is noticeable when a font does not contain
      glyphs that are present in the string being rendered. For example, Lato does not have many international characters,
      so the rendered version of tables (that show up in Slack messages) will not render properly, making the card
      unreadable.
      
      Since this appears to be a downstream bug, I've opted to work around this limitation by wrapping any non-latin
      characters in a <span> that specifies the font family to be sans-serif, which should contain the glyphs to properly
      render.
      
      This leaves Lato in place for other characters.
      
      For now, I figured it's worth trying this solution over using Noto for 2 reasons:
      - we can keep Lato, which has been the decided font style for the app for some time (this keeps things consistent
      where possible)
      - the Noto font containing all glyphs is quite a large font (>20mb, I think) and it would be nice to avoid bundling
      that if we can.
      
      * stub installed fonts test
      
      * typo
      
      * Do wrapping, but now per-string, and in Clojure data not html string
      
      I've decided that a reasonable solution is to still wrap strings containing non-lato characters. But it's not done
      with str/replace to the html string but rather in a postwalk over the Hiccup data prior to rendering.
      
      Seems like a decent compromise of issues without patching CSSBox or fixing upstream (may be good to do, but will take
      longer to get a fix in).
      
      * add test checking that glyphs render correctly
      
      * Add a test that directly checks the wrapping fn
      
      * Change the string to keep the linter quiet
      
      * Change how we check if string can be rendered to faster method, new Lato Font
      
      With Sanya's help, the way I check if a given string is renderable with Lato is now faster.
      
      Also use the full Lato font, not just the 'latin' lato so we can cover more chars
      
      * change lato so that it loads the fn even in a fresh test run
      Unverified
      97575697
    • Chris Truter's avatar
      Rather support old files, than duplicate columns (#44873) · 59f98b06
      Chris Truter authored
      * Rather support old files, than duplicate columns
      
      * Cope with driver specific failure modes
      
      * Restore bytes comment
      Unverified
      59f98b06
  3. Jun 27, 2024
  4. Jun 26, 2024
  5. Jun 25, 2024
  6. Jun 24, 2024
  7. Jun 21, 2024
    • adam-james's avatar
      Disable Pivot Export Post Processing Step (#44561) · 998b28cd
      adam-james authored
      This PR disables the 'make exports look pivoted' post processing step for csv and xlsx exports.
      
      This is in response to a reported issue that Large Pivot Table downloads are failing entirely: #44556
      
      A more hollistic fix and improvement to the post processing feature will be worked on, so the post processing code is
      left untouched in this PR.
      
      The dynamic vars in the csv and xlsx namespaces each default `false` and disable the export from running any post
      processing. The var should remain `false` until we've got a plan for these types of exports, and there is no way for
      users (either through ENV or UI) to change this, so the feature is effectively disabled.
      Unverified
      998b28cd
    • Cam Saul's avatar
      Set `useLocalSessionState=true` for MySQL DW connections [PERFORMANCE BOOST] (#44509) · 89f12e7c
      Cam Saul authored
      * Set `useLocalSessionState=true` for MySQL DW connections
      
      * Fix GH issue number
      
      * Test fixes :wrench:
      
      * Lint fix :wrench:
      Unverified
      89f12e7c
  8. Jun 20, 2024
  9. Jun 19, 2024
    • Case Nelson's avatar
      fix: populate param-fields for named fields on public dashboards (#44440) · 523ea248
      Case Nelson authored
      
      * Update e2e test
      
      * Update e2e test
      
      * fix: populate param-fields for named fields on public dashboards
      
      * Add name to public hydration
      
      * Add tests
      
      * Add tests
      
      * Fix tests
      
      ---------
      
      Co-authored-by: default avatarAlexander Polyankin <alexander.polyankin@metabase.com>
      Unverified
      523ea248
    • Cal Herries's avatar
      Exclude native query matches in search scoring when the search should exclude... · 3f788bba
      Cal Herries authored
      Exclude native query matches in search scoring when the search should exclude native queries (#43982)
      
      Co-authored-by: default avatarChris Truter <crisptrutski@users.noreply.github.com>
      Unverified
      3f788bba
    • adam-james's avatar
      User parameter value json fix (#44420) · bbde99dd
      adam-james authored
      
      * UserParameterValue transforms wrapped to properly escape string vals
      
      The `json-in` and `json-out` functions used for toucan model transforms do not perform any string escaping logic. This
      makes sense as we don't want to make assumptions about the shape of data flowing in/out of the db. But, this did mean
      that for the User paramter values table, string values were causing an error to be logged. This doesn't break
      anything, as the function will still correctly return the string, but it can clutter up logs.
      
      So, this PR wraps all incoming values in a map and unwraps it for outgoing values.
      
      * Add migration to wrap existing user param values with ::wrapper key
      
      Since the in/out transform for UserParameterValues is updated, we need to migrate any existing values to have this wrapping.
      
      * Simplify the solution to the problem.
      
      Since we're already getting what we need from the json-in/json-out *except* that it's logging a parse error, we can
      create a json-out that works the same way (tries to parse and returns the string as-is if it fails) without logging an
      error at all.
      
      * take away the arg and keywordize inside the json-out fn
      
      * remove irrelevant comment
      
      Signed-off-by: default avatarAdam James <adam.vermeer2@gmail.com>
      
      * Add a little more test coverage for different value types
      
      * faster test thanks to Dan!
      
      * Add a comment about the data being tested
      
      ---------
      
      Signed-off-by: default avatarAdam James <adam.vermeer2@gmail.com>
      Unverified
      bbde99dd
    • adam-james's avatar
      XLSX Pivot Table Downloads have 'Native' Pivot Table (#43791) · 89bdaa2f
      adam-james authored
      * XLSX Pivot Table Downloads have 'Native' Pivot Table
      
      Addresses: #2473
      
      The xlsx downloads work fine for regular tables. However, on Pivot Table downloads, the resulting file isn't pivoted
      and is formatted somewhat strangely (it contains additional rows related to totals, has an extra 'pivot-grouping'
      column).
      
      Now, the downloaded xlsx file contains 2 sheets:
      - the data sheet containing the question's rows unpivoted. If you were constructing a pivot table yourself, you would
      probably start with this shape of data.
      - the pivot sheet containing a 'native' Pivot table whose reference points to the data on the data sheet, and whose
      columns, rows, and values align with the cols, rows, and measures set up in Metabase
      
      * Silly typo!
      
      * Exported Pivot uses correct aggregation (sum, count, stddev, avg, min, max)
      
      * data for pivot exports now also uses the formatting
      
      * Add a test asserting that a pivot table exists in the xlsx file
      
      * add-row! is a method dispatching on sheet class
      
      * remove unnecessary hint
      
      * address review feedback:
      
       - consolidate the aggregation function key fns into one function in the .xlsx namespace
         this was moved out of postprocessing so that the xlsx specific fns don't litter the post processing namespace at
         this time
      
       - clean up an unnecessary destructiring inside the native-pivot function
       - don't shadow 'name' inside the body of a fn
      
      * Add tests that confirm zero-col and zero-row situations work
      
      * Consolidate the atoms used to store pivot rows/options
      Unverified
      89bdaa2f
    • Chris Truter's avatar
    • Braden Shepherdson's avatar
      [QP] Fix breakouts on a nested model (#44418) · 3ccf4d41
      Braden Shepherdson authored
      Fixes #43993 for real.
      
      The earlier fix #44182 was needlessly restricting the
      "nominal refs" check to fields which were using numeric IDs,
      when really any match on nominal refs is valid.
      Unverified
      3ccf4d41
    • Braden Shepherdson's avatar
Loading