Skip to content

Commit 3bca374

Browse files
committed
release 0.6.11
1 parent 27a43ec commit 3bca374

File tree

8 files changed

+35
-25
lines changed

8 files changed

+35
-25
lines changed

CHANGELOG.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
## Unreleased
22

3-
**[compare](https://github.com/metosin/muuntaja/compare/0.6.9...master)**
3+
**[compare](https://github.com/metosin/muuntaja/compare/0.6.11...master)**
4+
5+
## 0.6.11 (2025-01-09)
6+
7+
* Fixes
8+
- Avoid output (like println or logging) interfering with edn output, thanks to [nvlass](https://github.com/nvlass) [#131](https://github.com/metosin/muuntaja/pull/131)
9+
10+
* Update deps:
11+
12+
```
13+
[ring/ring-codec "1.2.0"] is available but we use "1.1.2"
14+
[metosin/jsonista "0.3.13"] is available but we use "0.3.1"
15+
[com.cognitect/transit-clj "1.0.333"] is available but we use "1.0.324"
16+
[com.cnuernber/charred "1.034"] is available but we use "1.033"
17+
[cheshire "5.13.0"] is available but we use "5.10.0"
18+
[clj-commons/clj-yaml "1.0.29"] is available but we use "1.0.27"
19+
```
420

521
## 0.6.10 (2024-03-15)
622

@@ -30,7 +46,7 @@
3046
[ring/ring-core "1.9.0"] is available but we use "1.8.2"
3147
```
3248

33-
## 0.6.7
49+
## 0.6.7
3450

3551
* new module `muuntaja-form` to handle `application/x-www-form-urlencoded` using [ring-codec](https://github.com/ring-clojure/ring-codec) by [Mathieu Lirzin](https://github.com/metosin/muuntaja/pull/110)
3652

@@ -139,7 +155,7 @@
139155
* `format-request-interceptor` ~= `wrap-format-request`
140156
* `format-response-interceptor` ~= `wrap-format-response`
141157

142-
* Use `:default-charset` for response encoding if found anywhere in the `accept` header, fixes [#79](https://github.com/metosin/muuntaja/issues/79)
158+
* Use `:default-charset` for response encoding if found anywhere in the `accept` header, fixes [#79](https://github.com/metosin/muuntaja/issues/79)
143159
* Publish the raw content-negotiation results into `FormatAndCharset` too
144160
* Added helpers `m/get-request-format-and-charset` and `get-response-format-and-charset`
145161

@@ -239,7 +255,7 @@
239255

240256
... and also this:
241257

242-
```clj
258+
```clj
243259
(require '[jsonista.core :as j])
244260

245261
(m/decoder
@@ -248,7 +264,7 @@
248264
m/default-options
249265
[:formats "application/json" :opts]
250266
{:mapper (j/object-mapper {:decode-key-fn false})}))
251-
"application/json")
267+
"application/json")
252268
```
253269

254270
* dropped dependencies:
@@ -278,7 +294,7 @@
278294

279295
## 0.6.0-alpha4
280296

281-
* Use `:default-charset` for response encoding if found anywhere in the `accept` header, fixes [#79](https://github.com/metosin/muuntaja/issues/79)
297+
* Use `:default-charset` for response encoding if found anywhere in the `accept` header, fixes [#79](https://github.com/metosin/muuntaja/issues/79)
282298
* Publish the raw content-negotiation results into `FormatAndCharset` too
283299
* Removed helpers `m/get-negotiated-request-content-type` and `m/get-negotiated-response-content-type`
284300
* Added helpers `m/get-request-format-and-charset` and `get-response-format-and-charset`
@@ -393,7 +409,7 @@
393409

394410
... and also this:
395411

396-
```clj
412+
```clj
397413
(require '[jsonista.core :as j])
398414

399415
(m/decoder
@@ -402,7 +418,7 @@
402418
m/default-options
403419
[:formats "application/json" :opts]
404420
{:mapper (j/object-mapper {:decode-key-fn false})}))
405-
"application/json")
421+
"application/json")
406422
```
407423

408424
* dropped dependencies:

modules/muuntaja-charred/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject fi.metosin/muuntaja-charred "0.6.10"
1+
(defproject fi.metosin/muuntaja-charred "0.6.11"
22
:description "Charred/JSON format for Muuntaja"
33
:url "https://github.com/metosin/muuntaja"
44
:license {:name "Eclipse Public License"

modules/muuntaja-cheshire/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject metosin/muuntaja-cheshire "0.6.10"
1+
(defproject metosin/muuntaja-cheshire "0.6.11"
22
:description "Cheshire/JSON format for Muuntaja"
33
:url "https://github.com/metosin/muuntaja"
44
:license {:name "Eclipse Public License"

modules/muuntaja-form/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject metosin/muuntaja-form "0.6.10"
1+
(defproject metosin/muuntaja-form "0.6.11"
22
:description "application/x-www-form-urlencoded format for Muuntaja"
33
:url "https://github.com/metosin/muuntaja"
44
:license {:name "Eclipse Public License"

modules/muuntaja-msgpack/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject metosin/muuntaja-msgpack "0.6.10"
1+
(defproject metosin/muuntaja-msgpack "0.6.11"
22
:description "Messagepack format for Muuntaja"
33
:url "https://github.com/metosin/muuntaja"
44
:license {:name "Eclipse Public License"

modules/muuntaja-yaml/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject metosin/muuntaja-yaml "0.6.10"
1+
(defproject metosin/muuntaja-yaml "0.6.11"
22
:description "YAML format for Muuntaja"
33
:url "https://github.com/metosin/muuntaja"
44
:license {:name "Eclipse Public License"

modules/muuntaja/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject metosin/muuntaja "0.6.10"
1+
(defproject metosin/muuntaja "0.6.11"
22
:description "Clojure library for format encoding, decoding and content-negotiation"
33
:url "https://github.com/metosin/muuntaja"
44
:license {:name "Eclipse Public License"

project.clj

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
(defproject muuntaja-dev "0.6.9"
1+
(defproject muuntaja-dev "0.6.11"
22
;; See modules/muuntaja/project.clj for actual project.clj used when releasing.
33
;; This project.clj is just for local development.
44
:description "Clojure library for format encoding, decoding and content-negotiation"
55
:url "https://github.com/metosin/muuntaja"
66
:license {:name "Eclipse Public License"
77
:url "http://www.eclipse.org/legal/epl-v20.html"}
8-
:managed-dependencies [[metosin/muuntaja "0.6.10"]
8+
:managed-dependencies [[metosin/muuntaja "0.6.11"]
99
[ring/ring-codec "1.2.0"]
1010
[metosin/jsonista "0.3.13"]
1111
[com.cognitect/transit-clj "1.0.333"]
@@ -32,22 +32,16 @@
3232
"modules/muuntaja-cheshire/src"
3333
"modules/muuntaja-form/src"
3434
"modules/muuntaja-yaml/src"
35-
"modules/muuntaja-msgpack/src"]
35+
"modules/muuntaja-msgpack/src"
36+
"modules/muuntaja/src"]
3637

3738
:dependencies [[org.clojure/clojure "1.12.0"]
3839
[com.cnuernber/charred "1.034"]
3940
[ring/ring-core "1.13.0"]
4041
[ring-middleware-format "0.7.5"]
4142
[ring-transit "0.1.6"]
4243
[ring/ring-json "0.5.1"]
43-
44-
;; modules
45-
[metosin/muuntaja "0.6.10"]
46-
[metosin/muuntaja-form "0.6.10"]
47-
[fi.metosin/muuntaja-charred "0.6.10"]
48-
[metosin/muuntaja-cheshire "0.6.10"]
49-
[metosin/muuntaja-msgpack "0.6.10"]
50-
[metosin/muuntaja-yaml "0.6.10"]
44+
[metosin/jsonista "0.3.13"]
5145

5246
;; correct jackson
5347
[com.fasterxml.jackson.core/jackson-databind "2.18.2"]

0 commit comments

Comments
 (0)