Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Aug 30, 2024
    • Ngoc Khuat's avatar
      [notification] webhook for alert (#45201) · d897f201
      Ngoc Khuat authored
      
      * [notification] New method: `channel/can-connect?` (#44955)
      
      * [notification] Channel APIs (#45207)
      
      * [notification] namespaced channel type (#45527)
      
      * [Notification] Render alert for http channel (#45545)
      
      * [notification] Add channel description (#45840)
      
      * [notification] update API to enable http channels for alert (#45839)
      
      * [Notification] Remove channel details for users without write perms (#46034)
      
      * [Notification] Serdes channel (#46031)
      
      * [Notification] Update http details schema (#45960)
      
      * [Notification] Deactivate channels will delete PulseChannel (#46115)
      
      * [Notification] audit log for channel create and update (#46113)
      
      * [Notification] Disallow undefined key for http channel details (#46712)
      
      * [Notification] Handle channel name conflicts (#46818)
      
      * Webhooks Admin Section (#46194)
      
      * [notification] Fix test pulse endpoint does not work properly for http channels (#46474) (#47050)
      
      * [Notification] Fix unable to update multiple channels per type (#47111)
      
      * [Notification] Record Task History when pulse sends channel message (#46218)
      
      * Enabling Webhook Alerts (#47022)
      
      * [Notification] fix cyclic deps (#47379)
      
      * [notification] channel serdes spec (#47386)
      
      Co-authored-by: default avatarNick Fitzpatrick <nick@metabase.com>
      Unverified
      d897f201
  2. Aug 29, 2024
    • bryan's avatar
      Static embed dashboard and question endpoints (#47270) · b0dbb38e
      bryan authored
      
      * entity id translation + tests
      
      * add api level test
      
      * simplify definition of eid-table->model + add test
      
      * update tests to take keywords
      
      * improve comment
      
      * generate the eid-table->model map
      
      * delete now-obsolete test
      
      * make it work in oss
      
      * put the resulting response into a key, so we can add more information later
      
      * formatting
      
      * use model names without the model/ prefix as keys
      
      * Creates list of `api/model->db-model`
      
      - update keys for util/entity_id request
      - update shape of util/entity_id response
      - add test for not-found eids
      
      * formatting
      
      * Respond to code review feedback
      
      * entity-ids work on /embed/{card,dashboard}* routes
      
      * make entity id translation work for all tokens
      
      * Merge branch 'static-embed-dashboard-and-question-endpoints' of github.com:metabase/metabase into static-embed-dashboard-and-question-endpoints
      
      * massage schema. add tons of tests
      
      * decode more eids
      
      * test alignment
      
      * don't require ns inside of itself :think:
      
      * make the test functions to create tokens better
      
      * bring back `dashboard-url`
      
      ---------
      
      Co-authored-by: default avatarOisin Coveney <oisin@metabase.com>
      Unverified
      b0dbb38e
    • Dennis Schridde's avatar
      Hide attached DWH database details (#47247) · 592360c9
      Dennis Schridde authored
      == Goal ==
      
      Hide attached DWH database details from anyone incl. admins:
      * Do not show them in the UI
      * Do not permit to change them
      * Do not serialize them
      
      The aim is that customers cannot gain access to (parts of) credentials,
      and they cannot break a feature they are paying for by changing
      connection details.
      
      == Implementation ==
      
      The Metabase backend already contains provisions in the implementation
      of `metabase.models.interface/to-json` for `:model/Database` to hide the
      `details` of the database in HTTP responses, if the user lacks write
      permission on the database.  We utilize this by adding an
      `is_attached_dwh` column to the `database` table and rejecting
      `metabase.models.interface/can-write?` when this flag is enabled.  In
      the "admin" UI, we show a replacement text instead of the edit form when
      the flag is set.  (It might be correct to show this whenever `details`
      is absent.  See below for possible follow-up work.)
      
      However, several sections of the frontend code expected the `details`
      field to always be present.  In order to make `details` optional, as the
      backend seems to handle it, we fix the respective code to treat this
      case in the way that appears appropriate in the context.
      
      Database details are already generally excluded from H2 dump snapshots
      (see `metabase.cmd.copy/*copy-h2-database-details*`), thus nothing
      changes there.
      
      == How to test ==
      
      === New behaviour ===
      
      Setting the `is_attached_dwh` field hides the database details:
      
      1. Configure a database as described in https://www.metabase.com/docs/latest/configuring-metabase/config-file#databases.
         - In addition to the fields you would normally set, also set
           `is_attached_dwh: true`.
         - This also works when adding this flag to a database that previously
           did not have this flag set.
      2. Start your Metabase instance.
      3. Verify the database shows up in the "admin" section
         (`/admin/databases`).
      4. Verify that clicking the database to see its details only reveals
         "This database cannot be modified."
      5. Verify that responses from the backend do not include a `details`
         field for this database.
      
      === Original behaviour ===
      
      Behaviour without setting the `is_attached_dwh` field is unchanged:
      
      1. Configure a database as described in https://www.metabase.com/docs/latest/configuring-metabase/config-file#databases.
         - Only set the fields you would normally set.  Do not set
           `is_attached_dwh` (or set it to `false`).
      2. Start your Metabase instance.
      3. Verify the database shows up in the "admin" section
         (`/admin/databases`).
      4. Verify that clicking the database to see its details only reveal the
         regular edit form, showing connection fields like `host`, `user`,
         etc. with the values you configured.
      
      == How this will be rolled out ==
      
      1. Upgrade existing Metabase Cloud instances with data warehouse to a
         Metabase version that supports `is_attached_dwh`.
      2. Set `is_attached_dwh` in the database section of the config file for
         Metabase Cloud instances with a data warehouse.
      
      == Possible follow-up work ==
      
      In https://github.com/metabase/metabase/issues/25715, absent
      `database.details` was identified as a bug.  Since then, `details` was
      made `NOT NULL` in the application database, so this bug can no longer
      occur.  However, today backend responses can be missing the `details`
      field, if the current user lacks write permission to the database
      setting (see above).  Fully re-evaluating the fix to #25715 in this
      context is outside the scope of this PR.
      
      Closes: https://github.com/metabase/harbormaster/issues/5051
      Unverified
      592360c9
    • John Swanson's avatar
      Fixup backported migrations (#47398) · b0d9bc53
      John Swanson authored
      These migrations will be backported to v49.
      
      Three changes:
      
      - update IDs/locations of the migrations to v49 vs v51
      
      - add one preCondition (when adding the foreign key constraint)
      
      - add `onFail: MARK_RAN` to the index preconditions. I forgot this
      before, so it blows up when the precondition doesn't hold.
      Unverified
      b0d9bc53
    • Ngoc Khuat's avatar
      Fix failed to backfill cache config due to number overflow (#47390) · 9adbbb9a
      Ngoc Khuat authored
      
      * handle cache config overflowed
      
      * fix root too
      
      * do not comment out test
      
      * make cljfmt happy
      
      ---------
      
      Co-authored-by: default avatarAlexander Solovyov <alexander@solovyov.net>
      Unverified
      9adbbb9a
    • Noah Moss's avatar
      Exclude inactive tables from the perms cache, and block queries over inactive... · 37162aa2
      Noah Moss authored
      Exclude inactive tables from the perms cache, and block queries over inactive tables in the QP (#47363)
      
      Unverified
      37162aa2
    • metamben's avatar
      Make metric metadata keep the metric's name (#47313) · f2ef2de9
      metamben authored
      * Make metric metadata keep the metric's name
      
      This is a fix for the problem reported in #40355, which is fixed separately for v50 and backported to v49.
      
      * Patch broken test
      
      * Normalize dataset-query
      
      * Normalize legacy queries only
      Unverified
      f2ef2de9
    • Ngoc Khuat's avatar
      Fix formatting on master (#47382) · 5d4d797d
      Ngoc Khuat authored
      Unverified
      5d4d797d
    • Ngoc Khuat's avatar
      Record field usage (again) (#46704) · 1ccdce4c
      Ngoc Khuat authored
      Unverified
      1ccdce4c
  3. Aug 28, 2024
  4. Aug 27, 2024
  5. Aug 26, 2024
    • appleby's avatar
    • Chris Truter's avatar
      Track query analysis failures (#47216) · f984a3e0
      Chris Truter authored
      Unverified
      f984a3e0
    • John Swanson's avatar
      Don't encrypt boolean settings (by default) (#47179) · da2a0a1b
      John Swanson authored
      * Don't encrypt boolean settings (by default)
      
      We have tooling to disable encryption on settings even when the
      `MB_ENCRYPTION_SECRET_KEY` is set. Turn it on by default for all boolean
      settings, which don't need to be encrypted.
      
      I also optimized the code that decrypts settings on startup because I
      didn't want to delay startup if someone had set a bunch of boolean
      settings. With 20 set, the old version added about 200+ ms to startup,
      about 10ms per boolean setting, whether or not it was encrypted or in
      the DB already. The optimized version selects all the never-encrypt
      values from the database at once (a bit silly, but we also just exclude
      raw `true` and `false` values so we don't bother checking them) and
      updates them if they're encrypted - this adds ~40ms to startup with 20
      encrypted boolean settings (about 2ms per boolean setting) and ~5ms to
      startup on subsequent runs, when no encrypted values are in the DB.
      Unverified
      da2a0a1b
    • Braden Shepherdson's avatar
      [MBQL lib] Disable expression type checking entirely (#47245) · 13983247
      Braden Shepherdson authored
      This testing is too strict to support some legitimate use cases that
      have no workaround at present. We can bring back this type-checking
      eventually, once it's possible to correctly express things like
      automatic coercion of strings to numbers in `SUM` aggregations.
      
      Fixes #44431.
      Unverified
      13983247
    • John Swanson's avatar
      Much better collection permission performance (#46942) · af6d6e7f
      John Swanson authored
      There are a few separate changes here:
      
      - Migrations: add and populate indexed columns perm_value, perm_type, and collection_id to permissions
      
      These fields allows us to efficiently run queries based on collection permissions in the DB without string manipulation. Keeping the table as permissions allows us to do this migration in-place. Note that in some cases collections may have been deleted from the database without deleting the associated permissions row (since there was no foreign key before). We need to be defensive here: if we have a permissions row without a corresponding collection, delete the row before running the rest of the migration.
      
      - Write perm_value, perm_type, and collection_id for new collection permissions
      
      A very simple before-insert method sets these fields before a collection permission is written to the DB.
      
      - Replace collection/permissions-set->visible-collection-ids and collection/visible-collection-ids->honeysql-filter-clause with collection/honeysql-filter-clause
      
      Previously, just about everywhere we used permissions-set->visible-collection-ids, what we were essentially doing was an in-app join: select all the collection IDs you have permission on, then convert it to a SQL clause like WHERE collection_id IN ( all of those collection IDs).
      
      Replace both of these with honeysql-filter-clause, which uses the new fields we added to permissions above to construct a honeysql filter representing "all the collections I have permissions on", without needing to round-trip them to the application and back to the DB.
      
      Of course, we can then write a function visible-collection-ids, which uses honeysql-filter-clause, for those cases where we do actually need the whole bunch in the application (we use this, for example, when constructing the effective-location for a collection).
      
      I also added one more toggle to the VisibilityConfig that's passed into the honeysql-filter-clause (and used to be passed to permissions-set->visible-collection-ids), allowing you to select only the effective children of some collection.
      Unverified
      af6d6e7f
    • metamben's avatar
      Support dashboard filters targeting multiple stages in QP (#46935) · 8b1f8840
      metamben authored
      
      * [MBQL lib] Map dashboard filters to last stage w/aggregations
      
      Originally we used the last stage's columns for dashboard filters, but
      then if you eg. use a custom expression to clean up the results of the
      aggregation, then you can't filter at the most useful spot - before the
      aggregations.
      
      Fixes #19744. Related to #26244, #33958.
      
      * Add stage-number option to the dimension not to the field
      
      * Remove FE changes
      
      * Support negative stage numbers
      
      * Add tests for multi-stage parameter expansion
      
      * Specify schema for dimension options
      
      * Fix legacy MBQL schema
      
      * Append stage when running cards with top level summary
      
      * Fix schema
      
      * Only ensure filter stage when the parameters say it's used
      
      * Implement ensure-filter-stage
      
      * Format clj
      
      * Add ensure-filter-stage test
      
      ---------
      
      Co-authored-by: default avatarBraden Shepherdson <braden@metabase.com>
      Unverified
      8b1f8840
    • Noah Moss's avatar
    • lbrdnk's avatar
      Fix `DateTimeRange` substitution for open ranges (#47175) · b75577b5
      lbrdnk authored
      
      * Fix DateTimeRange substitution for open ranges
      
      * Add E2E repro for #47172
      
      * cljfmt
      
      * Add test for datetime column
      
      * Update range boundary for open range
      
      * Update test names
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarKamil Mielnik <kamil@kamilmielnik.com>
      
      * Fix e2e
      
      ---------
      
      Co-authored-by: default avatarNemanja <31325167+nemanjaglumac@users.noreply.github.com>
      Co-authored-by: default avatarKamil Mielnik <kamil@kamilmielnik.com>
      Unverified
      b75577b5
  6. Aug 23, 2024
  7. Aug 22, 2024
  8. Aug 21, 2024
Loading