entitlement-provider 2.9.79 → 2.9.84
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/LICENSE +1 -1
- package/package.json +17 -17
- package/systemd/entitlement-provider.service +4 -0
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entitlement-provider",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.84",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -27,30 +27,30 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@kronos-integration/interceptor-decode-json": "^2.1.52",
|
|
30
|
-
"@kronos-integration/service": "^10.4.
|
|
31
|
-
"@kronos-integration/service-admin": "^3.4.
|
|
32
|
-
"@kronos-integration/service-authenticator": "^1.6.
|
|
33
|
-
"@kronos-integration/service-health": "^5.0.
|
|
34
|
-
"@kronos-integration/service-http": "^10.6.
|
|
35
|
-
"@kronos-integration/service-ldap": "^4.0.
|
|
36
|
-
"@kronos-integration/service-smtp": "^1.0.
|
|
30
|
+
"@kronos-integration/service": "^10.4.11",
|
|
31
|
+
"@kronos-integration/service-admin": "^3.4.42",
|
|
32
|
+
"@kronos-integration/service-authenticator": "^1.6.2",
|
|
33
|
+
"@kronos-integration/service-health": "^5.0.129",
|
|
34
|
+
"@kronos-integration/service-http": "^10.6.85",
|
|
35
|
+
"@kronos-integration/service-ldap": "^4.0.67",
|
|
36
|
+
"@kronos-integration/service-smtp": "^1.0.55",
|
|
37
37
|
"model-attributes": "^4.1.12"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@semantic-release/commit-analyzer": "^9.0.
|
|
41
|
-
"@semantic-release/exec": "^6.0.
|
|
40
|
+
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
41
|
+
"@semantic-release/exec": "^6.0.3",
|
|
42
42
|
"@semantic-release/release-notes-generator": "^10.0.2",
|
|
43
|
-
"ava": "^
|
|
43
|
+
"ava": "^4.0.1",
|
|
44
44
|
"c8": "^7.1.0",
|
|
45
|
-
"got": "
|
|
46
|
-
"npm-pkgbuild": "^6.12.
|
|
47
|
-
"semantic-release": "^18.0.
|
|
45
|
+
"got": "12.0.1",
|
|
46
|
+
"npm-pkgbuild": "^6.12.86",
|
|
47
|
+
"semantic-release": "^18.0.1"
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"@kronos-integration/service-systemd": "^2.5.
|
|
50
|
+
"@kronos-integration/service-systemd": "^2.5.3"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
|
53
|
-
"node": ">=
|
|
53
|
+
"node": ">=16.13.0"
|
|
54
54
|
},
|
|
55
55
|
"os": [
|
|
56
56
|
"linux"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"/usr/lib/sysusers.d/${name}.conf": "pacman/sysusers.conf"
|
|
93
93
|
},
|
|
94
94
|
"depends": {
|
|
95
|
-
"systemd": ">=
|
|
95
|
+
"systemd": ">=250.2",
|
|
96
96
|
"nginx-mainline": ">=1.21.1"
|
|
97
97
|
},
|
|
98
98
|
"groups": "user admin",
|
|
@@ -19,7 +19,9 @@ OOMPolicy=stop
|
|
|
19
19
|
User={{name}}
|
|
20
20
|
Group={{name}}
|
|
21
21
|
SupplementaryGroups=http
|
|
22
|
+
CapabilityBoundingSet=~CAP_SYS_BOOT
|
|
22
23
|
NoNewPrivileges=true
|
|
24
|
+
UMask=0077
|
|
23
25
|
ProtectSystem=full
|
|
24
26
|
ProtectHome=true
|
|
25
27
|
RuntimeDirectory={{name}}/http
|
|
@@ -38,12 +40,14 @@ ProtectKernelModules=true
|
|
|
38
40
|
ProtectKernelLogs=true
|
|
39
41
|
ProtectControlGroups=true
|
|
40
42
|
LockPersonality=true
|
|
43
|
+
RestrictRealtime=true
|
|
41
44
|
RestrictSUIDSGID=true
|
|
42
45
|
CPUWeight=10
|
|
43
46
|
IOWeight=10
|
|
44
47
|
MemoryAccounting=true
|
|
45
48
|
MemoryHigh=30M
|
|
46
49
|
MemoryMax=60M
|
|
50
|
+
ProtectProc=noaccess
|
|
47
51
|
SystemCallErrorNumber=EPERM
|
|
48
52
|
|
|
49
53
|
[Install]
|