mirror of
https://github.com/penpot/penpot.git
synced 2025-03-12 07:41:43 -05:00
⬆️ Update backend dependencies.
This commit is contained in:
parent
94a3c5853b
commit
9aee88f9f1
6 changed files with 23 additions and 17 deletions
|
@ -4,10 +4,10 @@
|
||||||
"jcenter" {:url "https://jcenter.bintray.com/"}}
|
"jcenter" {:url "https://jcenter.bintray.com/"}}
|
||||||
:deps
|
:deps
|
||||||
{org.clojure/clojure {:mvn/version "1.10.3"}
|
{org.clojure/clojure {:mvn/version "1.10.3"}
|
||||||
org.clojure/clojurescript {:mvn/version "1.10.773"}
|
org.clojure/data.json {:mvn/version "2.2.1"}
|
||||||
org.clojure/data.json {:mvn/version "1.1.0"}
|
|
||||||
org.clojure/core.async {:mvn/version "1.3.610"}
|
org.clojure/core.async {:mvn/version "1.3.610"}
|
||||||
org.clojure/tools.cli {:mvn/version "1.0.206"}
|
org.clojure/tools.cli {:mvn/version "1.0.206"}
|
||||||
|
org.clojure/clojurescript {:mvn/version "1.10.844"}
|
||||||
|
|
||||||
;; Logging
|
;; Logging
|
||||||
org.clojure/tools.logging {:mvn/version "1.1.0"}
|
org.clojure/tools.logging {:mvn/version "1.1.0"}
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
org.zeromq/jeromq {:mvn/version "0.5.2"}
|
org.zeromq/jeromq {:mvn/version "0.5.2"}
|
||||||
|
|
||||||
com.taoensso/nippy {:mvn/version "3.1.1"}
|
com.taoensso/nippy {:mvn/version "3.1.1"}
|
||||||
com.github.luben/zstd-jni {:mvn/version "1.4.9-1"}
|
com.github.luben/zstd-jni {:mvn/version "1.4.9-5"}
|
||||||
|
|
||||||
;; NOTE: don't upgrade to latest version, breaking change is
|
;; NOTE: don't upgrade to latest version, breaking change is
|
||||||
;; introduced on 0.10.0 that suffixes counters with _total if they
|
;; introduced on 0.10.0 that suffixes counters with _total if they
|
||||||
|
@ -36,10 +36,10 @@
|
||||||
expound/expound {:mvn/version "0.8.9"}
|
expound/expound {:mvn/version "0.8.9"}
|
||||||
com.cognitect/transit-clj {:mvn/version "1.0.324"}
|
com.cognitect/transit-clj {:mvn/version "1.0.324"}
|
||||||
|
|
||||||
io.lettuce/lettuce-core {:mvn/version "6.0.2.RELEASE"}
|
io.lettuce/lettuce-core {:mvn/version "6.1.1.RELEASE"}
|
||||||
java-http-clj/java-http-clj {:mvn/version "0.4.2"}
|
java-http-clj/java-http-clj {:mvn/version "0.4.2"}
|
||||||
|
|
||||||
info.sunng/ring-jetty9-adapter {:mvn/version "0.15.0"}
|
info.sunng/ring-jetty9-adapter {:mvn/version "0.15.1"}
|
||||||
com.github.seancorfield/next.jdbc {:mvn/version "1.1.646"}
|
com.github.seancorfield/next.jdbc {:mvn/version "1.1.646"}
|
||||||
metosin/reitit-ring {:mvn/version "0.5.12"}
|
metosin/reitit-ring {:mvn/version "0.5.12"}
|
||||||
metosin/jsonista {:mvn/version "0.3.1"}
|
metosin/jsonista {:mvn/version "0.3.1"}
|
||||||
|
@ -64,12 +64,12 @@
|
||||||
org.im4java/im4java {:mvn/version "1.4.0"}
|
org.im4java/im4java {:mvn/version "1.4.0"}
|
||||||
org.lz4/lz4-java {:mvn/version "1.7.1"}
|
org.lz4/lz4-java {:mvn/version "1.7.1"}
|
||||||
commons-io/commons-io {:mvn/version "2.8.0"}
|
commons-io/commons-io {:mvn/version "2.8.0"}
|
||||||
com.sun.mail/jakarta.mail {:mvn/version "2.0.0"}
|
com.sun.mail/jakarta.mail {:mvn/version "2.0.1"}
|
||||||
|
|
||||||
org.clojars.pntblnk/clj-ldap {:mvn/version "0.0.17"}
|
org.clojars.pntblnk/clj-ldap {:mvn/version "0.0.17"}
|
||||||
integrant/integrant {:mvn/version "0.8.0"}
|
integrant/integrant {:mvn/version "0.8.0"}
|
||||||
|
|
||||||
software.amazon.awssdk/s3 {:mvn/version "2.16.19"}
|
software.amazon.awssdk/s3 {:mvn/version "2.16.44"}
|
||||||
|
|
||||||
;; exception printing
|
;; exception printing
|
||||||
io.aviso/pretty {:mvn/version "0.1.37"}
|
io.aviso/pretty {:mvn/version "0.1.37"}
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
:main-opts ["-m" "kaocha.runner"]}
|
:main-opts ["-m" "kaocha.runner"]}
|
||||||
|
|
||||||
:outdated
|
:outdated
|
||||||
{:extra-deps {com.github.liquidz/antq {:mvn/version "0.12.0"}}
|
{:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
|
||||||
:main-opts ["-m" "antq.core"]}
|
:main-opts ["-m" "antq.core"]}
|
||||||
|
|
||||||
:jmx-remote
|
:jmx-remote
|
||||||
|
|
|
@ -9,13 +9,13 @@
|
||||||
(:require
|
(:require
|
||||||
[app.common.exceptions :as ex]
|
[app.common.exceptions :as ex]
|
||||||
[app.common.spec :as us]
|
[app.common.spec :as us]
|
||||||
|
[app.common.uri :as u]
|
||||||
[app.db :as db]
|
[app.db :as db]
|
||||||
[app.metrics :as mtx]
|
[app.metrics :as mtx]
|
||||||
[app.storage :as sto]
|
[app.storage :as sto]
|
||||||
[app.util.time :as dt]
|
[app.util.time :as dt]
|
||||||
[clojure.spec.alpha :as s]
|
[clojure.spec.alpha :as s]
|
||||||
[integrant.core :as ig]
|
[integrant.core :as ig]))
|
||||||
[lambdaisland.uri :as u]))
|
|
||||||
|
|
||||||
(def ^:private cache-max-age
|
(def ^:private cache-max-age
|
||||||
(dt/duration {:hours 24}))
|
(dt/duration {:hours 24}))
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
(:require
|
(:require
|
||||||
[app.common.exceptions :as ex]
|
[app.common.exceptions :as ex]
|
||||||
[app.common.spec :as us]
|
[app.common.spec :as us]
|
||||||
|
[app.common.uri :as u]
|
||||||
[app.config :as cf]
|
[app.config :as cf]
|
||||||
[app.util.http :as http]
|
[app.util.http :as http]
|
||||||
[app.util.logging :as l]
|
[app.util.logging :as l]
|
||||||
|
@ -16,8 +17,7 @@
|
||||||
[clojure.set :as set]
|
[clojure.set :as set]
|
||||||
[clojure.spec.alpha :as s]
|
[clojure.spec.alpha :as s]
|
||||||
[cuerdas.core :as str]
|
[cuerdas.core :as str]
|
||||||
[integrant.core :as ig]
|
[integrant.core :as ig]))
|
||||||
[lambdaisland.uri :as u]))
|
|
||||||
|
|
||||||
(defn redirect-response
|
(defn redirect-response
|
||||||
[uri]
|
[uri]
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
(:require
|
(:require
|
||||||
[app.common.exceptions :as ex]
|
[app.common.exceptions :as ex]
|
||||||
[app.common.spec :as us]
|
[app.common.spec :as us]
|
||||||
|
[app.common.uri :as u]
|
||||||
[app.storage.impl :as impl]
|
[app.storage.impl :as impl]
|
||||||
[clojure.java.io :as io]
|
[clojure.java.io :as io]
|
||||||
[clojure.spec.alpha :as s]
|
[clojure.spec.alpha :as s]
|
||||||
[cuerdas.core :as str]
|
[cuerdas.core :as str]
|
||||||
[datoteka.core :as fs]
|
[datoteka.core :as fs]
|
||||||
[integrant.core :as ig]
|
[integrant.core :as ig])
|
||||||
[lambdaisland.uri :as u])
|
|
||||||
(:import
|
(:import
|
||||||
java.io.InputStream
|
java.io.InputStream
|
||||||
java.io.OutputStream
|
java.io.OutputStream
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
:uri (u/uri (str "file://" dir))))))
|
:uri (u/uri (str "file://" dir))))))
|
||||||
|
|
||||||
(s/def ::type ::us/keyword)
|
(s/def ::type ::us/keyword)
|
||||||
(s/def ::uri #(instance? lambdaisland.uri.URI %))
|
(s/def ::uri u/uri?)
|
||||||
(s/def ::backend
|
(s/def ::backend
|
||||||
(s/keys :req-un [::type ::directory ::uri]))
|
(s/keys :req-un [::type ::directory ::uri]))
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
[app.common.data :as d]
|
[app.common.data :as d]
|
||||||
[app.common.exceptions :as ex]
|
[app.common.exceptions :as ex]
|
||||||
[app.common.spec :as us]
|
[app.common.spec :as us]
|
||||||
|
[app.common.uri :as u]
|
||||||
[app.storage.impl :as impl]
|
[app.storage.impl :as impl]
|
||||||
[app.util.time :as dt]
|
[app.util.time :as dt]
|
||||||
[clojure.java.io :as io]
|
[clojure.java.io :as io]
|
||||||
[clojure.spec.alpha :as s]
|
[clojure.spec.alpha :as s]
|
||||||
[integrant.core :as ig]
|
[integrant.core :as ig])
|
||||||
[lambdaisland.uri :as u])
|
|
||||||
(:import
|
(:import
|
||||||
java.time.Duration
|
java.time.Duration
|
||||||
java.util.Collection
|
java.util.Collection
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
;; Copyright (c) UXBOX Labs SL
|
;; Copyright (c) UXBOX Labs SL
|
||||||
|
|
||||||
(ns app.common.uri
|
(ns app.common.uri
|
||||||
|
(:refer-clojure :exclude [uri?])
|
||||||
(:require
|
(:require
|
||||||
[app.common.data :as d]
|
[app.common.data :as d]
|
||||||
[lambdaisland.uri :as u]
|
[lambdaisland.uri :as u]
|
||||||
|
@ -12,8 +13,13 @@
|
||||||
|
|
||||||
(d/export u/uri)
|
(d/export u/uri)
|
||||||
(d/export u/join)
|
(d/export u/join)
|
||||||
|
(d/export u/query-encode)
|
||||||
(d/export un/percent-encode)
|
(d/export un/percent-encode)
|
||||||
|
|
||||||
|
(defn uri?
|
||||||
|
[o]
|
||||||
|
(instance? lambdaisland.uri.URI o))
|
||||||
|
|
||||||
(defn query-string->map
|
(defn query-string->map
|
||||||
[s]
|
[s]
|
||||||
(u/query-string->map s))
|
(u/query-string->map s))
|
||||||
|
|
Loading…
Add table
Reference in a new issue