-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate to tools.dep * Cleanup developer guide * Remove code to get driver version This will be fixed in #40 * Install driver for running integration tests This avoids error java.lang.IllegalArgumentException: No method in multimethod 'connection-properties' for dispatch value: :exasol * Build frontend to fix failing integration tests ERROR in metabase.pulse.render.js-svg-test/combo-test (js_engine.clj:38) [PRO TIP] If this test fails, you may need to rebuild the bundle with `yarn build-static-viz` Uncaught exception, not in assertion. clojure.lang.ExceptionInfo: Javascript resource not found: frontend_client/app/dist/lib-static-viz.bundle.js source: "frontend_client/app/dist/lib-static-viz.bundle.js" * Upgrade to Metabase 0.43.1 * Remove features not supported in the latest release of metabase * Activate linting with clj kondo
- Loading branch information
1 parent
db7b7fc
commit daf3259
Showing
15 changed files
with
165 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,5 @@ | |
/target/ | ||
/.calva/ | ||
/maven_repository/ | ||
/.lein-failures | ||
/.eastwood | ||
/.nrepl-port |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{:paths | ||
["src" "resources"] | ||
|
||
:mvn/repos | ||
{"Exasol" {:url "https://maven.exasol.com/artifactory/exasol-releases"}} | ||
|
||
:deps | ||
{com.exasol/exasol-jdbc {:mvn/version "7.1.10"}} | ||
|
||
;; Build the driver with clojure -X:build | ||
:aliases | ||
{:build | ||
{:extra-deps {metabase/metabase-core {:local/root "../metabase"} | ||
metabase/build-drivers {:local/root "../metabase/bin/build-drivers"}} | ||
:exec-fn build-drivers.build-driver/build-driver! | ||
:exec-args {:driver :exasol | ||
:project-dir "." | ||
:target-dir "./target"}} | ||
|
||
; clojure -M:clj-kondo --lint src test --debug | ||
:clj-kondo | ||
{:replace-deps {clj-kondo/clj-kondo {:mvn/version "2022.04.25"}} | ||
:main-opts ["-m" "clj-kondo.main"]}} | ||
|
||
:oss | ||
;; JDBC driver isn't GPL-compatible | ||
{:replace-deps {}} | ||
:ee | ||
{}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# metabase-driver 1.0.1, released 2022-05-?? | ||
|
||
Code name: Adapt to Metabase 0.43.0 | ||
Code name: Adapt to Metabase 0.43.1 | ||
|
||
## Summary | ||
|
||
In this release we adapted the driver to Metabase version 0.43.0. This release was only tested with Metabase 0.43.0. If you use an older version of Metabase please use metabase-driver 1.0.0. | ||
In this release we adapted the driver to Metabase version 0.43.1 and migrated the build system to deps.edn. This release was only tested with Metabase 0.43.1. If you use an older version of Metabase please use metabase-driver 1.0.0. | ||
|
||
## Features | ||
|
||
* #38: Adapted driver to Metabase version 0.43.0 | ||
* #35: Migrated build system to deps.edn and adapted driver to Metabase version 0.43.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.