diff --git a/CHANGELOG.md b/CHANGELOG.md index ac336f5..fcfd8f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ of [keepachangelog.com](http://keepachangelog.com/). ## [Unreleased] +## [25.51.49] - 2024-07-12 + +## Changed + +- Updating project dependencies. + ## [25.51.48] - 2024-06-06 ## Added @@ -671,7 +677,9 @@ of [keepachangelog.com](http://keepachangelog.com/). - Add `loose-schema` function. -[Unreleased]: https://github.com/macielti/common-clj/compare/v25.51.48...HEAD +[Unreleased]: https://github.com/macielti/common-clj/compare/v25.51.49...HEAD + +[25.51.49]: https://github.com/macielti/common-clj/compare/v25.51.48...v25.51.49 [25.51.48]: https://github.com/macielti/common-clj/compare/v25.50.48...v25.51.48 diff --git a/README.md b/README.md index 37542a6..41472bc 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ Add the following dependency to your project or build file: You can check for the last available version on [Clojars page](https://clojars.org/net.clojars.macielti/common-clj/). +You can automatically upgrade the project dependencies by running: `lein antq` + ## Documentation Tests are the best documentation! Better than nothing. diff --git a/project.clj b/project.clj index bc7fe16..d6f097f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject net.clojars.macielti/common-clj "25.51.48" +(defproject net.clojars.macielti/common-clj "25.51.49" :description "Just common Clojure code that I use across projects" :url "https://github.com/macielti/common-clj" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" @@ -6,14 +6,15 @@ :plugins [[lein-codox "0.10.8"] [lein-cloverage "1.2.4"] - [com.github.clojure-lsp/lein-clojure-lsp "1.4.4"]] + [com.github.clojure-lsp/lein-clojure-lsp "1.4.9"] + [com.github.liquidz/antq "RELEASE"]] :codox {:metadata {:doc "Just common Clojure code that I use across projects."} :output-path "docs"} :exclusions [log4j] - :dependencies [[org.clojure/clojure "1.11.1"] + :dependencies [[org.clojure/clojure "1.11.3"] [clojure.jdbc/clojure.jdbc-c3p0 "0.3.4"] [hashp "0.2.2"] [com.attendify/schema-refined "0.3.0-alpha5"] @@ -21,21 +22,21 @@ [morse "0.4.3"] [overtone/at-at "1.3.58"] [clj-test-containers "0.7.4"] - [datalevin "0.8.26"] - [org.apache.kafka/kafka-clients "3.6.1"] + [datalevin "0.9.8"] + [org.apache.kafka/kafka-clients "3.7.1"] [de.ubercode.clostache/clostache "1.4.0"] - [nubank/state-flow "5.14.5"] + [nubank/state-flow "5.17.0"] [clj-http-fake "1.0.4"] [medley "1.4.0"] - [telegrambot-lib "2.12.0"] - [overtone/at-at "1.2.0"] - [io.pedestal/pedestal.service "0.6.3"] - [io.pedestal/pedestal.interceptor "0.6.3"] + [telegrambot-lib "2.15.0"] + [io.pedestal/pedestal.service "0.7.0"] + [io.pedestal/pedestal.interceptor "0.7.0"] + [io.pedestal/pedestal.error "0.7.0"] + [io.pedestal/pedestal.jetty "0.7.0"] + [io.pedestal/pedestal.route "0.7.0"] [prismatic/schema-generators "0.1.5"] [nubank/matcher-combinators "3.9.1"] [com.datomic/datomic-free "0.9.5697"] - [io.pedestal/pedestal.jetty "0.6.3"] - [io.pedestal/pedestal.route "0.6.3"] [com.stuartsierra/component "1.1.0"] [siili/humanize "0.1.1"] [prismatic/plumbing "0.6.0"] @@ -43,15 +44,15 @@ [prismatic/schema "1.4.1"] [buddy/buddy-sign "3.5.351"] [com.novemberain/langohr "5.4.0"] - [cheshire "5.12.0"] - [org.testcontainers/postgresql "1.19.5"] - [org.postgresql/postgresql "42.7.1"] - [com.github.seancorfield/next.jdbc "1.3.909"] - [com.datomic/local "1.0.277"] + [cheshire "5.13.0"] + [org.testcontainers/postgresql "1.19.8"] + [org.postgresql/postgresql "42.7.3"] + [com.github.seancorfield/next.jdbc "1.3.939"] + [com.datomic/local "1.0.285"] [metosin/schema-tools "0.13.1"] - [clj-commons/iapetos "0.1.13"] + [clj-commons/iapetos "0.1.14"] [clojure.java-time "1.4.2"] - [clj-rate-limiter "0.1.5"] + [clj-rate-limiter "0.1.6-RC1"] [com.github.liquidz/antq "RELEASE"]] :injections [(require 'hashp.core)]