Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. May 04, 2021
  2. Apr 09, 2021
  3. Apr 06, 2021
  4. Mar 23, 2021
  5. Mar 18, 2021
  6. Mar 13, 2021
  7. Mar 11, 2021
    • Jeff Evans's avatar
      Add support for connecting to Oracle with SSL (#15078) · 7b24bc98
      Jeff Evans authored
      Update Oracle driver to have the `ssl` (boolean) option, with the expectation that any keystore/truststore params have been set as JVM parameters
      
      Updating CircleCI config to allow for the following parameters to the `test-driver` orb:
      - `extra-env`: a string that will be prepended to the `lein test` invocation, in order to set environment variables specifically for that test run.  Expected to look like `VAR_NAME=a VAR_NAME_2=b`. Defaults to blank (i.e. nothing).
      - `test-selector`: a string that represents the Leiningen test [selectors](https://cljdoc.org/d/leiningen/leiningen/2.9.5/api/leiningen.test#test). Defaults to `:all` (i.e., run all tests).
      
      Adding RDS root CA truststore file to our resources so that CircleCI (and anyone else, really) can refer to it
      
      Defining new `be-tests-oracle-ssl-ee test-driver` task, and is identical to it except for the env vars required to connect via SSL instead (by specifying the RDS root CA trust store).  It only runs a few Oracle driver specific tests, not the full suite, since we are really only concerned with connectivity here.
      
      Updating Oracle driver docs to discuss relevant JVM params and configuration
      7b24bc98
  8. Feb 26, 2021
  9. Feb 17, 2021
  10. 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
  11. Feb 12, 2021
  12. Jan 29, 2021
  13. Jan 20, 2021
  14. Dec 22, 2020
  15. Oct 30, 2020
  16. Oct 22, 2020
  17. Oct 21, 2020
  18. Aug 27, 2020
  19. Aug 22, 2020
  20. Jul 22, 2020
  21. Jul 16, 2020
    • Console's avatar
      Docs for data model, localization, https redirect (#12876) · f8accbda
      Console authored
      
      * types list
      
      * column reorder
      
      * rephrase to fix formatting error
      
      * localization draft
      
      * rephrase to fix formatting error
      
      * localization draft
      
      * removed language settings from configuration settings
      
      * typo
      
      * global, field, question formatting settings
      
      * https redirect
      
      * rephrase to fix formatting error
      
      * localization draft
      
      * rephrase to avoid formatting issue
      
      * rebase
      
      * localization draft
      
      * removed language settings from configuration settings
      
      * typo
      
      * global, field, question formatting settings
      
      * types list
      
      * column reorder
      
      * https redirect
      
      * hide tables gif
      
      * updated screenshots and column reordering gif
      
      * fix hide tables gif
      
      * typo
      
      * learn about your data
      
      * metadata editing
      
      * settings for whole instance
      
      Co-authored-by: default avatarMaz Ameli <maz@metabase.com>
      
      * contraction
      
      Co-authored-by: default avatarMaz Ameli <maz@metabase.com>
      
      * language selection
      
      Co-authored-by: default avatarMaz Ameli <maz@metabase.com>
      
      * gerunding
      
      Co-authored-by: default avatarMaz Ameli <maz@metabase.com>
      
      * full stop
      
      Co-authored-by: default avatarMaz Ameli <maz@metabase.com>
      
      Co-authored-by: default avatarMaz Ameli <maz@metabase.com>
      f8accbda
  22. Jul 13, 2020
  23. Jul 02, 2020
  24. Jun 19, 2020
  25. Jun 17, 2020
  26. Apr 20, 2020
  27. Mar 31, 2020
  28. Feb 21, 2020
  29. Jan 31, 2020
  30. Jan 06, 2020
  31. Dec 18, 2019
    • hansen's avatar
      Docs fixes and clarification of versions and Field Filters (#11117) · cc9525f9
      hansen authored
      
      * Docs minor fixes (and prettier) [ci skip]
      
      * old FAQ move-text and Field Filter schema requirement [ci skip]
      
      * Try to fix Server-Side Analytics table in information-collection.md [ci skip]
      
      * Note about minimum MySQL version for application data [ci skip]
      
      * Somehow version got changed when merging [ci skip]
      
      * Maz suggestion: Update docs/operations-guide/configuring-application-database.md
      
      Co-Authored-By: default avatarMaz Ameli <maz@metabase.com>
      
      * Maz suggestion: Update docs/operations-guide/configuring-application-database.md [ci skip]
      
      Co-Authored-By: default avatarMaz Ameli <maz@metabase.com>
      
      * Maz suggestion: Update docs/users-guide/13-sql-parameters.md [ci skip]
      
      Co-Authored-By: default avatarMaz Ameli <maz@metabase.com>
      
      * Maz suggestion: Update docs/users-guide/13-sql-parameters.md [ci skip]
      
      Co-Authored-By: default avatarMaz Ameli <maz@metabase.com>
      
      * Maz suggestion: Update docs/users-guide/13-sql-parameters.md [ci skip]
      
      Co-Authored-By: default avatarMaz Ameli <maz@metabase.com>
      
      * Maz suggestion: Restore /docs/faq.md - will be a PR for another day [ci skip]
      cc9525f9
  32. Oct 31, 2019
  33. Sep 26, 2019
  34. Sep 04, 2019
  35. Aug 28, 2019
  36. Aug 23, 2019
    • Walter Leibbrandt's avatar
      MySQL additions to troubleshooting guide (#10706) · 04c4acb1
      Walter Leibbrandt authored
      * Log database connection error before humanizing it
      
      The original, non-humanized error message may contain clues regarding the
      error state, that might get lost in the humanization process.
      
      * Log complete error at error log level
      
      * Remove trailing colons from headings
      
      * Reformat heading
      
      * Add MySQL authentication troubleshooting
      
      * Typo
      
      * Reference MySQL 8 caveat in new MySQL section of admin guide
      
      * Fix URL to troubleshooting guide section
      
      * Update MySQL admin guide text
      
      * "Fix" troubleshooting link
      04c4acb1
  37. Aug 21, 2019
Loading