Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Jun 02, 2023
  2. Feb 10, 2023
  3. Nov 09, 2022
  4. Sep 07, 2022
  5. Aug 26, 2022
  6. Aug 15, 2022
  7. Aug 09, 2022
  8. Aug 05, 2022
  9. Jun 14, 2022
  10. Jun 13, 2022
  11. Apr 27, 2022
  12. Mar 10, 2022
  13. Jan 06, 2022
  14. Dec 06, 2021
  15. Nov 23, 2021
  16. Nov 12, 2021
  17. 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
  18. Jan 13, 2021
  19. Oct 22, 2020
  20. Jun 19, 2020
  21. Jun 18, 2020
  22. Mar 04, 2020
  23. Dec 19, 2019
  24. Dec 18, 2019
  25. 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
  26. Jun 14, 2019
  27. May 29, 2019
  28. Oct 27, 2018
  29. Oct 12, 2018
  30. Jul 22, 2018
  31. 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
  32. Aug 14, 2017
  33. Aug 11, 2017
  34. May 08, 2017
  35. Mar 21, 2017
  36. Mar 20, 2017
  37. Aug 05, 2016
  38. Jul 27, 2016
Loading