Skip to content

Commit

Permalink
backport src/compojure/api/impl/json.clj
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed May 14, 2024
1 parent c0c072e commit 6b8b9c6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## NEXT
* drop support for Clojure 1.8
* upgrade cheshire 5.13.0

## 1.1.14 (2024-04-30)
* Remove potemkin [#445](https://github.com/metosin/compojure-api/issues/445)
Expand Down
7 changes: 5 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:scm {:name "git"
:url "https://github.com/metosin/compojure-api"}
:dependencies [[prismatic/plumbing "0.6.0"]
[cheshire "5.9.0"]
[cheshire "5.13.0"]
[compojure "1.6.1"]
[prismatic/schema "1.1.12"]
[org.tobereplaced/lettercase "1.0.0"]
Expand All @@ -33,7 +33,10 @@
:dependencies [[org.clojure/clojure "1.9.0"]
;; bump
[fipp "0.6.26"]
[metosin/spec-tools "0.10.0"]
[metosin/spec-tools "0.10.6"]
[metosin/muuntaja "0.6.6"]
[metosin/jsonista "0.2.5"]
[com.fasterxml.jackson.datatype/jackson-datatype-joda "2.10.1"]
[slingshot "0.12.2"]
[peridot "0.5.1"]
[javax.servlet/servlet-api "2.5"]
Expand Down
6 changes: 6 additions & 0 deletions src/compojure/api/impl/json.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(ns ^:no-doc compojure.api.impl.json
"Internal JSON formatting"
(:require [muuntaja.core :as m]))

(def muuntaja
(m/create))

0 comments on commit 6b8b9c6

Please sign in to comment.