Skip to content

Commit

Permalink
bump to 1.1.4 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
d-t-w committed Dec 6, 2022
1 parent bd2a2cf commit 8b7168b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [1.1.4] - 2022-12-06

- Rename slipway.auth to slipway.security
- Improve startup loggin
- Minor reflection fix

## [1.1.3] - 2022-12-02

- Improve websocket config logging on startup
Expand Down
2 changes: 1 addition & 1 deletion common-javax/src/slipway/error.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(org.eclipse.jetty.server.handler ErrorHandler)))

(defn log-error
[request code message]
[^HttpServletRequest request code message]
(if-let [ex (.getAttribute request RequestDispatcher/ERROR_EXCEPTION)]
(log/errorf ex "server error: %s %s" code message)
(log/errorf "server error: %s %s" code message)))
Expand Down
2 changes: 1 addition & 1 deletion slipway-jetty10/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject io.factorhouse/slipway-jetty10 "1.1.3"
(defproject io.factorhouse/slipway-jetty10 "1.1.4"

:description "A Clojure Companion for Jetty"

Expand Down
2 changes: 1 addition & 1 deletion slipway-jetty11/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject io.factorhouse/slipway-jetty11 "1.1.3"
(defproject io.factorhouse/slipway-jetty11 "1.1.4"

:description "A Clojure Companion for Jetty"

Expand Down
2 changes: 1 addition & 1 deletion slipway-jetty9/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject io.factorhouse/slipway-jetty9 "1.1.3"
(defproject io.factorhouse/slipway-jetty9 "1.1.4"

:description "A Clojure Companion for Jetty"

Expand Down

0 comments on commit 8b7168b

Please sign in to comment.