Skip to content

Commit ba03bab

Browse files
author
JarrodCTaylor
committed
Dependency: Version bumps
1 parent 6499834 commit ba03bab

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

project.clj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
:description "An example compojure-api app with authentication using buddy"
33

44
:dependencies [[org.clojure/clojure "1.7.0"]
5-
[metosin/compojure-api "0.22.2"]
6-
[metosin/ring-http-response "0.6.3"]
7-
[metosin/ring-swagger-ui "2.1.1"]
5+
[metosin/compojure-api "0.23.1"]
6+
[metosin/ring-http-response "0.6.5"]
7+
[metosin/ring-swagger-ui "2.1.3"]
88
[cheshire "5.5.0"]
99
[http-kit "2.1.19"]
10-
[buddy "0.6.1"]
11-
[org.clojure/java.jdbc "0.4.1"]
10+
[buddy "0.7.2"]
11+
[org.clojure/java.jdbc "0.4.2"]
1212
[postgresql/postgresql "9.3-1102.jdbc41"]
13-
[yesql "0.5.0"]
14-
[environ "1.0.0"]
13+
[yesql "0.5.1"]
14+
[environ "1.0.1"]
1515
[clj-time "0.11.0"]
16-
[com.draines/postal "1.11.3"]]
16+
[com.draines/postal "1.11.4"]]
1717

18-
:plugins [[lein-environ "1.0.0"]]
18+
:plugins [[lein-environ "1.0.1"]]
1919

2020
:min-lein-version "2.5.0"
2121

src/authenticated_compojure_api/routes/auth.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[compojure.api.sweet :refer :all]))
88

99
(defroutes* auth-routes
10-
(context "/api" []
10+
(context* "/api" []
1111

1212
(wrap-authentication
1313
(GET* "/auth" {:as request}

src/authenticated_compojure_api/routes/password.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[compojure.api.sweet :refer :all]))
66

77
(defroutes* password-routes
8-
(context "/api" []
8+
(context* "/api" []
99

1010
(POST* "/password/reset-request" []
1111
:tags ["Password"]

src/authenticated_compojure_api/routes/permission.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
(defroutes* permission-routes
12-
(context "/api" []
12+
(context* "/api" []
1313

1414
(wrap-authentication
1515
(POST* "/permission/user/:id" {:as request}

src/authenticated_compojure_api/routes/preflight.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[ring.util.http-response :as respond]))
55

66
(defroutes* preflight-route
7-
(context "/api" []
7+
(context* "/api" []
88

99
(OPTIONS* "*" {:as request}
1010
:tags ["Preflight"]

src/authenticated_compojure_api/routes/refresh_token.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
(defroutes* refresh-token-routes
9-
(context "/api" []
9+
(context* "/api" []
1010

1111
(GET* "/refresh-token/:refreshToken" []
1212
:tags ["Refresh-Token"]

src/authenticated_compojure_api/routes/user.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
(defroutes* user-routes
13-
(context "/api" []
13+
(context* "/api" []
1414

1515
(POST* "/user" {:as request}
1616
:tags ["User"]

0 commit comments

Comments
 (0)