This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Jul 31, 2024
-
-
Uladzimir Havenchyk authored
-
github-automation-metabase authored
Co-authored-by:
Metabase bot <metabase-bot@metabase.com>
-
Jeff Bruemmer authored
-
Alexander Solovyov authored
-
Uladzimir Havenchyk authored
-
Ngoc Khuat authored
-
- Jul 30, 2024
-
-
github-actions[bot] authored
* Add new strings for v50.15 * import updated translations --------- Co-authored-by:
github-actions <github-actions@github.com> Co-authored-by:
Ryan Laurie <iethree@gmail.com>
-
Oreon Lothamer authored
* don't run pr envs on external
-
Nick Fitzpatrick authored
-
Alexander Polyankin authored
-
John Swanson authored
* Make an internal API for retrieving stale content This introduces the `metabase.stale` module, which has one public function (so far): `metabase.stale/find-candidates`. This takes a set of `collection-ids`, a cutoff date, and pagination/sort info. Next, we introduce an HTTP API endpoint that will figure out the appropriate set of `collection-ids` for a given user/request, call this function, and return the results in the shape we want. Also: for e2e tests, we need a way to mark a card or dashboard as stale. I think the easiest way to do this is to just create a testing endpoint that we can call to update the `last_used_at` or `last_viewed_at` of the card/dashboard to set it to ~7 months ago. --------- Co-authored-by:
bryan <bryan.maass@gmail.com>
-
Uladzimir Havenchyk authored
-
Cal Herries authored
-
Nemanja Glumac authored
* Fix flaky reproduction 21559 * Improve the test structure and assertions * Remove the flaky tag
-
Raphael Krut-Landau authored
-
Uladzimir Havenchyk authored
* test: update testing-library packages * upgrade jest * drop useless types * drop babel-jest * fix types * fix canvas error
-
Denis Berezin authored
* Add SDK context header * Update naming * Update naming * Add client header for embedded context * Add client header for embedded context * Add sdk version header * Fix e2e * Fix storybook build * Refactor to inject version in build step * Fix unit tests * Self review * Fix e2e * Fix e2e * Fix e2e * Fix e2e * Fix e2e
-
Chris Truter authored
-
Oisin Coveney authored
-
Ngoc Khuat authored
-
Uladzimir Havenchyk authored
-
Uladzimir Havenchyk authored
-
- Jul 29, 2024
-
-
Luis Paolini authored
* Upgrade webpack * deduplicate webpack deps * add ^ --------- Co-authored-by:
Uladzimir Havenchyk <uladzimir.dev@gmail.com>
-
Aleksandr Lesnenko authored
* indicate in-progress exports * specs, public dashboards * add onbeforeunload hook when uploads are in-progress
-
Cal Herries authored
-
Ryan Laurie authored
* use mantine buttons for filter and summarize * Restore fancy color hover states * Add css modules * oh the cleverness of me * better var name --------- Co-authored-by:
Oisin Coveney <oisin@metabase.com>
-
Braden Shepherdson authored
Expands and refactors `metabase.util.memoize` to support better cross-platform memoization. **Better basic memoization** Use `clojure.core.memoize/memo` (and its clone in CLJS) rather than `clojure.core/memoize` for the "everything forever" strategy. **Bounded memoization** There are a few places (eg. `u/kebab-case-en`) where we want zero-overhead *hits* and expect the input space to be fixed. To guard against runaway memory usage, this **bounded** strategy dumps the entire cache when it overflows. It logs an INFO level note when that happens - the intent here is that the threshold should never actually get hit! **Fast JVM versions** In the special case where the function to memoize takes exactly 1 argument which is a valid map key, we can use `ConcurrentHashMap.computeIfAbsent` as the basis of the cache and have much less overhead. `fast-memo` and `fast-bounded` implement this in CLJ; in CLJS they just call `memo` and `bounded`.
-
Aleksandr Lesnenko authored
* infer id numeric columns as non metrics * update spec
-
Cal Herries authored
Co-authored-by:
Ngoc Khuat <qn.khuat@gmail.com>
-
Jeff Bruemmer authored
-
Nemanja Glumac authored
* Use function helpers * Only assert the resize down * Refactor repro 31701 * Remove flaky tag * Better organize describe blocks * Move custom `requestTimeout` config to the common block for resizing tests
-
Chris Truter authored
-
Chris Truter authored
-
Uladzimir Havenchyk authored
* test(jest): get rid of warnings about duplicate manual mock * update file-paths
-
github-automation-metabase authored
-
Kamil Mielnik authored
* Refactor dashboard helpers to TypeScript * Reuse existing helper * Refactor cy.createQuestionAndDashboard to a function helper - there was no good place to put it, so I also created new helpers/api directory - and I moved all helpers using cy.request (with 1 exception, where a CSV download helper also does a bunch of assertions) in there * Merge TS command definitions into a single file * Export types * Make dashboardDetails optional * Export StructuredQuestionDetails * Remove duplicated function * Extract createNativeQuestion to separate file - 1 exported helper per file, no exceptions! * Reuse const * Remove old definitions * Add missing export
-
- Jul 26, 2024
-
-
Denis Berezin authored
* Migrate DahboardSidebars to TS * More fixes for types
-
Alexander Polyankin authored
* Fix homepage dashboard being loaded everywhere * Fix * Fix
-
Oleksandr Yakushev authored
* perf: Optimize metabase.lib.schema.util/unique-uuids? * perf: Allocation improvements on sync-db/fingerprinting path
-