Skip to content

Commit

Permalink
release 0.6.11
Browse files Browse the repository at this point in the history
  • Loading branch information
opqdonut committed Jan 9, 2025
1 parent 27a43ec commit 3bca374
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 25 deletions.
32 changes: 24 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
## Unreleased

**[compare](https://github.com/metosin/muuntaja/compare/0.6.9...master)**
**[compare](https://github.com/metosin/muuntaja/compare/0.6.11...master)**

## 0.6.11 (2025-01-09)

* Fixes
- 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)

* Update deps:

```
[ring/ring-codec "1.2.0"] is available but we use "1.1.2"
[metosin/jsonista "0.3.13"] is available but we use "0.3.1"
[com.cognitect/transit-clj "1.0.333"] is available but we use "1.0.324"
[com.cnuernber/charred "1.034"] is available but we use "1.033"
[cheshire "5.13.0"] is available but we use "5.10.0"
[clj-commons/clj-yaml "1.0.29"] is available but we use "1.0.27"
```

## 0.6.10 (2024-03-15)

Expand Down Expand Up @@ -30,7 +46,7 @@
[ring/ring-core "1.9.0"] is available but we use "1.8.2"
```

## 0.6.7
## 0.6.7

* 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)

Expand Down Expand Up @@ -139,7 +155,7 @@
* `format-request-interceptor` ~= `wrap-format-request`
* `format-response-interceptor` ~= `wrap-format-response`

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

Expand Down Expand Up @@ -239,7 +255,7 @@

... and also this:

```clj
```clj
(require '[jsonista.core :as j])

(m/decoder
Expand All @@ -248,7 +264,7 @@
m/default-options
[:formats "application/json" :opts]
{:mapper (j/object-mapper {:decode-key-fn false})}))
"application/json")
"application/json")
```

* dropped dependencies:
Expand Down Expand Up @@ -278,7 +294,7 @@

## 0.6.0-alpha4

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

... and also this:

```clj
```clj
(require '[jsonista.core :as j])

(m/decoder
Expand All @@ -402,7 +418,7 @@
m/default-options
[:formats "application/json" :opts]
{:mapper (j/object-mapper {:decode-key-fn false})}))
"application/json")
"application/json")
```

* dropped dependencies:
Expand Down
2 changes: 1 addition & 1 deletion modules/muuntaja-charred/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject fi.metosin/muuntaja-charred "0.6.10"
(defproject fi.metosin/muuntaja-charred "0.6.11"
:description "Charred/JSON format for Muuntaja"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion modules/muuntaja-cheshire/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject metosin/muuntaja-cheshire "0.6.10"
(defproject metosin/muuntaja-cheshire "0.6.11"
:description "Cheshire/JSON format for Muuntaja"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion modules/muuntaja-form/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject metosin/muuntaja-form "0.6.10"
(defproject metosin/muuntaja-form "0.6.11"
:description "application/x-www-form-urlencoded format for Muuntaja"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion modules/muuntaja-msgpack/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject metosin/muuntaja-msgpack "0.6.10"
(defproject metosin/muuntaja-msgpack "0.6.11"
:description "Messagepack format for Muuntaja"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion modules/muuntaja-yaml/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject metosin/muuntaja-yaml "0.6.10"
(defproject metosin/muuntaja-yaml "0.6.11"
:description "YAML format for Muuntaja"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion modules/muuntaja/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject metosin/muuntaja "0.6.10"
(defproject metosin/muuntaja "0.6.11"
:description "Clojure library for format encoding, decoding and content-negotiation"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
Expand Down
16 changes: 5 additions & 11 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(defproject muuntaja-dev "0.6.9"
(defproject muuntaja-dev "0.6.11"
;; See modules/muuntaja/project.clj for actual project.clj used when releasing.
;; This project.clj is just for local development.
:description "Clojure library for format encoding, decoding and content-negotiation"
:url "https://github.com/metosin/muuntaja"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v20.html"}
:managed-dependencies [[metosin/muuntaja "0.6.10"]
:managed-dependencies [[metosin/muuntaja "0.6.11"]
[ring/ring-codec "1.2.0"]
[metosin/jsonista "0.3.13"]
[com.cognitect/transit-clj "1.0.333"]
Expand All @@ -32,22 +32,16 @@
"modules/muuntaja-cheshire/src"
"modules/muuntaja-form/src"
"modules/muuntaja-yaml/src"
"modules/muuntaja-msgpack/src"]
"modules/muuntaja-msgpack/src"
"modules/muuntaja/src"]

:dependencies [[org.clojure/clojure "1.12.0"]
[com.cnuernber/charred "1.034"]
[ring/ring-core "1.13.0"]
[ring-middleware-format "0.7.5"]
[ring-transit "0.1.6"]
[ring/ring-json "0.5.1"]

;; modules
[metosin/muuntaja "0.6.10"]
[metosin/muuntaja-form "0.6.10"]
[fi.metosin/muuntaja-charred "0.6.10"]
[metosin/muuntaja-cheshire "0.6.10"]
[metosin/muuntaja-msgpack "0.6.10"]
[metosin/muuntaja-yaml "0.6.10"]
[metosin/jsonista "0.3.13"]

;; correct jackson
[com.fasterxml.jackson.core/jackson-databind "2.18.2"]
Expand Down

0 comments on commit 3bca374

Please sign in to comment.