This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Sep 11, 2024
-
-
Jeff Bruemmer authored
-
- Aug 30, 2024
-
-
Jeff Bruemmer authored
-
- Aug 22, 2024
-
-
Jeff Bruemmer authored
-
- Jun 19, 2024
-
-
Alex Yarosh authored
* docs: change paid to pro/enterprise * Apply suggestions from code review Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com> --------- Co-authored-by:
Jeff Bruemmer <jeff.bruemmer@gmail.com>
-
- Jun 05, 2024
-
-
metamben authored
-
- May 10, 2024
-
-
Cam Saul authored
* Remove unused `metabase.api.transform` * Copy the deps graph improvements from my other PR * New combined X-Rays API namespace * Fix kondo error
-
- Mar 20, 2024
-
-
metamben authored
* Rename :model/Metric to :model/LegacyMetric * Rename ::lib.schema.metadata/metric tp ::lib.schema.metadata/legacy-metric * Rename models.metric/Metric to models.metric/LegacyMetric * Move /api/metric endpoints to /api/legacy-metric
-
- Feb 02, 2024
-
-
Jeff Bruemmer authored
-
- Jan 24, 2024
-
-
Jeff Bruemmer authored
-
Jeff Bruemmer authored
-
- Jan 11, 2024
-
-
Jeff Bruemmer authored
-
- Nov 21, 2023
-
-
Jeff Bruemmer authored
-
- Jun 21, 2023
-
-
Jeff Bruemmer authored
-
- May 24, 2023
-
-
Jeff Bruemmer authored
-
- May 23, 2023
-
-
Kyle Doherty authored
* remove activity frontend * remove the activity page code * remove GET api/activity/ route + tests * regen dox for activity routes - Not for GET /api/activity/ which has been removed. * nix more things only used for GET /api/activity/ * pull out more only-used-for-get-api/activity/ code * force namespace to be loaded (?) to be found --------- Co-authored-by:
Aleksandr Lesnenko <alxnddr@gmail.com> Co-authored-by:
Bryan Maass <bryan.maass@gmail.com> Co-authored-by:
Aleksandr Lesnenko <alxnddr@users.noreply.github.com>
-
- Apr 13, 2023
-
-
Jeff Bruemmer authored
-
- Jan 04, 2023
-
-
Jeff Bruemmer authored
-
- Dec 06, 2022
-
-
Jeff Bruemmer authored
-
- Oct 17, 2022
-
-
Jeff Bruemmer authored
-
- Sep 28, 2022
-
-
Jeff Bruemmer authored
-
- Sep 26, 2022
-
-
Jeff Bruemmer authored
-
- Sep 20, 2022
-
-
Jeff Bruemmer authored
* remove toc generation from api docs * update api docs * update test
-
- Sep 08, 2022
-
-
Jeff Bruemmer authored
-
- May 18, 2022
-
-
Jeff Bruemmer authored
-
- May 13, 2022
-
-
Jeff Bruemmer authored
-
- May 12, 2022
-
-
Cam Saul authored
-
- May 03, 2022
-
-
Jeff Bruemmer authored
-
- Feb 22, 2022
-
-
aljkor authored
* ì changed to i * ì changed to i
-
- Feb 03, 2022
-
-
Cam Saul authored
* Rework QP.dashboard to expect dashcard-id * Update /api/dashboard endpoints * Rework public endpoints for running queries for Dashcards * Tweak parameter order for Dashboard endpoints for consistency * Pulse should pass Dashcard ID * Embed should pass Dashcard ID * Unskip cypress test * Update API documentation * Update endpoints and pass dashcardId to endpoint fns * Update cypress tests that reference previous endpoint * Update placement of pivot in endpoint * Update another endpoint + more e2e fixes * update QB to hold onto dashcardId like it does with dashboardId * Address PR feedback Co-authored-by:
Dalton Johnson <daltojohnso@users.noreply.github.com>
-
- Jan 20, 2022
-
-
Cam Saul authored
-
- Sep 23, 2021
-
-
Jeff Bruemmer authored
* update api doc gen code * update test
-
- Sep 14, 2021
-
-
Jeff Bruemmer authored
* update API docs format * account for other terminal punctuation * clarify api namespace target * update schema test, add-period test * update period test * parens * test endpoint-section * cleanup * Cam edits Co-authored-by:
Cam Saul <1455846+camsaul@users.noreply.github.com> * trim whitespace * file newlines * Sort namespaces Co-authored-by:
Cam Saul <1455846+camsaul@users.noreply.github.com> Co-authored-by:
Cam Saul <github@camsaul.com>
-
- Jul 30, 2021
-
-
Cam Saul authored
-
- Jul 27, 2021
-
-
Cam Saul authored
-
- May 10, 2021
-
-
Noah Moss authored
* Add deny list of common passwords * replace filtered pw list with full list * switch to using a FileReader to check password line-by-line * bypass deny list if complexity is set to easy * fix tests * more test fixes and remove unneeded ns * fix typos * fix reflection warning * needed to import File * fix final tests, and update docs to reflect change * address initial review comments * fix build after removing import statement * address more review comments * use InputStreamReader to read password file in JARs
-
- Apr 29, 2021
-
-
Luis Paolini authored
-
Luis Paolini authored
-
- Mar 05, 2021
-
-
Luis Paolini authored
* Update endpoint documentation * Adding the API key documentation at the endpoint level * Add all API changes
-
- Feb 15, 2021
-
-
dpsutton authored
* Semantic types migration * Fixup for basic querying * Remove the relation type migration. it makes the diff far too hard at the moment. need to be able to just move everything from special_type -> semantic_type and then correct the few that look at it to care about the effective type. the PK/FK stuff gets really invasive and needs to be in its own much smaller changeset * Just rename special_type -> semantic_type for first change * Special type -> semantic type * special-type -> semantic-type * SpecialType -> SemanticType * special type -> semantic type mostly in documentation, docstrings, etc * Fix tests which relied on order of sets database position was annotated by map-index'ing over the set. changing `:special-type` to `:semantic-type` changed the order of the seq produced from it. * special -> semantic in schema_metadata * Tim is awesome: Undo overeager special->semantic in docstrings * Un-rename semantic_type in data_migrations These migrations are run unless a migrations table marks them as already having run. If they haven't run, then the db is older and the column is special_type most likely. So we let them run as `:special_type` and add some error handling to the migration runner that is _opt in_. ```clojure (defmigration ^{:author "camsaul", :added "0.20.0", :catch? true} migrate-field-types ... ) (try (@migration-var) (catch Exception e (if catch? ;; catch? from metadata (log/warn (format "Data migration %s failed: %s" migration-name (.getMessage e))) (throw e)))) ``` * Fix merged master changes just accepted their changes and fixed up rather than fix conflicts.
-
- Oct 22, 2020
-
-
flamber authored
-