This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Jul 04, 2023
-
-
shaun authored
-
Mahatthana (Kelvin) Nomsawadi authored
-
- Jul 03, 2023
-
-
Aleksandr Lesnenko authored
-
Jesse Devaney authored
* fix heading input clipping * fix hover padding when hovering over resize handle * refactor CSS module to styled component wrapper - move all CSS logic into one file * refactor to use theme breakpoints * move single row styling to ReactMarkdownStyleWrapper * change padding only for single row text cards * fix text card clipping - adjust padding size based on breakpoints (proxy for grid row height) - adjust font size based on breakpoints - set styles based on grid mobile/desktop layout * refactor css colors * do not apply filter values to text cards in edit mode * adjust font-size for open sidebar * refactor font-size adjustment - move font-size adjustment into TextCardWrapper so - styles are applied in edit and saved mode - styles are applied to textarea as well as markdown preview * fix type error * fix text offset for markdown preview and textarea
-
metamben authored
Fixes #32081.
-
metamben authored
Fixes #32058.
-
Jerry Huang authored
-
Nemanja Glumac authored
The previous setting accidentally executed a scheduled job **every minute** on Sunday, when we actually wanted it to run only once on that day. This PR fixes it and it will now run at 10PM every Sunday. https://crontab.guru/#0_22_*_*_0 [ci skip]
-
Nick Fitzpatrick authored
* moving dashboard events 1-0-2 to 1-1-2 * update version number --------- Co-authored-by:
Ryan Laurie <iethree@gmail.com>
-
Aleksandr Lesnenko authored
-
Nick Fitzpatrick authored
-
Ryan Laurie authored
* update row chart measuring function * add test to check if the line chart retnders
-
Nemanja Glumac authored
* Fix Docker `latest` tag logic in the release workflow As noted in #32036, the current logic doesn't account for the existence of the N+1 RC tag when the current release is N. In other words, it didn't promote `v1.46.6` to the latest Docker tag because it included `v1.47.0-RC1` in the list of the relevant tags it compares against. This PR fixes that and closes #32036. **Before:** ``` Current version for v1.46.6 is { prefix: 'v1', feature: 46, maintenance: 6, build: NaN, isOSS: false, isEE: true, prerelease: false } Enumerating all git tag... Found total 414 tags Filtering for EE Found total 116 filtered tags Sorting tags to find the highest version numbers... Showing 20 tags with the highest versions... v1.47.0-RC1 v1.47.0-RC2 ---> v1.46.6 v1.46.5 v1.46.4 v1.46.3 v1.46.2 v1.46.1 v1.46.0 v1.46.0-RC1 v1.46.0-RC2 v1.46.0-RC3 v1.46.0-RC4 v1.45.4 v1.45.3.1 v1.45.3 v1.45.2.1 v1.45.2 v1.45.1 v1.45.0 The latest container image stays as v1.47.0-RC1 There is no need to tag the v1.46.6 container image as latest. ``` **After the fix:** ``` Current version for v1.46.6 is { prefix: 'v1', feature: 46, maintenance: 6, build: NaN, isOSS: false, isEE: true, prerelease: false } Enumerating all git tags... Found total 430 tags Filtering for EE which excludes prerelease tags... Found total 94 filtered tags Sorting tags to find the highest version numbers... Showing 20 tags with the highest versions... ---> v1.46.6 v1.46.5 v1.46.4 v1.46.3 v1.46.2 v1.46.1 v1.46.0 v1.45.4 v1.45.3.1 v1.45.3 v1.45.2 v1.45.1 v1.45.0 v1.44.7 v1.44.6.1 v1.44.6 v1.44.5 v1.44.4 v1.44.3 v1.44.2 Thus, the container image for v1.46.6 must be marked as latest. ``` * Remove unnecessary whitespace [ci skip]
-
- Jul 01, 2023
-
-
Cam Saul authored
-
- Jun 30, 2023
-
-
Cam Saul authored
-
Cam Saul authored
* Cljs/TS wrapper for join fields should handle :all and :none (#32006) * Split metadata into separate expected-columns method * MLv2 `joinable-columns`
-
Cam Saul authored
* Cleanup of options * Opaque join strategy * Opaque join strategies, part 2
-
Anton Kulyk authored
-
Cam Saul authored
* MLv2 table-or-card-metadata * Fix `join-fields` schema while we're at it * Fix cljs test * Remove conditional-in-conditional * Cleanup
-
Alexander Polyankin authored
-
Alexander Polyankin authored
-
Jerry Huang authored
* add titile to unsub * fix spacing
-
Uladzimir Havenchyk authored
* Fix TextWidget inconsistent behavior when all chars are removed * Revert "Fix TextWidget inconsistent behavior when all chars are removed" This reverts commit d17b530ab0d85b7d1fde5dc0566ebf0641bd5a46. * Add normalization for value in field filters * Add normalization for default value * Update frontend/src/metabase/query_builder/components/template_tags/TagEditorParam.jsx Co-authored-by:
Mahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev> * Add e2e test --------- Co-authored-by:
Mahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev>
-
Noah Moss authored
-
Anton Kulyk authored
* Convert `NotebookCell` to TS, add `forwardRef` * Move styled components to a styled file
-
Alexander Polyankin authored
-
Alexander Polyankin authored
-
Kamil Mielnik authored
Fix - Adding filter of summarized field grouped by latitude and longitude on a map causes table visualization error (#31952) * Fix #30058 * Add missing setting key * Add a unit test attempt at #30058 * Mock store instead of using deprecated MetabaseSettings.set * Remove LeafletGridHeatMap unit tests * Add e2e test for #30058 * Fix typing * Don't allow undefined "map-tile-server-url" * Tag the test with repo and issue id
-
Nemanja Glumac authored
Replay is adding a significant overhead and is making every single run fail. This is messing with our statistics and analytics. While the Replay.io team is working on some optimizations that would remove the overhead, we can significantly dial down the frequency of these runs. We'll switch to running them only once per week, on Sunday. For now...
-
- Jun 29, 2023
-
-
Nick Fitzpatrick authored
-
metamben authored
-
Luis Paolini authored
Debian Bookworm has Java 17 as the default and Java 11 has lots of steps to install. Going back to Bullseye with Node 18
-
Aleksandr Lesnenko authored
-
Mark Bastian authored
There was a discrepancy between TemplateTag id types as defined in metabase.lib.native (uuid) and metabase.mbql.schema (string). This PR makes string the uniform type for both. This results in errors when code using different specs for the same logical entity is used together. Here's an breaking example: ``` (let [card-id 328 ;; This is a valid card locally q (str "SELECT * FROM {{#" card-id "}} LIMIT 2") tt (lib-native/extract-template-tags q) res (qp/process-query {:database 1 :type :native :native {:query q :template-tags tt}})] (is (some? res))) ``` This will break since the tt generated id is a uuid but process-query expects a string id. Fixes #31252
-
Mark Bastian authored
-
Ryan Laurie authored
* require table primary key to enable basic actions * add unit tests * update model detail page test metadata
-
Nick Fitzpatrick authored
* remove disabled columns from isValid check * Applying column indexes before filtering * Adding test to GH 29140, updating test helpers in settings.cy.spec.js * Adjusting indexes when sorting via table header * e2e test adjustments
-
Noah Moss authored
-
Anton Kulyk authored
-
Ryan Laurie authored
-