Skip to content

Commit

Permalink
Merge pull request #121 from macielti/add-support-to-patch-method-for…
Browse files Browse the repository at this point in the history
…-http-client

Add support to PATH HTTP Request method for HTTP Client component
  • Loading branch information
macielti authored Aug 17, 2024
2 parents 9f407bb + a1c5049 commit 5acc61b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ of [keepachangelog.com](http://keepachangelog.com/).

## [Unreleased]

## [27.56.55] - 2024-08-17

## Added

- Add support to PATH HTTP Request method for HTTP Client component.

## [27.55.55] - 2024-08-17

## Added
Expand Down Expand Up @@ -751,7 +757,9 @@ of [keepachangelog.com](http://keepachangelog.com/).

- Add `loose-schema` function.

[Unreleased]: https://github.com/macielti/common-clj/compare/v27.55.55...HEAD
[Unreleased]: https://github.com/macielti/common-clj/compare/v27.56.55...HEAD

[27.56.55]: https://github.com/macielti/common-clj/compare/v27.55.55...v27.56.55

[27.55.55]: https://github.com/macielti/common-clj/compare/v27.55.54...v27.55.55

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject net.clojars.macielti/common-clj "27.55.55"
(defproject net.clojars.macielti/common-clj "27.56.55"
: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"
Expand Down
1 change: 1 addition & 0 deletions src/common_clj/component/http_client.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
(def method->request-fn
{:post client/post
:get client/get
:patch client/patch
:delete client/delete})

(defmulti request!
Expand Down

0 comments on commit 5acc61b

Please sign in to comment.