Skip to content

Commit

Permalink
Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Oct 4, 2022
1 parent f25df51 commit 8ae8b39
Show file tree
Hide file tree
Showing 40 changed files with 43 additions and 46 deletions.
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{:mvn/version "1.3.6"}

org.slf4j/slf4j-nop
{:mvn/version "2.0.2"}}
{:mvn/version "2.0.3"}}

:aliases
{:depstar
Expand Down Expand Up @@ -80,10 +80,10 @@
:outdated
{:replace-deps
{com.github.liquidz/antq
{:mvn/version "2.1.927"}
{:mvn/version "2.1.932"}

org.slf4j/slf4j-nop
{:mvn/version "2.0.2"}}
{:mvn/version "2.0.3"}}

:main-opts
["-m" "antq.core"
Expand Down
2 changes: 1 addition & 1 deletion dev/blaze/dev.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[clojure.repl :refer [pst]]
[clojure.spec.test.alpha :as st]
[clojure.tools.namespace.repl :refer [refresh]]
[java-time :as time]
[java-time.api :as time]
[taoensso.timbre :as log])
(:import
[com.github.benmanes.caffeine.cache Cache]))
Expand Down
2 changes: 1 addition & 1 deletion dev/blaze/dev/tx_log.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(:require
[blaze.core :refer [system]]
[blaze.db.tx-log :as tx-log]
[java-time :as time]))
[java-time.api :as time]))


(def tx-log
Expand Down
2 changes: 1 addition & 1 deletion modules/byte-buffer/deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:deps
{com.google.protobuf/protobuf-java
{:mvn/version "3.21.6"}}
{:mvn/version "3.21.7"}}

:aliases
{:test
Expand Down
2 changes: 1 addition & 1 deletion modules/byte-string/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{:mvn/version "31.1-jre"}

com.google.protobuf/protobuf-java
{:mvn/version "3.21.6"}
{:mvn/version "3.21.7"}

com.fasterxml.jackson.core/jackson-databind
{:mvn/version "2.13.4"}}}
2 changes: 1 addition & 1 deletion modules/cassandra/src/blaze/cassandra/config.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns blaze.cassandra.config
(:require
[clojure.string :as str]
[java-time :as time])
[java-time.api :as time])
(:import
[com.datastax.oss.driver.api.core.config OptionsMap TypedDriverOption]
[java.net InetSocketAddress]))
Expand Down
2 changes: 1 addition & 1 deletion modules/cassandra/test/blaze/cassandra/config_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[blaze.cassandra.config :as config]
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest are testing]]
[java-time :as time])
[java-time.api :as time])
(:import
[com.datastax.oss.driver.api.core.config OptionsMap TypedDriverOption]
[java.net InetSocketAddress]))
Expand Down
2 changes: 1 addition & 1 deletion modules/cql/src/blaze/elm/date_time.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[blaze.elm.protocols :as p]
[blaze.fhir.spec.type]
[blaze.fhir.spec.type.system :as system]
[java-time :as time])
[java-time.api :as time])
(:import
[blaze.fhir.spec.type OffsetInstant]
[blaze.fhir.spec.type.system DateTimeYear DateTimeYearMonth DateTimeYearMonthDay]
Expand Down
2 changes: 1 addition & 1 deletion modules/cql/src/blaze/elm/expression_spec.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[blaze.elm.expression :as expr]
[blaze.fhir.spec]
[clojure.spec.alpha :as s]
[java-time :as time]))
[java-time.api :as time]))


(s/def ::now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[clojure.test :as test :refer [are deftest is testing]]
[clojure.test.check.properties :as prop]
[cognitect.anomalies :as anom]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]])
(:import
[java.time Year YearMonth]
Expand Down
2 changes: 1 addition & 1 deletion modules/db-stub/src/blaze/db/api_stub.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[blaze.fhir.structure-definition-repo]
[blaze.test-util :refer [with-system]]
[integrant.core :as ig]
[java-time :as time]))
[java-time.api :as time]))


(defn create-mem-node-system [node-config]
Expand Down
2 changes: 1 addition & 1 deletion modules/db-tx-log-kafka/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{:local/root "../module-base"}

org.apache.kafka/kafka-clients
{:mvn/version "3.2.3"}}
{:mvn/version "3.3.1"}}

:aliases
{:test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[clojure.test :as test :refer [deftest is testing]]
[cognitect.anomalies :as anom]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[taoensso.timbre :as log])
(:import
Expand Down
2 changes: 1 addition & 1 deletion modules/db-tx-log/src/blaze/db/tx_log_spec.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[blaze.db.tx-log :as tx-log]
[blaze.db.tx-log.spec]
[clojure.spec.alpha :as s]
[java-time :as time]))
[java-time.api :as time]))


;; returns a CompletableFuture of :blaze.db/t
Expand Down
2 changes: 1 addition & 1 deletion modules/db-tx-log/test/blaze/db/tx_log_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[blaze.test-util :as tu]
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [is deftest]]
[java-time :as time])
[java-time.api :as time])
(:import
[java.lang AutoCloseable]
[java.time Instant]))
Expand Down
2 changes: 1 addition & 1 deletion modules/db/src/blaze/db/node.clj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
[clojure.spec.alpha :as s]
[cognitect.anomalies :as anom]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[prometheus.alpha :as prom :refer [defhistogram]]
[taoensso.timbre :as log])
(:import
Expand Down
2 changes: 1 addition & 1 deletion modules/db/src/blaze/db/tx_log/local.clj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[blaze.module :refer [reg-collector]]
[clojure.spec.alpha :as s]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[prometheus.alpha :as prom :refer [defhistogram]]
[taoensso.timbre :as log])
(:import
Expand Down
2 changes: 1 addition & 1 deletion modules/db/test-perf/blaze/db/api_test_perf.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[clojure.test :refer [deftest]]
[criterium.core :as criterium]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[taoensso.timbre :as log]))


Expand Down
2 changes: 1 addition & 1 deletion modules/db/test/blaze/db/test_util.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[blaze.fhir.structure-definition-repo]
[blaze.test-util :refer [with-system]]
[integrant.core :as ig]
[java-time :as time]))
[java-time.api :as time]))


(def system
Expand Down
2 changes: 1 addition & 1 deletion modules/db/test/blaze/db/tx_log/local_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[clojure.test :as test :refer [deftest is testing]]
[cognitect.anomalies :as anom]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[jsonista.core :as j]
[juxt.iota :refer [given]]
[taoensso.timbre :as log])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [are deftest is testing]]
[cognitect.anomalies :as anom]
[java-time :as time])
[java-time.api :as time])
(:import
[com.google.common.hash Hashing]
[java.time LocalDate LocalDateTime Year YearMonth OffsetDateTime
Expand Down
2 changes: 1 addition & 1 deletion modules/http-client/test/blaze/http_client_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[taoensso.timbre :as log])
(:import
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[reitit.core :as reitit]
[taoensso.timbre :as log])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[reitit.core :as reitit]
[taoensso.timbre :as log])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[reitit.core :as reitit]
[taoensso.timbre :as log])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[reitit.core :as reitit]
[taoensso.timbre :as log]))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[reitit.core :as reitit]
[taoensso.timbre :as log])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[clojure.test :as test :refer [deftest is testing]]
[cuerdas.core :as c-str]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]]
[reitit.core :as reitit]
[taoensso.timbre :as log])
Expand Down
2 changes: 1 addition & 1 deletion modules/luid/test/blaze/luid_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[clojure.math :as math]
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[java-time :as time]
[java-time.api :as time]
[juxt.iota :refer [given]])
(:import
[java.time Clock Instant ZoneId]
Expand Down
2 changes: 1 addition & 1 deletion modules/openid-auth/src/blaze/openid_auth.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[blaze.scheduler.spec]
[clojure.spec.alpha :as s]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[taoensso.timbre :as log])
(:import
[java.security PublicKey]))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[blaze.fhir.spec]
[clojure.spec.alpha :as s]
[cognitect.anomalies :as anom]
[java-time :as time]))
[java-time.api :as time]))


(s/def ::now
Expand Down
2 changes: 1 addition & 1 deletion modules/page-store/src/blaze/page_store/local.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[blaze.page-store.weigh :as w]
[clojure.spec.alpha :as s]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[taoensso.timbre :as log])
(:import
[com.github.benmanes.caffeine.cache Cache Caffeine Weigher]))
Expand Down
2 changes: 1 addition & 1 deletion modules/rocksdb/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{:local/root "../module-base"}

org.rocksdb/rocksdbjni
{:mvn/version "7.5.3"}}
{:mvn/version "7.6.0"}}

:aliases
{:test
Expand Down
2 changes: 1 addition & 1 deletion modules/scheduler/src/blaze/scheduler.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[blaze.scheduler.protocol :as p]
[blaze.scheduler.spec]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[taoensso.timbre :as log])
(:import
[java.util.concurrent Executors Future ScheduledExecutorService TimeUnit]))
Expand Down
2 changes: 1 addition & 1 deletion modules/scheduler/src/blaze/scheduler_spec.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[blaze.scheduler :as sched]
[blaze.scheduler.spec]
[clojure.spec.alpha :as s]
[java-time :as time]))
[java-time.api :as time]))


(s/fdef sched/schedule-at-fixed-rate
Expand Down
2 changes: 1 addition & 1 deletion modules/scheduler/test/blaze/scheduler_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[clojure.spec.test.alpha :as st]
[clojure.test :as test :refer [deftest is testing]]
[integrant.core :as ig]
[java-time :as time]
[java-time.api :as time]
[taoensso.timbre :as log]))


Expand Down
2 changes: 1 addition & 1 deletion modules/server/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{:local/root "../module-base"}

org.eclipse.jetty/jetty-server
{:mvn/version "9.4.48.v20220622"}
{:mvn/version "9.4.49.v20220914"}

ring/ring-jetty-adapter
{:mvn/version "1.9.6"
Expand Down
7 changes: 2 additions & 5 deletions modules/spec/deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{:deps
{
;; switch to original dependency of https://github.com/dm3/clojure.java-time/issues/84 is solved
clojure.java-time/clojure.java-time
{:git/url "https://github.com/bevuta/clojure.java-time.git"
:git/sha "bf11ca522c83f39a32bf02e490241a4b9ce499b5"}}}
{clojure.java-time/clojure.java-time
{:mvn/version "1.1.0"}}}
2 changes: 1 addition & 1 deletion modules/spec/src/blaze/spec.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(:require
[clojure.spec.alpha :as s]
[clojure.string :as str]
[java-time :as time])
[java-time.api :as time])
(:import
[java.util Random]))

Expand Down
2 changes: 1 addition & 1 deletion modules/test-util/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
{:mvn/version "1.1.1"}

org.slf4j/slf4j-nop
{:mvn/version "2.0.2"}}}
{:mvn/version "2.0.3"}}}

0 comments on commit 8ae8b39

Please sign in to comment.