This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Mar 01, 2022
-
-
dpsutton authored
mostly unused bindings. Had a few redundant lets. One common pattern was a let binding for a read check but the resulting value was never used, just checked that we could read or write it. Removed that from a binding since it throws otherwise
-
- Feb 25, 2022
-
-
adam-james authored
* Adding tests in collections and card. Fixing some minor test things * Added Test for timeline event range selection via card API * Cleaned up a few TODO comments * Made the timestamp required when POST-ing a timeline-event * Remove unnecessary nesting of with-temp* forms * Moved Icons schema into timeline-event model This schema seems to be validating more than just the API, so we've moved it. * Added start/end to GET /api/timeline/:id Also cleaned up some unnecessary nesting in a card API test Added timeline range test in timeline API test ns too. * Parse timestamp when it exists in a timeline-event PUT We saw the db error presented in the FE when updating timeline events. This should fix that problem. * Add a test to ensure we can change timestamps via timeline-event PUT
-
- Feb 24, 2022
-
-
Howon Lee authored
Step 1 towards the long path towards whacking #708. We need an interface for describing the weird thing every RDBMS vendor did where they have their own special way of doing JSON columns, every single one of them
-
- Feb 23, 2022
-
-
Noah Moss authored
-
Cam Saul authored
* Rewrite add-migrated-collections * Add new tests for the new migrations * Truncate tables (removing values added by Liquibase migrations) before copying * Clean namespaces * Use TRUNCATE TABLE ... CASCADE for Postgres copy * Update test * Sort namespaces * Remove stray println * Fix Postgres TRUNCATE TABLE behavior * Disable DB constraints before truncating tables * Fix fussy postgres
-
Cam Saul authored
* Remove MetaBot Group * Fix missing :require * More fixes * Another fix
* change default sandboxed group_id * update group_ids Co-authored-by:Aleksandr Lesnenko <alxnddr@gmail.com>
-
Cam Saul authored
* Fix #20519 * Fix busted indentation
-
Cam Saul authored
* Don't consider :field :join-alias when deduplicating aliases * Unskip Cypress test
-
Ariya Hidayat authored
The previously set 120-second timeout in PR #19412 is apparently not sufficient, as admin-ee and sharing-ee still occasionally fail.
-
- Feb 22, 2022
-
-
aljkor authored
* ì changed to i * ì changed to i
-
- Feb 18, 2022
-
-
Cam Saul authored
-
- Feb 17, 2022
-
-
Noah Moss authored
-
Noah Moss authored
Co-authored-by:
Alexander Lesnenko <alxnddr@users.noreply.github.com>
-
adam-james authored
* Migrations for the new 'Annotate Useful Events' project Users will be able to create 'events' in timelines, which are accessible via collections. Two migrations are introduced to facilitate the new feature: timeline table, and event table. The following columns are presumed necessary based on the design document: ** TimeLine - id - name - description - collection_id - archived - creator_id - created_at - updated_by ?? - updated_at *** Event - id - timeline_id - name - description markdown (max length 255 for some reason) - date - time is optional - timezone (optional) - icon (set of 6) - archived status - created by - created at - created through: api or UI - modified by ?? - modified at * Changes to events schema - add icon onto timeline - make icon on event nullable - just move to a single timestamp on event, no boolean or anything - rename event table to `timeline_events` since "event" is so generic * dir-locals indentation * Timeline api and model - patched up the migration to make collection_id nullable since that is the root collection - followed the layout of api/metric and did the generic model stuff * Select keys with keywords, not destructured nils :( also, can't return the boolean from the update, but select it again * Enable the automatic updated_at * Boolean for "time matters" and string timezone column on events * clean up migration, rename modified_at -> updated_at for benefit of `:timestamped? true` bits * basic timeline event model namespace * Timeline Events initial API Just beginning the basics for the API for timeline events. - need to find a way to check permissions - have to still check if the endpoint is returning stuff properly * Singularize timeline_event tablename * Timeline events api hooked up * Singularize timeline event api namespace * unused comment * indent spec maps on routes * Make name optional on timeline PUT * Update collection api for timelines endpoints - add /root/timelines endpoint for when collection id is null - add /:id/timelines endpoint Created a hydration function to hydrate the timeline events when fetching timelines. * TimelineEvent permissions - crate a permissions objects set via the timeline's permissions * Move to using new permissions setup previously was explicitly checking permissions of the underlying timeline from the event, but now we just do the standard read/write check on the event, and the permissions set knows it is based on the permission set of the underlying timeline (which is based on the permissions set of the underlying collection) * Items api includes timelines * Strip of icon from other rows * Indices on timeline and timeline_event timeline access by collection_id timeline_event by both timeline_id and (timeline_id, timestamp) for when looking for events within a certain range. We will always have been narrowed by timeline ids (per the collection containing the question, or by manually enabling certain timelines) so we don't need a huge index on the timestamp itself. * Skeleton of range-based query * Initial timeline API tests Began with some simple Auth tests and basic GET tests, using a Collection with an id as well as the special root collection. * Fix docstring on api timeline namespace * Put timeline's events at `:events` not `timeline-events` * Add api/card/:id/timelines At the moment api/card/:id/timelines and api/collection/:id/timelines do the same thing: they return all of the timelines in the collection or in the collection belonging to the card. In the future this may drift so they share an implementation at the moment. * Put creator on timeline on api endpoints for timeline by id and timelines by card and collection * Hydrate creator on events Bit tricky stuff here. The FE wants the events at "events" not "timeline-events" i guess due to the hyphen that js can never quite be sure isn't subtraction. To use the magic of nested hydration `(hydrate timelines [:events :creator])`, the events have to be put at the declared hydration key. I had wanted the hydration `:timeline-events` for clarity in the code but want `:events` to be the key. But when you do this, the hydration thinks it didn't do any work and cannot add the creator. So the layout of the datastructure is tied to the name of the hydration key. Makes sense but I wish I had more control since `:events` is so generic. * Add include param check to allow timeline GET to hydrate w/ events. The basic check is in place for include=events in the following ways: GET /api/timeline/:id?include=events GET /api/collection/root/timelines?include=events If include param is omitted, timelines are hydrated only with the creator. Events are always hydrated with creator. * fix hyphen typo in api doc * Change schema for include=events to s/enum to enforce proper param Had used just a s/Str validation, which allows the include parameter value to be anything, which isn't great. So, switched it to an enum. Can always change this later to be a set of valid enums, similar to the `model` parameter on collection items. * Fixed card/:id/timelines failing w/ wrong arity The `include` parameter is passed to `timeline/timelines-for-collection` to control hydration of the events for that timeline. Since the card API currently calls this function too, it requires that parameter be passed along. As well, I abstracted the `include-events-schema` and have it in metabase.api.timeline. Not married to it, but since the schema was being used across timeline, collection, and card API, it seems like a good idea to define it in one place only. Not sure if it should be metabase.api.timeline or metabase.models.timeline * used proper migration numbers (claimed in migrations slack channel) * Add archived=true functionality There's one subtle issue remaining, and that is that when archived=true, :creator is not hydrated on the events. I'll look into fixing that. In the meantime, the following changes are made: - :events returs empty list `[]` instead of `null` when there are no events in a timeline - archived events can be fetched via `/api/timeline/:id?include=events&archived=true` - similarly, archived events can be fetched with: - `/api/collection/root|:id/timelines?include=events&archived=true` - `/api/card/:id/timelines?include=events&archived=true` Just note the caveat for the time being (no creator hydrated on events when fetching archived) Fix pending. * Altered the hydration so creator is always part of a hydrated event Adjusted the hydration of timelines as follows: - hydration always grabs all events - at the endpoint's implementation function, the timeline(s) are altered by filtering on archived true or false Not sure if this is the best approach, but for now it should work * Create GET endpoint for /api/timeline and allow archived=true Added a missed GET endpoint for fetching all the timelines (optionally fetch archived) * reformat def with docstring * Timeline api updated to properly filter archived/un-archived Use archived=true pattern in the query params for the timeline endpoint to allow FE to get what they need. Work in progress on the API tests too. * Timeline-events API tests Timeline Events API endpoint tests, at least the very basics. * Timeline Hydration w/ Events tests Added a test for Events hydration in the timeline API test namespace. * TimelineEvent Model test NS May be a bit unnecessary to test the hydrate function, but the namespace is there in case we need to add more tests over time. Also adjusted out a comment and added a library to timeline_test ns * Added metabase.models.timeline-test NS Once again, this may be a bit unnecessary as a test ns for now, but could be the right place to add tests if the feature grows in the future. * Clean up handling of archived - we only want to show archived events when viewing a timeline by id and specifically asking for archived events. Presumably this is some administrative screen. We don't want to allow all these options when viewing a viz as its just overload and they are archived for a reason. If FE really want them they can go by id of the timeline. Note it will return all events, not just the archived ones. - use namespaced keywords in the options map. Getting timelines necessarily requires getting their events sometimes. And to avoid confusion about the archived state, we have options like `:timeline/events?`, `:timeline/archived?`, `:events/start`, `:events/end`, and `:events/all?` so they are all in one map and not nested or ambiguous. * Clean up some tests noticable differences: timelines with archived=true return all events as if it is "include archived" rather than only show archived. * PUT /api/timeline/:id now archives all events when TL is archived We can archive/un-archive timelines, and all timeline events associated with that timeline will follow suit. This does lose state when, for example, there is a mix of archived/un-archived events, as there is no notion of 'archived-by' to check against. But, per discussion in the pod-discovery slack channel, this is ok for now. It is also how we handle other archiving scenarios anyway, with items on collections being archived when a collection is archived. * cleanup tests * Include Timeline and TimelineEvent in models * Add tt/WithTempDefaults impls for Timeline/TimelineEvent lets us remove lots of the `(merge defaults {...})` that was in the code. Defaults are ```clojure Timeline (fn [_] {:name "Timeline of bird squawks" :creator_id (rasta-id)}) TimelineEvent (fn [_] {:name "default timeline event" :timestamp (t/zoned-date-time) :timezone "US/Pacific" :time_matters true :creator_id (rasta-id)}) ``` * Add timeline and timeline event to copy infra * Timeline Test checking that archiving a Timeline archives its events A Timeline can be archived and its events should also be archived. A Timeline can also be unarchived, which should also unarchive the events. * Docstring clarity on apis * Remove commented out form * Reorder migrations * Clean ns clj-kondo ignores those but our linter does not * Correct casing on api schema for include * Ensure cleanup of timeline from test * DELETE for timeline and timeline-event * Poison collection items timeline query when is_pinned timelines have no notion of pinning and were coming back in both queries for pinned and not pinned. This adds a poison clause 1=2 when searching for pinned timelines since none are but they don't have a column saying that. * Clean up old comment and useless tests comment still said to poison the query when getting pinned state and that function had been added. Tests were asserting count = 2 and also the set of names had two things in them. Close enough since there are no duplicate names * Use TemporalString schema on timeline event routes Co-authored-by:
dan sutton <dan@dpsutton.com>
-
Cam Saul authored
* Rewrite add-databases-to-magic-permissions-groups * Add a test for v0.43.00-007 * Small test tweak.
-
Cam Saul authored
Dashboard Subscriptions *should* use `:default` param values. Dashboard QP should ignore them. (#20569)
-
- Feb 16, 2022
-
-
Cam Saul authored
* Rework add-admin-group-root-entry migration * Add test for the migration * Dump/load should not copy the root perms entry for the admin group
-
Cam Saul authored
* Remove add-users-to-default-permissions-groups data migration * Revert changes to Cypress tests * Revert unneeded change
-
- Feb 15, 2022
-
-
Cam Saul authored
* Replace metabase.db.migrations/copy-site-url-setting-and-remove-trailing-slashes with a Liquibase migration * Tweak comment * `setting`, not `settings` * Clean namespace * `key` has to be quoted for MySQL * Add tests for migrations v0.43.00-008 and v0.43.00-009 * fix new migration for MySQL 5.7
-
Cam Saul authored
Dashboard QP endpoints should ignore :default values and treat them as no value and compile Field filters to `1 = 1` (#20503) * Fix * More logging * Fix unbalanced parens * Tweak logging * Add another test * Tweak test to use :string/= * More logging * Updated fix for #20493 * Enable test * Try disabling the #19494 tests to see what happens. * Rework #19494 test
-
Noah Moss authored
-
Cam Saul authored
* Replace metabase.db.migrations/migrate-humanization-setting with a Liquibase migration * Apparently key has to be quoted these days in MySQL/MariaDB * Need to quote key in the preCondition as well * Fix merge conflicts
-
Cam Saul authored
* Embed query endpoints should handle operator filters with a single arg * PR feedback
-
Cam Saul authored
* Replace metabase.db.migrations/mark-category-fields-as-list with a Liquibase migration * Fix stray comma
-
Cam Saul authored
* Replace AOT Spark SQL deps with a `proxy` and a `DataSource` * Support `connection-details->spec` returning a `DataSource` * Remove target/classes * Don't need to deps prep drivers anymore * Fix duplicate `this` params in `proxy` methods; add `:test` alias for Eastwood to make it be a little quieter * Make sure to call `pool/map->properties` * Upgrade Hive JDBC driver version from 1.2.2 -> 3.1.2; Bump Spark SQL from 2.1.1 to 3.2.1 * Clean the namespaces * Don't need to register the a proxy JDBC driver since we're not even using it anymore * Fix Spark SQL :schema sync for newer versions * Remove unneeded override * Fix day-of-week extract for new :sparksql * Hive/Spark SQL needs to escape question marks inside QUOTED identifiers now
* Some minor SQL generation improvements to avoid duplicate casts * Revert change to debug test
-
- Feb 14, 2022
-
-
Bryan Maass authored
* for sample db do not allow certain updates - namely to engine in the model layer * only check for new schedules one time * remove unnecessary *current-user-id* binding in test - as per code review * Use `thrown-with-message?` to check for exceptions - Previously this would pass if db/update did _not_ throw an excetption, which is not what we want here.
-
Cam Saul authored
* Replace metabase.db.migrations/ensure-protocol-specified-in-site-url with a Liquibase migration * Quote `key` for MySQL/MariaDB
-
Cam Saul authored
* Add failing test for #15978 * Improved test * Add new metabase.driver.query-processor.escape-join-aliases QP middleware * Test fix
* Add reference to #20307 * Add some extra dox * Test fixes for BigQuery drivers * revert unneeded change * Fix :bigquery and :bigquery-cloud-sdk mixup * Test fixes * Test fix * Remove comment I meant to remove -
Cam Saul authored
* New site-uuid Setting for token checks * Move Setting to public-settings; it has to be define afer we define ::uuid-nonce * Test fix
-
- Feb 13, 2022
-
-
Cam Saul authored
* Fix source aliases for Fields from joins not being properly escaped * Tweak TODO comment * Disable the flaky tests when running driver tests * Rename the new macro * Dox * Remove unused :require
-
- Feb 11, 2022
- Feb 10, 2022
-
-
Michiel Borkent authored
* honeysql var improvements * Define routes * Define routes * define-routes improvement * honeysql helpers * honesql * abs in clojure 1.11 * fix logic unresolved vars * deprecated * deprecated var warnings * undo replace
-
Cam Saul authored
-
- Feb 09, 2022
-
-
Cam Saul authored
* Add org.quartz-scheduler/quartz as an explict dep and bump version from 2.17 -> 2.3.2 * Add no-op impl for `initialize` for our Quartz `ConnectionProvider`
-
- Feb 08, 2022
-
-
Cam Saul authored
* Simplify QP cache middleware * Fix hanging tests
-
Cam Saul authored
* Fix #9236 [WIP] * Revert unneeded changes * Only merge namespaced :options into result info * Revert unneeded changes * Everything is working
* Revert unneeded change * Fix #15578 part 2 * Fix #15578 (second attempt) * Test fixes * Sort namespaces * Clean namespaces * Add `:test` profile to `namespace-checker` to suppress log messages. * PR feedback * Fix namespaces * Fix docstring -
Jeff Evans authored
* Remove :bigquery driver Add "migration" to convert existing Database instances from :bigquery to :bigquery-cloud-sdk (with error log if using outdated OAuth mechanisms), by way of `normalize-db-details` Removing references to :bigquery from various places in the code * Remove from modules/drivers/deps.edn * Remove stuff from CircleCI that is running the old driver Remove `driver-switch-test` since there is no practical way to run this anymore (since we can't initialize the old driver) Remove buggy redef of `isa?` from `semantic-type-migration-tests` Co-authored-by:
Cam Saul <github@camsaul.com>
-
Howon Lee authored
Pursuant to issue #20332 - it was blanking out without settings set before
-
Cam Saul authored
Rework how the remappings middleware matches remapped to/from columns for explicit external (FK) remaps (#20009) * Fix #9236 [WIP] * Revert unneeded changes * Only merge namespaced :options into result info * Revert unneeded changes * Everything is working
* Revert unneeded change * Clean namespaces * Add `:test` profile to `namespace-checker` to suppress log messages. * PR feedback * Fix namespaces
-