Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. May 15, 2024
  2. May 10, 2024
  3. Apr 03, 2024
  4. Mar 11, 2024
  5. Feb 20, 2024
  6. Jun 20, 2023
  7. Jun 02, 2023
  8. Mar 14, 2023
  9. Feb 10, 2023
  10. Nov 09, 2022
  11. Sep 07, 2022
  12. Aug 26, 2022
  13. Aug 15, 2022
  14. Aug 09, 2022
  15. Aug 05, 2022
  16. Jun 14, 2022
  17. Jun 13, 2022
  18. Apr 27, 2022
  19. Mar 10, 2022
  20. Jan 06, 2022
  21. Dec 06, 2021
  22. Nov 23, 2021
  23. Nov 12, 2021
  24. Feb 15, 2021
    • dpsutton's avatar
      Semantic types pt 1 (special-type -> semantic-type rename) (#14780) · 80a88883
      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.
      80a88883
  25. Jan 13, 2021
  26. Oct 22, 2020
  27. Jun 19, 2020
  28. Jun 18, 2020
  29. Mar 04, 2020
  30. Dec 19, 2019
  31. Dec 18, 2019
  32. Aug 16, 2019
    • Maz Ameli's avatar
      Docs for 0.33 (#10414) · c69b092c
      Maz Ameli authored
      * init
      
      * more detail about summarizing
      
      * start of notebook mode docs
      
      * describe how to do joins
      
      * Screenshot updates for Enterprise Sandboxing
      
      * Updated screenshots for segment & metric
      
      * Added section on new auto-run settings
      
      * Added a note about keyboard shortcuts to run part of a query
      
      * wrap up notebook mode docs
      
      * update old screenshots and remove some unused ones
      
      * update Number viz screenshot
      
      * update a bunch of viz screenshots [ci skip]
      
      * more viz screenshot updating [ci skip]
      
      * misc edits to user guide [ci skip]
      
      * update the severely outdated Getting Started guide [ci skip]
      
      * update more screenshots and the x-rays doc [ci skip]
      
      * update Alerts docs and screenshots [ci skip]
      
      * update new SQL doc [ci skip]
      
      * small edit to writing sql doc [ci skip]
      
      * remove unused GSG images [ci skip]
      
      * update crufty admin screenshots [ci skip]
      
      * remove package-lock.json added by mistake [ci skip]
      
      * resolve review feedback [ci skip]
      
      * address kdoh's comments and prettier some pages
      c69b092c
  33. Jun 14, 2019
  34. May 29, 2019
  35. Oct 27, 2018
  36. Oct 12, 2018
  37. Jul 22, 2018
  38. Feb 27, 2018
    • Kim Røen's avatar
      Fix some formatting in the SQL parameters guide · ddfeb03b
      Kim Røen authored
      This wraps some uses of `{{}}` which was rendering ``` entities directly in the document with `{% raw %}` opening and closing tags.
      
      It also adds a line break that was missing, causing the new paragraph to be rendered as part of the previous bullet point.
      ddfeb03b
Loading