diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b0d576ee..058f44491 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ # Changelog All notable changes to this project will be documented in this file. + +## [v1.0.0-beta.0](https://github.com/solid/community-server/compare/v0.9.0...v1.0.0-beta.0) - 2021-06-29 + +### Added +* [feat: Support creation of HTTPS server](https://github.com/solid/community-server/commit/7faad0aef0f0d9d5c106e57c16e17340cb1ba303) +* [feat: Combine pod creation with IDP registration](https://github.com/solid/community-server/commit/4d7d939dc4ab0a4da3eca6e0656cb0325aba06e2) +* [feat: Create ErrorHandler to convert errors to Representations](https://github.com/solid/community-server/commit/e1f95877dac6a8f77d2c7a687bf478440ee5cb17) +* [feat: Add showStackTrace CLI variable](https://github.com/solid/community-server/commit/b604dd8331e1c7682dd6080c696981855e277df6) +* [feat: Create WWW-Authenticate metadata writer](https://github.com/solid/community-server/commit/e3c5b3975266e5eee3939f9d1e8f5e0537417782) +* [Expose constant Allow header](https://github.com/solid/community-server/commit/a6371b073597ae922c3374d952dfdf2f920017ac) +* [feat: Add ErrorToHtmlConverter using templates](https://github.com/solid/community-server/commit/9c0fa775276b8ba3383d25a155a2507309e0a1de) +* [fix: Support BGPs with variables in SPARQL UPDATE queries](https://github.com/solid/community-server/commit/f299b36e2429245bf82be85ca0cccf733d658619) + +### Changed +* [refactor: Move config templates to templates folder](https://github.com/solid/community-server/commit/fadbaefce239e2367c0d24727edf1afb14cbf03d) +* [feat: Split preset configurations by feature](https://github.com/solid/community-server/commit/452032e3120d490d7261b9d304c8c393410f0406) +* [feat: Remove /interaction/:uid from IDP URLs](https://github.com/solid/community-server/commit/df33b6dc472490568490ad5de4a011938e9cb205) + +### Fixed +* [fix: Support missing type preferences in ChainedConverter](https://github.com/solid/community-server/commit/52a3b84ee0dd55baed0dd244f75c12d06ed77666) +* [fix: Add solid_oidc_supported to openid config](https://github.com/solid/community-server/commit/b328f9a1b06e2bc7994a82d4a7f90712a19c9b88) + + ## [v0.9.0](https://github.com/solid/community-server/compare/v0.8.1...v0.9.0) - 2021-05-04 diff --git a/config/app/app/default.json b/config/app/app/default.json index 8d218fb17..d1e7fb2e6 100644 --- a/config/app/app/default.json +++ b/config/app/app/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "This is the entry point to the application. It can be used to both start and stop the server.", diff --git a/config/app/init/base/init.json b/config/app/init/base/init.json index f2d1467a2..cd9b8fc8c 100644 --- a/config/app/init/base/init.json +++ b/config/app/init/base/init.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/init/initializers/logger.json", "files-scs:config/app/init/initializers/server.json" diff --git a/config/app/init/default.json b/config/app/init/default.json index 88cf74038..373aaa2a4 100644 --- a/config/app/init/default.json +++ b/config/app/init/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/init/base/init.json", "files-scs:config/app/init/initializers/root-container.json" diff --git a/config/app/init/initializers/logger.json b/config/app/init/initializers/logger.json index ed0a3ef85..1511a9451 100644 --- a/config/app/init/initializers/logger.json +++ b/config/app/init/initializers/logger.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/app/init/initializers/root-container.json b/config/app/init/initializers/root-container.json index af8b6c85b..22cbdbcb7 100644 --- a/config/app/init/initializers/root-container.json +++ b/config/app/init/initializers/root-container.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Makes sure the root container exists and marks it as pim:Storage.", diff --git a/config/app/init/initializers/server.json b/config/app/init/initializers/server.json index 04cfb99c7..d12f05182 100644 --- a/config/app/init/initializers/server.json +++ b/config/app/init/initializers/server.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Creates the server that starts listening for requests.", diff --git a/config/default.json b/config/default.json index 9c270b5e6..2c1830d3a 100644 --- a/config/default.json +++ b/config/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/dynamic.json b/config/dynamic.json index 1feab9e32..b471355d6 100644 --- a/config/dynamic.json +++ b/config/dynamic.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/example-https-file.json b/config/example-https-file.json index 7ddcfad3e..7e9e3cc72 100644 --- a/config/example-https-file.json +++ b/config/example-https-file.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/file.json b/config/file.json index 506ae6e41..c045f0189 100644 --- a/config/file.json +++ b/config/file.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/http/handler/default.json b/config/http/handler/default.json index e3ceae77a..14001848d 100644 --- a/config/http/handler/default.json +++ b/config/http/handler/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "These are all the handlers a request will go through until it is handled.", diff --git a/config/http/handler/simple.json b/config/http/handler/simple.json index ac98ba783..d39ef2240 100644 --- a/config/http/handler/simple.json +++ b/config/http/handler/simple.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "This version of the server has no IDP or pod provisioning.", diff --git a/config/http/middleware/handlers/constant-headers.json b/config/http/middleware/handlers/constant-headers.json index e377edfc5..0687b37f7 100644 --- a/config/http/middleware/handlers/constant-headers.json +++ b/config/http/middleware/handlers/constant-headers.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Adds several constant headers.", diff --git a/config/http/middleware/handlers/cors.json b/config/http/middleware/handlers/cors.json index 6cf4bc978..b5cc6cfa6 100644 --- a/config/http/middleware/handlers/cors.json +++ b/config/http/middleware/handlers/cors.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Adds all the necessary CORS headers.", diff --git a/config/http/middleware/handlers/updates-via.json b/config/http/middleware/handlers/updates-via.json index 559559f31..6bb67cbcf 100644 --- a/config/http/middleware/handlers/updates-via.json +++ b/config/http/middleware/handlers/updates-via.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Advertises the websocket connection.", diff --git a/config/http/middleware/no-websockets.json b/config/http/middleware/no-websockets.json index dced489de..5e07fe929 100644 --- a/config/http/middleware/no-websockets.json +++ b/config/http/middleware/no-websockets.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/http/middleware/handlers/constant-headers.json", "files-scs:config/http/middleware/handlers/cors.json" diff --git a/config/http/middleware/websockets.json b/config/http/middleware/websockets.json index d1deec8a0..0a11bfc7e 100644 --- a/config/http/middleware/websockets.json +++ b/config/http/middleware/websockets.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/http/middleware/handlers/constant-headers.json", "files-scs:config/http/middleware/handlers/cors.json", diff --git a/config/http/server-factory/https-example.json b/config/http/server-factory/https-example.json index c668030ff..231af2799 100644 --- a/config/http/server-factory/https-example.json +++ b/config/http/server-factory/https-example.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "An example of how to set up a server with HTTPS", diff --git a/config/http/server-factory/no-websockets.json b/config/http/server-factory/no-websockets.json index a64496a52..f470e4801 100644 --- a/config/http/server-factory/no-websockets.json +++ b/config/http/server-factory/no-websockets.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Creates a server that supports HTTP requests.", diff --git a/config/http/server-factory/websockets.json b/config/http/server-factory/websockets.json index 954b5d18d..547ff9c28 100644 --- a/config/http/server-factory/websockets.json +++ b/config/http/server-factory/websockets.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Creates a server that supports both websocket and HTTP requests.", diff --git a/config/http/static/default.json b/config/http/static/default.json index 956579b69..9cd96a8db 100644 --- a/config/http/static/default.json +++ b/config/http/static/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Servers static files on fixed URLs.", diff --git a/config/identity/email/default.json b/config/identity/email/default.json index bac810fdc..9bea4793e 100644 --- a/config/identity/email/default.json +++ b/config/identity/email/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "The default configuration does not contain credentials for an email client. In production systems, you likely want to set up your own.", diff --git a/config/identity/email/example.json b/config/identity/email/example.json index 53c9b1d63..62d3c52fc 100644 --- a/config/identity/email/example.json +++ b/config/identity/email/example.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "This is an example of what an actual email sender configuration would look like.", diff --git a/config/identity/handler/adapter-factory/wrapped-fetch.json b/config/identity/handler/adapter-factory/wrapped-fetch.json index c7cbd1e5d..18b9796f9 100644 --- a/config/identity/handler/adapter-factory/wrapped-fetch.json +++ b/config/identity/handler/adapter-factory/wrapped-fetch.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "An adapter is responsible for storing all interaction metadata.", diff --git a/config/identity/handler/default.json b/config/identity/handler/default.json index 70731104f..95df54bf0 100644 --- a/config/identity/handler/default.json +++ b/config/identity/handler/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/identity/handler/adapter-factory/wrapped-fetch.json", "files-scs:config/identity/handler/interaction/handler.json", diff --git a/config/identity/handler/interaction/handler.json b/config/identity/handler/interaction/handler.json index ea15fc92b..d0122ebc7 100644 --- a/config/identity/handler/interaction/handler.json +++ b/config/identity/handler/interaction/handler.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/identity/handler/interaction/handlers/forgot-password.json", "files-scs:config/identity/handler/interaction/handlers/initial.json", diff --git a/config/identity/handler/interaction/handlers/forgot-password.json b/config/identity/handler/interaction/handlers/forgot-password.json index 38286fbdb..e24306d80 100644 --- a/config/identity/handler/interaction/handlers/forgot-password.json +++ b/config/identity/handler/interaction/handlers/forgot-password.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Handles all functionality on the forgot password page", diff --git a/config/identity/handler/interaction/handlers/initial.json b/config/identity/handler/interaction/handlers/initial.json index f66422410..2b66e8e94 100644 --- a/config/identity/handler/interaction/handlers/initial.json +++ b/config/identity/handler/interaction/handlers/initial.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Handles the initial route when the user is directed from their app to the IdP", diff --git a/config/identity/handler/interaction/handlers/login.json b/config/identity/handler/interaction/handlers/login.json index e9245b7c5..c4b73334d 100644 --- a/config/identity/handler/interaction/handlers/login.json +++ b/config/identity/handler/interaction/handlers/login.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Handles all functionality on the Login Page", diff --git a/config/identity/handler/interaction/handlers/registration.json b/config/identity/handler/interaction/handlers/registration.json index 2b4a8085f..ae7164056 100644 --- a/config/identity/handler/interaction/handlers/registration.json +++ b/config/identity/handler/interaction/handlers/registration.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Handles all functionality on the register page", diff --git a/config/identity/handler/interaction/handlers/reset-password.json b/config/identity/handler/interaction/handlers/reset-password.json index 15e6edaff..4dee646cc 100644 --- a/config/identity/handler/interaction/handlers/reset-password.json +++ b/config/identity/handler/interaction/handlers/reset-password.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "comment": "Exports 2 handlers: one for viewing the page and one for doing the reset.", "@graph": [ { diff --git a/config/identity/handler/interaction/handlers/session.json b/config/identity/handler/interaction/handlers/session.json index 57066c13f..a1bc0b942 100644 --- a/config/identity/handler/interaction/handlers/session.json +++ b/config/identity/handler/interaction/handlers/session.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Handles confirm requests", diff --git a/config/identity/handler/key-value/resource-store.json b/config/identity/handler/key-value/resource-store.json index 952362fd7..97e4a285a 100644 --- a/config/identity/handler/key-value/resource-store.json +++ b/config/identity/handler/key-value/resource-store.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "This storage specifically uses the same path as the IDP routing, thereby guaranteeing outside access is impossible.", diff --git a/config/identity/handler/provider-factory/identity.json b/config/identity/handler/provider-factory/identity.json index c84487683..804a794a0 100644 --- a/config/identity/handler/provider-factory/identity.json +++ b/config/identity/handler/provider-factory/identity.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Sets all the relevant oidc parameters.", diff --git a/config/identity/ownership/token.json b/config/identity/ownership/token.json index 3d00b3510..8a6ec1105 100644 --- a/config/identity/ownership/token.json +++ b/config/identity/ownership/token.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Determines WebID ownership by requesting a specific value to be added to the WebID document", diff --git a/config/identity/ownership/unsafe-no-check.json b/config/identity/ownership/unsafe-no-check.json index 47ff7a753..ec9325426 100644 --- a/config/identity/ownership/unsafe-no-check.json +++ b/config/identity/ownership/unsafe-no-check.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/identity/pod/dynamic.json b/config/identity/pod/dynamic.json index c4051e557..e72f0ef2d 100644 --- a/config/identity/pod/dynamic.json +++ b/config/identity/pod/dynamic.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/identity/pod/pod-generators/templated.json", "files-scs:config/identity/pod/resource-generators/templated.json" diff --git a/config/identity/pod/pod-generators/templated.json b/config/identity/pod/pod-generators/templated.json index 33ed6a46c..2247679ec 100644 --- a/config/identity/pod/pod-generators/templated.json +++ b/config/identity/pod/pod-generators/templated.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Generates ResourceStores that correspond to new pods.", diff --git a/config/identity/pod/resource-generators/templated.json b/config/identity/pod/resource-generators/templated.json index fcae05798..bf7152f14 100644 --- a/config/identity/pod/resource-generators/templated.json +++ b/config/identity/pod/resource-generators/templated.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Generates resources based on the templates stored in the template folder.", diff --git a/config/identity/pod/static.json b/config/identity/pod/static.json index 356872ccd..db259c47d 100644 --- a/config/identity/pod/static.json +++ b/config/identity/pod/static.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/identity/pod/resource-generators/templated.json" ], diff --git a/config/ldp/authentication/debug-auth-header.json b/config/ldp/authentication/debug-auth-header.json index 2d1222f93..b7a6cd387 100644 --- a/config/ldp/authentication/debug-auth-header.json +++ b/config/ldp/authentication/debug-auth-header.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/ldp/authentication/debug-test-agent.json b/config/ldp/authentication/debug-test-agent.json index 4b0e53d67..f7a79b33a 100644 --- a/config/ldp/authentication/debug-test-agent.json +++ b/config/ldp/authentication/debug-test-agent.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/ldp/authentication/dpop-bearer.json b/config/ldp/authentication/dpop-bearer.json index 9b79e406c..8a1182c9b 100644 --- a/config/ldp/authentication/dpop-bearer.json +++ b/config/ldp/authentication/dpop-bearer.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Supports DPoP and Bearer access tokens, or no credentials.", diff --git a/config/ldp/authorization/allow-everything.json b/config/ldp/authorization/allow-everything.json index abf1a40d6..a6dfb8e0a 100644 --- a/config/ldp/authorization/allow-everything.json +++ b/config/ldp/authorization/allow-everything.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/ldp/authorization/authorizers/acl.json b/config/ldp/authorization/authorizers/acl.json index 89fc89510..4ede94e85 100644 --- a/config/ldp/authorization/authorizers/acl.json +++ b/config/ldp/authorization/authorizers/acl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "@id": "urn:solid-server:default:WebAclAuthorizer", diff --git a/config/ldp/authorization/webacl.json b/config/ldp/authorization/webacl.json index 9d435147a..cbcab10c4 100644 --- a/config/ldp/authorization/webacl.json +++ b/config/ldp/authorization/webacl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/ldp/authorization/authorizers/acl.json" ], diff --git a/config/ldp/handler/components/error-handler.json b/config/ldp/handler/components/error-handler.json index 591ea950b..027c9f412 100644 --- a/config/ldp/handler/components/error-handler.json +++ b/config/ldp/handler/components/error-handler.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Changes an error into a valid representation to send as a response.", diff --git a/config/ldp/handler/components/operation-handler.json b/config/ldp/handler/components/operation-handler.json index 503503a95..37fd10f51 100644 --- a/config/ldp/handler/components/operation-handler.json +++ b/config/ldp/handler/components/operation-handler.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "@id": "urn:solid-server:default:OperationHandler", diff --git a/config/ldp/handler/components/request-parser.json b/config/ldp/handler/components/request-parser.json index 735e0e8b4..a97b407d1 100644 --- a/config/ldp/handler/components/request-parser.json +++ b/config/ldp/handler/components/request-parser.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Handles everything related to parsing a Request.", diff --git a/config/ldp/handler/components/response-writer.json b/config/ldp/handler/components/response-writer.json index 371f3426b..b02991cc0 100644 --- a/config/ldp/handler/components/response-writer.json +++ b/config/ldp/handler/components/response-writer.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Writes the result to the response stream.", diff --git a/config/ldp/handler/default.json b/config/ldp/handler/default.json index 430983de2..aca4b94a6 100644 --- a/config/ldp/handler/default.json +++ b/config/ldp/handler/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/ldp/handler/components/error-handler.json", "files-scs:config/ldp/handler/components/operation-handler.json", diff --git a/config/ldp/metadata-parser/default.json b/config/ldp/metadata-parser/default.json index 503b1724e..b6e66735c 100644 --- a/config/ldp/metadata-parser/default.json +++ b/config/ldp/metadata-parser/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Converts request metadata (e.g. headers) to RDF metadata.", diff --git a/config/ldp/metadata-writer/default.json b/config/ldp/metadata-writer/default.json index 98f2d0e6c..e4dd301d3 100644 --- a/config/ldp/metadata-writer/default.json +++ b/config/ldp/metadata-writer/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/ldp/metadata-writer/writers/constant.json", "files-scs:config/ldp/metadata-writer/writers/link-rel.json", diff --git a/config/ldp/metadata-writer/writers/constant.json b/config/ldp/metadata-writer/writers/constant.json index c975f03b6..7f82c7026 100644 --- a/config/ldp/metadata-writer/writers/constant.json +++ b/config/ldp/metadata-writer/writers/constant.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Adds fixed headers to the response.", diff --git a/config/ldp/metadata-writer/writers/link-rel.json b/config/ldp/metadata-writer/writers/link-rel.json index 669cddcc9..bd21fbe1a 100644 --- a/config/ldp/metadata-writer/writers/link-rel.json +++ b/config/ldp/metadata-writer/writers/link-rel.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Converts all triples with the given predicates to Link headers.", diff --git a/config/ldp/metadata-writer/writers/mapped.json b/config/ldp/metadata-writer/writers/mapped.json index 74c3b1254..7352207b4 100644 --- a/config/ldp/metadata-writer/writers/mapped.json +++ b/config/ldp/metadata-writer/writers/mapped.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Converts all triples with the given predicate to headers of the given type.", diff --git a/config/ldp/metadata-writer/writers/wac-allow.json b/config/ldp/metadata-writer/writers/wac-allow.json index a612d1398..0f00d12c6 100644 --- a/config/ldp/metadata-writer/writers/wac-allow.json +++ b/config/ldp/metadata-writer/writers/wac-allow.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Adds the correct Wac-Allow header.", diff --git a/config/ldp/metadata-writer/writers/www-auth.json b/config/ldp/metadata-writer/writers/www-auth.json index af206aa04..eb10217af 100644 --- a/config/ldp/metadata-writer/writers/www-auth.json +++ b/config/ldp/metadata-writer/writers/www-auth.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Adds the WWW-Authenticate header on 401 responses. The current auth value is required for the legacy solid-auth-client.", diff --git a/config/ldp/permissions/acl.json b/config/ldp/permissions/acl.json index d2b8f7ed9..c447e84ea 100644 --- a/config/ldp/permissions/acl.json +++ b/config/ldp/permissions/acl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Makes sure acl files require control permissions.", diff --git a/config/ldp/permissions/no-acl.json b/config/ldp/permissions/no-acl.json index 9fe84eb4f..a9999029a 100644 --- a/config/ldp/permissions/no-acl.json +++ b/config/ldp/permissions/no-acl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Extracts the required permissions based on the HTTP method.", diff --git a/config/memory-subdomains.json b/config/memory-subdomains.json index 93edc64f6..628f7478a 100644 --- a/config/memory-subdomains.json +++ b/config/memory-subdomains.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/path-routing.json b/config/path-routing.json index ca714da2b..0db53d5af 100644 --- a/config/path-routing.json +++ b/config/path-routing.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/sparql-endpoint.json b/config/sparql-endpoint.json index b453f8b3d..f3fc0ca0b 100644 --- a/config/sparql-endpoint.json +++ b/config/sparql-endpoint.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/config/storage/key-value/memory.json b/config/storage/key-value/memory.json index 7aa34a5c8..2ebc55417 100644 --- a/config/storage/key-value/memory.json +++ b/config/storage/key-value/memory.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Used for internal storage by some classes. This uses a memory based solution.", diff --git a/config/storage/key-value/resource-store.json b/config/storage/key-value/resource-store.json index c74de22d7..4fb911cf7 100644 --- a/config/storage/key-value/resource-store.json +++ b/config/storage/key-value/resource-store.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Used for internal storage by some classes. The specified container in the resource store will store internal data.", diff --git a/config/storage/resource-store/data-accessors/file.json b/config/storage/resource-store/data-accessors/file.json index dbfbd159d..b5c407d80 100644 --- a/config/storage/resource-store/data-accessors/file.json +++ b/config/storage/resource-store/data-accessors/file.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Stores data on a file system.", diff --git a/config/storage/resource-store/data-accessors/memory.json b/config/storage/resource-store/data-accessors/memory.json index 1cabb705f..cf2222d24 100644 --- a/config/storage/resource-store/data-accessors/memory.json +++ b/config/storage/resource-store/data-accessors/memory.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Stores data in memory.", diff --git a/config/storage/resource-store/data-accessors/sparql-endpoint.json b/config/storage/resource-store/data-accessors/sparql-endpoint.json index 0b620af04..cb6742691 100644 --- a/config/storage/resource-store/data-accessors/sparql-endpoint.json +++ b/config/storage/resource-store/data-accessors/sparql-endpoint.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Stores data on a SPARQL endpoint. Only supports quad object streams.", diff --git a/config/storage/resource-store/dynamic.json b/config/storage/resource-store/dynamic.json index 4d81b72c6..35601dde3 100644 --- a/config/storage/resource-store/dynamic.json +++ b/config/storage/resource-store/dynamic.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/storage/resource-store/data-accessors/file.json", "files-scs:config/storage/resource-store/stores/converting.json", diff --git a/config/storage/resource-store/file.json b/config/storage/resource-store/file.json index 8cc0667ae..ed1741165 100644 --- a/config/storage/resource-store/file.json +++ b/config/storage/resource-store/file.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/storage/resource-store/data-accessors/file.json", "files-scs:config/storage/resource-store/stores/converting.json", diff --git a/config/storage/resource-store/memory.json b/config/storage/resource-store/memory.json index 246e27c8a..0801531b8 100644 --- a/config/storage/resource-store/memory.json +++ b/config/storage/resource-store/memory.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/storage/resource-store/data-accessors/memory.json", "files-scs:config/storage/resource-store/stores/converting.json", diff --git a/config/storage/resource-store/regex.json b/config/storage/resource-store/regex.json index 5c159c1c1..0b9ea6533 100644 --- a/config/storage/resource-store/regex.json +++ b/config/storage/resource-store/regex.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/storage/resource-store/data-accessors/file.json", "files-scs:config/storage/resource-store/data-accessors/memory.json", diff --git a/config/storage/resource-store/sparql.json b/config/storage/resource-store/sparql.json index 99346e9b1..2b4fd5b8b 100644 --- a/config/storage/resource-store/sparql.json +++ b/config/storage/resource-store/sparql.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/storage/resource-store/data-accessors/sparql-endpoint.json", "files-scs:config/storage/resource-store/stores/converting.json", diff --git a/config/storage/resource-store/stores/converting.json b/config/storage/resource-store/stores/converting.json index 1473ff339..a98bdee4d 100644 --- a/config/storage/resource-store/stores/converting.json +++ b/config/storage/resource-store/stores/converting.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Converts all outgoing resources based on the preferences.", diff --git a/config/storage/resource-store/stores/data-accessor.json b/config/storage/resource-store/stores/data-accessor.json index fc813aeaf..f489e4c3d 100644 --- a/config/storage/resource-store/stores/data-accessor.json +++ b/config/storage/resource-store/stores/data-accessor.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Supports default Solid behaviour on any kind of data accessor.", diff --git a/config/storage/resource-store/stores/locking.json b/config/storage/resource-store/stores/locking.json index ab21f56c6..5ddddd4cf 100644 --- a/config/storage/resource-store/stores/locking.json +++ b/config/storage/resource-store/stores/locking.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Locks resources when they are accessed until the operation is finished.", diff --git a/config/storage/resource-store/stores/monitoring.json b/config/storage/resource-store/stores/monitoring.json index 05fdae5dc..11720a31e 100644 --- a/config/storage/resource-store/stores/monitoring.json +++ b/config/storage/resource-store/stores/monitoring.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Emits events on changes to resources.", diff --git a/config/storage/resource-store/stores/patching.json b/config/storage/resource-store/stores/patching.json index 5e5cfd838..526cc08c4 100644 --- a/config/storage/resource-store/stores/patching.json +++ b/config/storage/resource-store/stores/patching.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Allows for PATCH operations on stores that don't have native support.", diff --git a/config/storage/resource-store/stores/routing.json b/config/storage/resource-store/stores/routing.json index b2da91f8e..b1bd43940 100644 --- a/config/storage/resource-store/stores/routing.json +++ b/config/storage/resource-store/stores/routing.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Routes data to different stores based on the chosen rule.", diff --git a/config/util/auxiliary/acl.json b/config/util/auxiliary/acl.json index 31e61de18..1b62b7754 100644 --- a/config/util/auxiliary/acl.json +++ b/config/util/auxiliary/acl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/util/auxiliary/strategies/acl.json" ], diff --git a/config/util/auxiliary/no-acl.json b/config/util/auxiliary/no-acl.json index cb2e6ff01..e7151ee0e 100644 --- a/config/util/auxiliary/no-acl.json +++ b/config/util/auxiliary/no-acl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/util/auxiliary/strategies/acl.json b/config/util/auxiliary/strategies/acl.json index b6d12b0ad..ad8af3a02 100644 --- a/config/util/auxiliary/strategies/acl.json +++ b/config/util/auxiliary/strategies/acl.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Contains all features of acl auxiliary resources (suffix, link header, etc.).", diff --git a/config/util/identifiers/subdomain.json b/config/util/identifiers/subdomain.json index 6b93aca9a..ac9fbba18 100644 --- a/config/util/identifiers/subdomain.json +++ b/config/util/identifiers/subdomain.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "comment": "Supports multiple roots such as both http://test.com/ and http://alice.test.com/.", "@graph": [ { diff --git a/config/util/identifiers/suffix.json b/config/util/identifiers/suffix.json index c55f652ff..917a9e3f0 100644 --- a/config/util/identifiers/suffix.json +++ b/config/util/identifiers/suffix.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "comment": "Only supports a single root, such as http://test.com/. A new pod URL would be http://test.com/alice/.", "@graph": [ { diff --git a/config/util/index/default.json b/config/util/index/default.json index 49ee736e0..a771ddd84 100644 --- a/config/util/index/default.json +++ b/config/util/index/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "This value can be used to set a custom handler for index files. See the example file.", diff --git a/config/util/index/example.json b/config/util/index/example.json index e60eeaa8f..7fdb4ca46 100644 --- a/config/util/index/example.json +++ b/config/util/index/example.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": [ diff --git a/config/util/logging/no-logging.json b/config/util/logging/no-logging.json index 11eab3b2a..4912bc3e9 100644 --- a/config/util/logging/no-logging.json +++ b/config/util/logging/no-logging.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Ignores log messages.", diff --git a/config/util/logging/winston.json b/config/util/logging/winston.json index d5f028f07..059a3bf29 100644 --- a/config/util/logging/winston.json +++ b/config/util/logging/winston.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Uses the winston library for logging", diff --git a/config/util/representation-conversion/converters/content-type-replacer.json b/config/util/representation-conversion/converters/content-type-replacer.json index 933365f66..0e315dd64 100644 --- a/config/util/representation-conversion/converters/content-type-replacer.json +++ b/config/util/representation-conversion/converters/content-type-replacer.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Changes content-type without changing content. E.g., if application/json is requested, application/ld+json is also valid.", diff --git a/config/util/representation-conversion/converters/quad-to-rdf.json b/config/util/representation-conversion/converters/quad-to-rdf.json index 275422c36..8f3fde286 100644 --- a/config/util/representation-conversion/converters/quad-to-rdf.json +++ b/config/util/representation-conversion/converters/quad-to-rdf.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Converts Quad objects to many RDF serialization.", diff --git a/config/util/representation-conversion/converters/rdf-to-quad.json b/config/util/representation-conversion/converters/rdf-to-quad.json index 62c40321e..e7e21c075 100644 --- a/config/util/representation-conversion/converters/rdf-to-quad.json +++ b/config/util/representation-conversion/converters/rdf-to-quad.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Converts many RDF serialization to Quad objects.", diff --git a/config/util/representation-conversion/default.json b/config/util/representation-conversion/default.json index 3c23ae87b..3265be779 100644 --- a/config/util/representation-conversion/default.json +++ b/config/util/representation-conversion/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/util/representation-conversion/converters/content-type-replacer.json", "files-scs:config/util/representation-conversion/converters/quad-to-rdf.json", diff --git a/config/util/resource-locker/memory.json b/config/util/resource-locker/memory.json index e72cbfef5..3175f50f4 100644 --- a/config/util/resource-locker/memory.json +++ b/config/util/resource-locker/memory.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Allows multiple simultaneous read operations. Locks are stored in memory. Locks expire after inactivity.", diff --git a/config/util/resource-locker/redis.json b/config/util/resource-locker/redis.json index 1ee708a63..54cf945f4 100644 --- a/config/util/resource-locker/redis.json +++ b/config/util/resource-locker/redis.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "@graph": [ { "comment": "Allows multiple simultaneous read operations. Locks are stored in memory. Locks expire after inactivity.", diff --git a/config/util/variables/default.json b/config/util/variables/default.json index d7cc6e5aa..14eb2e45e 100644 --- a/config/util/variables/default.json +++ b/config/util/variables/default.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "comment": "Variables used throughout the other configs. Can be set using the CLI.", "@graph": [ { diff --git a/package-lock.json b/package-lock.json index 14f78c078..e4ef993c4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@solid/community-server", - "version": "0.9.0", + "version": "1.0.0-beta.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5c7207bd2..69fd6dcef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@solid/community-server", - "version": "0.9.0", + "version": "1.0.0-beta.0", "description": "Community Solid Server: an open and modular implementation of the Solid specifications", "keywords": [ "solid", @@ -20,13 +20,13 @@ "lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server", "lsd:components": "dist/components/components.jsonld", "lsd:contexts": { - "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld": "dist/components/context.jsonld" + "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld": "dist/components/context.jsonld" }, "lsd:importPaths": { - "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/": "dist/components/", - "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/config/": "config/", - "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/dist/": "dist/", - "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/templates/config/": "templates/config/" + "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/": "dist/components/", + "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/config/": "config/", + "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/dist/": "dist/", + "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/templates/config/": "templates/config/" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/templates/config/defaults.json b/templates/config/defaults.json index b4dcbe127..0206c1f0f 100644 --- a/templates/config/defaults.json +++ b/templates/config/defaults.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/util/auxiliary/acl.json", "files-scs:config/util/index/default.json", diff --git a/templates/config/filesystem.json b/templates/config/filesystem.json index e077e69cb..1aa123acf 100644 --- a/templates/config/filesystem.json +++ b/templates/config/filesystem.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:templates/config/defaults.json" ], diff --git a/templates/config/memory.json b/templates/config/memory.json index c2dd9ccde..947bf437e 100644 --- a/templates/config/memory.json +++ b/templates/config/memory.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:templates/config/defaults.json" ], diff --git a/test/integration/config/ldp-with-auth.json b/test/integration/config/ldp-with-auth.json index 40260eed4..6a5899274 100644 --- a/test/integration/config/ldp-with-auth.json +++ b/test/integration/config/ldp-with-auth.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/test/integration/config/run-with-redlock.json b/test/integration/config/run-with-redlock.json index 6e22689a2..f55d6b10b 100644 --- a/test/integration/config/run-with-redlock.json +++ b/test/integration/config/run-with-redlock.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/test/integration/config/server-dynamic-unsafe.json b/test/integration/config/server-dynamic-unsafe.json index 476949939..9bea807d6 100644 --- a/test/integration/config/server-dynamic-unsafe.json +++ b/test/integration/config/server-dynamic-unsafe.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/test/integration/config/server-memory.json b/test/integration/config/server-memory.json index 250c65ad5..c96314719 100644 --- a/test/integration/config/server-memory.json +++ b/test/integration/config/server-memory.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/test/integration/config/server-middleware.json b/test/integration/config/server-middleware.json index 40e32a961..1c7b598fa 100644 --- a/test/integration/config/server-middleware.json +++ b/test/integration/config/server-middleware.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/http/handler/simple.json", "files-scs:config/http/middleware/websockets.json", diff --git a/test/integration/config/server-subdomains-unsafe.json b/test/integration/config/server-subdomains-unsafe.json index c971044d2..dd3af6528 100644 --- a/test/integration/config/server-subdomains-unsafe.json +++ b/test/integration/config/server-subdomains-unsafe.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json", diff --git a/test/integration/config/server-without-auth.json b/test/integration/config/server-without-auth.json index f97ef2358..66b316cff 100644 --- a/test/integration/config/server-without-auth.json +++ b/test/integration/config/server-without-auth.json @@ -1,5 +1,5 @@ { - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld", + "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", "import": [ "files-scs:config/app/app/default.json", "files-scs:config/app/init/default.json",