strong-error-handler 2.2.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,36 +1,37 @@
1
1
  <!--
2
- - Please ask questions at https://groups.google.com/forum/#!forum/loopbackjs or
2
+ Questions:
3
+ https://groups.google.com/forum/#!forum/loopbackjs
3
4
  https://gitter.im/strongloop/loopback
4
-
5
- - Immediate support is available through our subscription plans, see
5
+ Immediate support:
6
6
  https://strongloop.com/api-connect-faqs/
7
+ https://strongloop.com/node-js/subscription-plans/
7
8
  -->
8
9
 
9
- ### Bug or feature request
10
+ # Description/Steps to reproduce
10
11
 
11
12
  <!--
12
- Mark your choice with an "x" (eg. [x], NOT [*]).
13
+ If feature: A description of the feature
14
+ If bug: Steps to reproduce
13
15
  -->
14
16
 
15
- - [ ] Bug
16
- - [ ] Feature request
17
-
18
- ### Description of feature (or steps to reproduce if bug)
19
-
20
-
21
-
22
- ### Link to sample repo to reproduce issue (if bug)
23
-
24
-
25
-
26
- ### Expected result
17
+ # Link to reproduction sandbox
27
18
 
19
+ <!--
20
+ Link to an app sandbox for reproduction
28
21
 
22
+ Note: Failure to provide a sandbox application for reproduction purposes will result in the issue being closed.
23
+ -->
29
24
 
30
- ### Actual result (if bug)
31
-
32
-
25
+ # Expected result
33
26
 
34
- ### Additional information (Node.js version, LoopBack version, etc)
27
+ <!--
28
+ Also include actual results if bug
29
+ -->
35
30
 
31
+ # Additional information
36
32
 
33
+ <!--
34
+ Copy+paste the output of these two commands:
35
+ node -e 'console.log(process.platform, process.arch, process.versions.node)'
36
+ npm ls --prod --depth 0 | grep loopback
37
+ -->
@@ -6,17 +6,18 @@
6
6
  <!--
7
7
  Please use the following link syntaxes:
8
8
 
9
- - #49 (to reference issues in the current repository)
10
- - strongloop/loopback#49 (to reference issues in another repository)
9
+ - connect to #49 (to reference issues in the current repository)
10
+ - connect to strongloop/loopback#49 (to reference issues in another repository)
11
11
  -->
12
12
 
13
- - None
13
+ - connect to <link_to_referenced_issue>
14
14
 
15
15
  ### Checklist
16
16
 
17
17
  <!--
18
- Please mark your choice with an "x" (i.e. [x], see
18
+ - Please mark your choice with an "x" (i.e. [x], see
19
19
  https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments)
20
+ - PR's without test coverage will be closed.
20
21
  -->
21
22
 
22
23
  - [ ] New tests added or existing tests modified to cover all changes
package/CHANGES.md CHANGED
@@ -1,3 +1,17 @@
1
+ 2017-10-13, Version 2.3.0
2
+ =========================
3
+
4
+ * update strong-globalize to 3.1.0 (shimks)
5
+
6
+ * CODEOWNERS: add zbarbuto (Miroslav Bajtoš)
7
+
8
+ * Update Issue and PR Templates (#59) (Sakib Hasan)
9
+
10
+ * fixed json typo of server/middleware.json (karanssj4)
11
+
12
+ * Add CODEOWNER file (Diana Lau)
13
+
14
+
1
15
  2017-07-20, Version 2.2.0
2
16
  =========================
3
17
 
package/CODEOWNERS ADDED
@@ -0,0 +1,5 @@
1
+ # Lines starting with '#' are comments.
2
+ # Each line is a file pattern followed by one or more owners,
3
+ # the last matching pattern has the most precendence.
4
+
5
+ * @bajtos @zbarbuto
package/README.md CHANGED
@@ -121,7 +121,7 @@ Then in `server/middleware.json`, specify your custom error logging function as
121
121
  "./middleware/error-logger": {},
122
122
  "strong-error-handler": {
123
123
  "params": {
124
- log: false
124
+ "log": false
125
125
  }
126
126
  }
127
127
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "strong-error-handler",
3
3
  "description": "Error handler for use in development and production environments.",
4
4
  "license": "MIT",
5
- "version": "2.2.0",
5
+ "version": "2.3.0",
6
6
  "engines": {
7
7
  "node": ">=4"
8
8
  },
@@ -22,7 +22,7 @@
22
22
  "ejs": "^2.4.2",
23
23
  "http-status": "^1.0.0",
24
24
  "js2xmlparser": "^3.0.0",
25
- "strong-globalize": "^2.6.7"
25
+ "strong-globalize": "^3.1.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "chai": "^3.5.0",
package/.npmignore DELETED
@@ -1,35 +0,0 @@
1
- # Logs
2
- logs
3
- *.log
4
- npm-debug.log*
5
-
6
- # Runtime data
7
- pids
8
- *.pid
9
- *.seed
10
-
11
- # Directory for instrumented libs generated by jscoverage/JSCover
12
- lib-cov
13
-
14
- # Coverage directory used by tools like istanbul
15
- coverage
16
-
17
- # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18
- .grunt
19
-
20
- # node-waf configuration
21
- .lock-wscript
22
-
23
- # Compiled binary addons (http://nodejs.org/api/addons.html)
24
- build/Release
25
-
26
- # Dependency directory
27
- node_modules
28
-
29
- # Optional npm cache directory
30
- .npm
31
-
32
- # Optional REPL history
33
- .node_repl_history
34
- test
35
- .travis.yml