Skip to content

Commit 980f697

Browse files
committed
update dependencies
1 parent fadcf2b commit 980f697

File tree

16 files changed

+899
-667
lines changed

16 files changed

+899
-667
lines changed

package-lock.json

Lines changed: 674 additions & 654 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,40 +57,40 @@
5757
"dependencies": {
5858
"@solid/acl-check": "^0.4.5",
5959
"@solid/oidc-auth-manager": "^0.24.1",
60-
"@solid/oidc-op": "0.11.1",
60+
"@solid/oidc-op": "0.11.2",
6161
"async-lock": "^1.2.8",
6262
"body-parser": "^1.19.0",
6363
"bootstrap": "^3.4.1",
6464
"busboy": "^0.3.1",
6565
"cached-path-relative": "^1.0.2",
6666
"camelize": "^1.0.0",
6767
"cheerio": "^1.0.0-rc.5",
68-
"colorette": "^1.2.1",
69-
"commander": "^7.0.0",
68+
"colorette": "^1.2.2",
69+
"commander": "^7.1.0",
7070
"cors": "^2.8.5",
7171
"debug": "^4.3.1",
7272
"express": "^4.17.1",
73-
"express-handlebars": "^5.2.0",
73+
"express-handlebars": "^5.2.1",
7474
"express-session": "^1.17.1",
7575
"extend": "^3.0.2",
7676
"from2": "^2.3.0",
7777
"fs-extra": "^9.1.0",
7878
"get-folder-size": "^2.0.1",
7979
"glob": "^7.1.6",
8080
"global-tunnel-ng": "^2.7.1",
81-
"handlebars": "^4.7.6",
81+
"handlebars": "^4.7.7",
8282
"http-proxy-middleware": "^1.0.6",
83-
"inquirer": "^7.3.3",
83+
"inquirer": "^8.0.0",
8484
"into-stream": "^6.0.0",
8585
"ip-range-check": "0.2.0",
8686
"is-ip": "^3.1.0",
8787
"li": "^1.3.0",
8888
"mashlib": "^1.6.9",
89-
"mime-types": "^2.1.28",
89+
"mime-types": "^2.1.29",
9090
"negotiator": "^0.6.2",
9191
"node-fetch": "^2.6.1",
9292
"node-forge": "^0.10.0",
93-
"nodemailer": "^6.4.17",
93+
"nodemailer": "^6.5.0",
9494
"oidc-op-express": "^0.0.3",
9595
"owasp-password-strength-test": "^1.3.0",
9696
"rdflib": "^2.1.7",
@@ -101,28 +101,28 @@
101101
"text-encoder-lite": "^2.0.0",
102102
"the-big-username-blacklist": "^1.5.2",
103103
"ulid": "^2.3.0",
104-
"urijs": "^1.19.5",
104+
"urijs": "^1.19.6",
105105
"uuid": "^8.3.2",
106106
"valid-url": "^1.0.9",
107107
"validator": "^13.5.2",
108108
"vhost": "^3.0.2"
109109
},
110110
"devDependencies": {
111111
"@solid/solid-auth-oidc": "^0.3.0",
112-
"chai": "4.2.0",
112+
"chai": "4.3.3",
113113
"chai-as-promised": "7.1.1",
114114
"cross-env": "7.0.3",
115115
"dirty-chai": "2.0.1",
116116
"localstorage-memory": "1.0.3",
117-
"mocha": "8.2.1",
118-
"nock": "13.0.7",
117+
"mocha": "8.3.0",
118+
"nock": "13.0.10",
119119
"node-mocks-http": "1.10.1",
120120
"nyc": "15.1.0",
121121
"pre-commit": "1.2.2",
122122
"randombytes": "2.1.0",
123123
"sinon": "9.2.4",
124124
"sinon-chai": "3.5.0",
125-
"snyk": "1.441.0",
125+
"snyk": "1.473.0",
126126
"standard": "16.0.3",
127127
"supertest": "6.1.3",
128128
"turtle-validator": "1.1.1",
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Root ACL resource for the root
2+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
3+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
4+
5+
<#public>
6+
a acl:Authorization;
7+
acl:agentClass foaf:Agent; # everyone
8+
acl:accessTo </>;
9+
acl:default </common/>;
10+
acl:mode acl:Read.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ACL for the default .well-known/ resource
2+
# Server operators will be able to override it as they wish
3+
# Public-readable
4+
5+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+
<#public>
9+
a acl:Authorization;
10+
11+
acl:agentClass foaf:Agent; # everyone
12+
13+
acl:accessTo </.well-known/>;
14+
15+
acl:mode acl:Read.
4.19 KB
Binary file not shown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ACL for the default favicon.ico resource
2+
# Server operators will be able to override it as they wish
3+
# Public-readable
4+
5+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+
<#public>
9+
a acl:Authorization;
10+
11+
acl:agentClass foaf:Agent; # everyone
12+
13+
acl:accessTo </favicon.ico>;
14+
15+
acl:mode acl:Read.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Welcome to Solid</title>
7+
<link rel="stylesheet" href="/common/css/bootstrap.min.css">
8+
<link rel="stylesheet" href="/common/css/solid.css">
9+
</head>
10+
<body>
11+
<div class="container">
12+
<div class="page-header">
13+
<div class="pull-right">
14+
<button id="register" type="button" class="btn btn-primary">Register</button>
15+
<button id="login" type="button" class="hidden btn btn-default btn-success">Log in</button>
16+
<button id="logout" type="button" class="hidden btn btn-danger">Log out</button>
17+
</div>
18+
19+
<h1>Welcome to the Solid Prototype</h1>
20+
</div>
21+
22+
<p class="lead">
23+
This is a prototype implementation of a Solid server.
24+
25+
It is a fully functional server, but there are no security or stability guarantees.
26+
27+
If you have not already done so, please create an account.
28+
</p>
29+
30+
<p class="lead hidden" id="loggedIn">
31+
You are logged in as
32+
<a href="#" id="profileLink"></a>.
33+
</p>
34+
35+
<section>
36+
<h2>Server info</h2>
37+
<dl>
38+
<dt>Name</dt>
39+
<dd>localhost</dd>
40+
<dt>Details</dt>
41+
<dd>Running on <a href="https://github.com/solid/node-solid-server/releases/tag/v5.6.4">Solid 5.6.4</a></dd>
42+
</dl>
43+
</section>
44+
</div>
45+
<script src="/common/js/solid-auth-client.bundle.js"></script>
46+
<script src="/common/js/auth-buttons.js"></script>
47+
</body>
48+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
# Allow all crawling (subject to ACLs as usual, of course)
3+
Disallow:
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ACL for the default robots.txt resource
2+
# Server operators will be able to override it as they wish
3+
# Public-readable
4+
5+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+
<#public>
9+
a acl:Authorization;
10+
11+
acl:agentClass foaf:Agent; # everyone
12+
13+
acl:accessTo </robots.txt>;
14+
15+
acl:mode acl:Read.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Root ACL resource for the root
2+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
3+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
4+
5+
<#public>
6+
a acl:Authorization;
7+
acl:agentClass foaf:Agent; # everyone
8+
acl:accessTo </>;
9+
acl:default </common/>;
10+
acl:mode acl:Read.

0 commit comments

Comments
 (0)