Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. May 10, 2021
  2. May 07, 2021
  3. May 06, 2021
    • dpsutton's avatar
      Fall back to base_type when calling parse-value-for-field-type (#15905) · 45c4d2fe
      dpsutton authored
      I don't exactly follow what's going on in #15901. But it seems that
      the field information can be kept in the db
      
      > ""field_ref"":[""field"",""count(*)"",{""base-type"":""type/BigInteger""}]
      
      And so we need to handle this base type here. Note that in the
      function that calls `update-filter-for-field-type` it checks that the
      field has a base_type.
      
      I'm also a bit confused by the base_type vs base-type in the above
      snippet. But again the calling code has
      
      ```clojure
      (and (= param-type :dimension)
           (get-in value [:field :base_type]))
      (update-filter-for-field-type value)
      ```
      
      So it seems the field has a base_type rather than a base-type.
      45c4d2fe
    • dpsutton's avatar
      Restore table visibility (#15916) · 494b820b
      dpsutton authored
      
      * Move unhidden table sync off-thread
      
      * Test bulk hide/unhide syncing
      
      * Check can connect to db and serialize syncs
      
      rather than allowing us to create threads willy nilly, serialize them
      and reuse them in a fixed thread pool with a single thread. This helps
      if someone "multiple clicks" and launches a few table syncs. It's not
      appropriate to use the existing deduplicating stuff in the sync which
      prevents later tasks from happening while the current sync step
      happens since we want to sync with the most recent changes. So just
      serialize them to go one at a time rather than off to the races.
      
      * Clean up ns, make private, and type hints
      
      * Block waiting on table sync to finish
      
      * Use driver.util can connect helper
      
      uses the timeout of 5seconds and catches errors
      
      * disable ToggleHiddenButton during request
      
      Co-authored-by: default avatarDalton Johnson <daltojohnso@users.noreply.github.com>
      494b820b
    • Nemanja Glumac's avatar
  4. May 05, 2021
  5. May 04, 2021
  6. May 03, 2021
  7. May 01, 2021
    • Ariya Hidayat's avatar
      Waterfall test: use absolute date range (#15895) · 8a597c6e
      Ariya Hidayat authored
      This ensures that the test is deterministic, i.e not exhibiting different
      behavior relative to the current date.
      8a597c6e
    • Nemanja Glumac's avatar
      Merge EE Cypress tests with the OSS ones (#15887) · 9c0db5e0
      Nemanja Glumac authored
      * Merge all enterprise specs together with the OSS ones
      
      * Move whitelabel under `/admin/settings`
      
      * Move specs under `/admin/audit` folder
      
      * Merge `admin/database/add` specs
      
      * Group snippets
      
      * Merge OSS and EE sso specs
      
      * Move sandboxes under `admin/permissions`
      
      * Delete custom drill-throughs spec
      
      * Return boolean value
      
      * Use `Cypress.env` instead of global vars
      
      * Delete empty spec
      
      * Update paths for `eslint` script
      9c0db5e0
  8. Apr 30, 2021
  9. Apr 29, 2021
  10. Apr 28, 2021
    • Jeff Evans's avatar
      Serialization: support dashboard cards being in a different collection (#15842) · 77862352
      Jeff Evans authored
      Make the load multimethod return a function, which serves as a "reload function", to be called after the first entire pass is complete (via cmd)
      
      Updating various places to combine these functions together and invoke at the top level from cmd.clj when load finishes
      
      Updating dashboard load implementation to check for presence of cards referred to by its dashcards, and if missing, reload those dashboards(s) on a second pass
      
      Splitting out a separate load-dashboards fn that contains the bulk of the body from the previous multimethod implementation (which now delegates to it) to support easier reload functionality
      77862352
    • Anton Kulyk's avatar
      Fix sidebar loading causes UI jump (#15719) · e51e90e0
      Anton Kulyk authored
      * Fix sidebar loading causes UI jump
      
      * Fix sidebar blinks betweed data refreshes
      
      * Replace `...` with `…` character
      
      * Test collection is open immediately after moving
      
      * Update sidebar children cypress selector
      
      * Add comment about sidebar's loadingAndErrorWrapper
      
      * Fix typo
      
      * Add role props to sidebar and its children
      e51e90e0
    • Anton Kulyk's avatar
  11. Apr 27, 2021
  12. Apr 26, 2021
Loading