zsyp 1.0.0 → 1.0.1
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.
- package/Readme.md +6 -10
- package/package.json +3 -3
- package/History.md +0 -17
package/Readme.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
[![NPM version][npm-image]][npm-url]
|
|
2
|
-
[![Build Status][
|
|
2
|
+
[![Build Status][build-image]][build-url]
|
|
3
3
|
[![Dependency Status][deps-image]][deps-url]
|
|
4
|
-
[![Dev Dependency Status][deps-dev-image]][deps-dev-url]
|
|
5
4
|
|
|
6
5
|
# zsyp
|
|
7
6
|
|
|
@@ -72,14 +71,11 @@ MIT © [Damian Krzeminski](https://pirxpilot.me)
|
|
|
72
71
|
[capped collection]: https://docs.mongodb.com/manual/core/capped-collections/
|
|
73
72
|
[dotenv]: https://www.npmjs.com/package/dotenv
|
|
74
73
|
|
|
75
|
-
[npm-image]: https://img.shields.io/npm/v/zsyp
|
|
74
|
+
[npm-image]: https://img.shields.io/npm/v/zsyp
|
|
76
75
|
[npm-url]: https://npmjs.org/package/zsyp
|
|
77
76
|
|
|
78
|
-
[
|
|
79
|
-
[
|
|
77
|
+
[build-url]: https://travis-ci.com/pirxpilot/zsyp
|
|
78
|
+
[build-image]: https://img.shields.io/travis/com/pirxpilot/zsyp
|
|
80
79
|
|
|
81
|
-
[deps-image]: https://img.shields.io/
|
|
82
|
-
[deps-url]: https://
|
|
83
|
-
|
|
84
|
-
[deps-dev-image]: https://img.shields.io/david/dev/pirxpilot/zsyp.svg
|
|
85
|
-
[deps-dev-url]: https://david-dm.org/pirxpilot/zsyp?type=dev
|
|
80
|
+
[deps-image]: https://img.shields.io/librariesio/release/npm/zsyp
|
|
81
|
+
[deps-url]: https://libraries.io/npm/zsyp
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zsyp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CSP violation reports logger.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Damian Krzeminski",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"@pirxpilot/connect": "^4.0.0",
|
|
20
20
|
"body-parser": "~1",
|
|
21
21
|
"debug": "~2 || ~3 || ~4",
|
|
22
|
-
"dotenv": "~
|
|
22
|
+
"dotenv": "~16",
|
|
23
23
|
"mniam": "^2.1.0",
|
|
24
24
|
"router": "~1",
|
|
25
25
|
"useragent": "^2.3.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"jshint": "~2",
|
|
29
|
-
"tape": "~
|
|
29
|
+
"tape": "~5"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"test": "make check"
|
package/History.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
1.0.0 / 2020-04-18
|
|
3
|
-
==================
|
|
4
|
-
|
|
5
|
-
* update docs
|
|
6
|
-
* update links to Travis build results
|
|
7
|
-
* update dependencies
|
|
8
|
-
|
|
9
|
-
0.0.2 / 2019-07-17
|
|
10
|
-
==================
|
|
11
|
-
|
|
12
|
-
* fix reports domain filtering
|
|
13
|
-
|
|
14
|
-
0.0.1 / 2019-07-15
|
|
15
|
-
==================
|
|
16
|
-
|
|
17
|
-
* basic implementation: UA parsing, domain filtering, mongo backend
|