You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
6
6
7
+
## [3.6.0] (2020-06-21)
8
+
9
+
### Added
10
+
11
+
- Add support for Websocket connections
12
+
13
+
### Updated
14
+
15
+
- Updated all libraries to latest
16
+
7
17
## [3.5.0] (2020-05-10)
8
18
9
19
### Changed
@@ -219,6 +229,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/),
219
229
- Update older libraries
220
230
- Now publish from Git tags instead of master pushes
path: { [name:string]:string }; // path param payload as key-value pairs if exists (otherwise undefined)
110
111
query: { [name:string]:string }; // query param payload as key-value pairs if exists (otherwise undefined)
111
112
headers: { [name:string]:string }; // header payload as key-value pairs if exists (otherwise undefined)
112
113
testRequest:boolean; // indicates if this is a test request - looks for a header matching process.env.TEST_REQUEST_HEADER (dynamic from application) or 'Test-Request' (default)
113
-
auth:any; // auth context from custom authorizer if exists (otherwise null)
114
+
auth:any; // auth context from custom authorizer if exists (otherwise undefined)
114
115
success(payload?:any, replacer?: (this:any, key:string, value:any) =>any):ApiResponse; // returns 200 status code with optional payload as body
115
116
invalid(errors?:string[]):ApiResponse; // returns 400 status code with optional errors as body
116
117
notFound(message?:string):ApiResponse; // returns 404 status code with optional message as body
117
-
notAuthorized(message?:string):ApiResponse; // returns 401 status code with optional message as body
118
+
notAuthorized(message?:string):ApiResponse; // returns 403 status code with optional message as body
118
119
redirect(url:string):ApiResponse; // returns 302 status code (redirect) with new url
119
120
error(error?:any):ApiResponse; // returns 500 status code with optional error as body
0 commit comments