This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Aug 16, 2022
-
-
Case Nelson authored
-
Anton Kulyk authored
-
dpsutton authored
not a huge deal, just small logger stuff set in metabase.bootstrap
-
Aleksandr Lesnenko authored
* revert render throttling and remove the sidebar animation * skip the initial cards animation * extend comment
-
Ngoc Khuat authored
* fix incorrectly hash a fieldvalues for field that is not the field we use to define sandbox rule * appease clj-kondo * make the doc clearer * remove the _id destructring
-
- Aug 15, 2022
-
-
Jeff Bruemmer authored
-
Natalie authored
-
Alexander Polyankin authored
Revert "Fix #23689: Sandboxed group managers can't see other users in the People tab (#23825)" (#24760)
-
- Aug 12, 2022
-
-
Cam Saul authored
* Fix some small things * Add Kondo to deps.edn to be able to debug custom hooks from REPL * Fix macroexpansion hook for with-temp* without values * Test config (WIP) * More misc fixes * Disable :inline-def for tests * More misc fixes * Fix $ids and mbql-query kondo hooks. * Fix with-temporary-setting-values with namespaced symbols * More misc fixes * Fix the rest of the easy ones * Fix hook for mt/dataset * Horrible hack to work around https://github.com/clj-kondo/clj-kondo/issues/1773 . Custom linter for mbql-query macro * Fix places calling mbql-query with a keyword table name * Fix the last few errors in test/ * Fix errors in enterprise/test and shared/test * Fix driver test errors * Enable linters on CI * Enable unresolved-namespace linter for tests * Appease the namespace linter again * Test fixes * Enable unused-binding linter for test/ => 293 warnings * 259 warnings * 234 warnings * => 114 warnings * Fix the rest of the unused binding warnings in test/ * Fix unused binding errors in enterprise/backend/test * Fix unused binding lint errors in driver tests * Test fix
* Assure Kondo that something is in fact used -
Cam Saul authored
* Fix some small things * Add Kondo to deps.edn to be able to debug custom hooks from REPL * Fix macroexpansion hook for with-temp* without values * Test config (WIP) * More misc fixes * Disable :inline-def for tests * More misc fixes * Fix $ids and mbql-query kondo hooks. * Fix with-temporary-setting-values with namespaced symbols * More misc fixes * Fix the rest of the easy ones * Fix hook for mt/dataset * Horrible hack to work around https://github.com/clj-kondo/clj-kondo/issues/1773 . Custom linter for mbql-query macro * Fix places calling mbql-query with a keyword table name * Fix the last few errors in test/ * Fix errors in enterprise/test and shared/test * Fix driver test errors * Enable linters on CI * Enable unresolved-namespace linter for tests * Appease the namespace linter again * Test fixes
-
Ryan Laurie authored
* refactor FilterPopover to functional component
-
Aleksandr Lesnenko authored
* fix reset password flow * review
-
Alexander Polyankin authored
-
Dalton authored
* Add cards to the metadata godhead * Use source query result_metadata when calling fieldDimension.field() * Various unit test fixes * First pass at attempting to refactor fields method * Round 2: more aggressive refactor... * Third pass, improved comments + minor tweaks * Add unit tests for more scenarios * Remove metadata from cards in normalization fn * Fix broken tests * Separate field logic for int id fields and non-int id fields * Remove usage of old metadata.question method * Limit some logic to datsets/models * Don't default objects arg of copyObjects * Add instantiateQuestion unit test * revert unit test that no longer needs fixing * Dimension tweaks * fix unit test fixture
-
- Aug 11, 2022
-
-
Case Nelson authored
* Move writeback migrations to 45 * Empty commit to trigger GitHub Actions * [Actions] Simplify emitter schema model emitter_action was dropped since emitters just have a singular action and the join table was unecessary. emitter_action.action_id columns moved onto emitter table. Dropped CardEmitter and DashboardEmitter pre-insert, pre-update, pre-delete since they were used in tests only and normal operation would see the emitter inserted first. Since previous code may have 'orphaned' emitters without an action, we delete emitters without action to be safe. * Handle flakiness with geojson java.net.UnknownHostException errors (#24523) * Handle flakiness with geojson java.net.UnknownHostException errors In CI seems like we are getting errant errors: ```clojure geojson.clj:62 It validates URLs and files appropriately http://0xc0000200 expected: (valid? geojson) actual: #error { :cause "Invalid IP address literal: 0xc0000200" :via [{:type clojure.lang.ExceptionInfo :message "Invalid GeoJSON file location: must either start with http:// or https:// or be a relative path to a file on the classpath. URLs referring to hosts that supply internal hosting metadata are prohibited." :data {:status-code 400, :url "http://0xc0000200"} :at [metabase.api.geojson$valid_url_QMARK_ invokeStatic "geojson.clj" 62]} {:type java.net.UnknownHostException :message "0xc0000200" :at [java.net.InetAddress getAllByName "InetAddress.java" 1340]} {:type java.lang.IllegalArgumentException :message "Invalid IP address literal: 0xc0000200" :at [sun.net.util.IPAddressUtil validateNumericFormatV4 "IPAddressUtil.java" 150]}] ``` Not clear if this change has a hope of fixing it: if it doesn't resolve once its possible it is cached somewhere in the network stack, or it won't resolve if you ask again. But gonna give it a shot. Set the property `"networkaddress.cache.negative.ttl"` to `"0"` > networkaddress.cache.negative.ttl (default: 10) > Indicates the caching policy for un-successful name lookups from the name service. The value is specified as an integer to indicate the number of seconds to cache the failure for un-successful lookups. > A value of 0 indicates "never cache". A value of -1 indicates "cache forever". From https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/net/InetAddress.html in the hopes that we can try multiple times. Restores the original value after the test completes so we don't inadvertently change behavior elsewhere. If we get an error of java.net.UnknownHostException we try again if we have attempts remaining. If we get a boolean it means the ip resolution worked so we can rely on the response (checking if it resolves locally or not) * add a delay * comment out test * [Actions] Add emitter-usages hydration This allows the front end to inform users of dashboards or cards that will be affected before deleting actions. Adds an `emitter-usages` hydration that shows emitters that reference a specific action or `is_write` card. The shape of `emitter-usages` is `[{:type "dashboard" :id 1 :name "Dashboard Name"} {:type "card" :id 2 :name "Card Name"}]`. * Add tests for new hydrations * add docstrings to 2 public emitter usage functions Co-authored-by:
Cam Saul <github@camsaul.com> Co-authored-by:
dpsutton <dan@dpsutton.com> Co-authored-by:
Bryan Maass <bryan.maass@gmail.com>
-
dpsutton authored
-
Cam Saul authored
* Enable clj-kondo for driver namespaces * Fix CI command * Fix CI config (?) * Try hardcoding the driver directories in CI config * Fix some busted stuff * Enable the redundant fn wrapper linter * Appease the namespace linter
-
Aleksandr Lesnenko authored
-
Gustavo Saiani authored
-
Alexander Polyankin authored
-
- Aug 10, 2022
-
-
Nemanja Glumac authored
-
Case Nelson authored
* Move writeback migrations to 45 * Empty commit to trigger GitHub Actions * [Actions] Simplify emitter schema model emitter_action was dropped since emitters just have a singular action and the join table was unecessary. emitter_action.action_id columns moved onto emitter table. Dropped CardEmitter and DashboardEmitter pre-insert, pre-update, pre-delete since they were used in tests only and normal operation would see the emitter inserted first. Since previous code may have 'orphaned' emitters without an action, we delete emitters without action to be safe. * Handle flakiness with geojson java.net.UnknownHostException errors (#24523) * Handle flakiness with geojson java.net.UnknownHostException errors In CI seems like we are getting errant errors: ```clojure geojson.clj:62 It validates URLs and files appropriately http://0xc0000200 expected: (valid? geojson) actual: #error { :cause "Invalid IP address literal: 0xc0000200" :via [{:type clojure.lang.ExceptionInfo :message "Invalid GeoJSON file location: must either start with http:// or https:// or be a relative path to a file on the classpath. URLs referring to hosts that supply internal hosting metadata are prohibited." :data {:status-code 400, :url "http://0xc0000200"} :at [metabase.api.geojson$valid_url_QMARK_ invokeStatic "geojson.clj" 62]} {:type java.net.UnknownHostException :message "0xc0000200" :at [java.net.InetAddress getAllByName "InetAddress.java" 1340]} {:type java.lang.IllegalArgumentException :message "Invalid IP address literal: 0xc0000200" :at [sun.net.util.IPAddressUtil validateNumericFormatV4 "IPAddressUtil.java" 150]}] ``` Not clear if this change has a hope of fixing it: if it doesn't resolve once its possible it is cached somewhere in the network stack, or it won't resolve if you ask again. But gonna give it a shot. Set the property `"networkaddress.cache.negative.ttl"` to `"0"` > networkaddress.cache.negative.ttl (default: 10) > Indicates the caching policy for un-successful name lookups from the name service. The value is specified as an integer to indicate the number of seconds to cache the failure for un-successful lookups. > A value of 0 indicates "never cache". A value of -1 indicates "cache forever". From https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/net/InetAddress.html in the hopes that we can try multiple times. Restores the original value after the test completes so we don't inadvertently change behavior elsewhere. If we get an error of java.net.UnknownHostException we try again if we have attempts remaining. If we get a boolean it means the ip resolution worked so we can rely on the response (checking if it resolves locally or not) * add a delay * comment out test Co-authored-by:
Cam Saul <github@camsaul.com> Co-authored-by:
dpsutton <dan@dpsutton.com>
-
dpsutton authored
* `sql-editor-autocomplete-match-style` options for perf Large instances with 100ks of fields are choking on the select name from fields where name like "%search-term%`. Version in 43 was acceptable. This adds back the behavior in 43: prefix searching. Also adds ability to turn off if even the prefix search is burdensome. * Rename autocomplete-suggestion param `search` -> `substring` * support sql-editor-autocomplete-match-style on the FE * fix substring shows placeholder * Ensure using prefix style matching in e2e test * Make autocomplete style public * Rename defsetting to have "native-query" in name, not sql generally true. Consider mongo which has a native editor but no notion of SQL Co-authored-by:
Aleksandr Lesnenko <alxnddr@gmail.com>
-
Nemanja Glumac authored
* Fix flake in repro for 12928 * Refactor test for joins on tables - Merge repro for 12221 with the existing "base" test - Merge repro for 13468 with the existing "base" test * Remove deprecated `cy.server()` command * Remove tests that are not related to joins * Reproduce 11452 and 15570 using the existing test * Merge repros 13000 and 13649 together * Reproduce 13744 using the existing test * Merge two `joins` files together * Use the existing helper to open the products table
-
Alexander Polyankin authored
-
dpsutton authored
addresses https://nvd.nist.gov/vuln/detail/CVE-2022-31197 https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md > fix: CVE-2022-31197 Fixes SQL generated in PgResultSet.refresh() to > escape column identifiers so as to prevent SQL injection. > > Previously, the column names for both key and data columns in the > table were copied as-is into the generated SQL. This allowed a > malicious table with column names that include statement terminator > to be parsed and executed as multiple separate commands.
-
Gustavo Saiani authored
-
Nick Fitzpatrick authored
-
Jeff Bruemmer authored
-
Gustavo Saiani authored
-
Nemanja Glumac authored
-
Ngoc Khuat authored
add support for reference snippet with mongo
-
- Aug 09, 2022
-
-
Noah Moss authored
* initial stab at improving formatting for relative dates * get template tags working for cljs translations * get plurals working for cljs translations * cleanup * tests * revert attempt at translations test * add comment for trsn * fix reflection * address comments * fix cypress test
-
Nick Fitzpatrick authored
-
Ryan Laurie authored
* respect remapped display options * test remapped display values
-
Jeff Bruemmer authored
-
Gustavo Saiani authored
-
Ryan Laurie authored
-
Ariya Hidayat authored
-
Aleksandr Lesnenko authored
-