solid-server 6.0.0-1e403760 → 6.0.0-2caddca5

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.
Files changed (18) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +3 -0
  3. package/coverage/tmp/{coverage-2268-1767791620185-0.json → coverage-2248-1768127616589-0.json} +1 -1
  4. package/coverage/tmp/{coverage-2269-1767791599783-0.json → coverage-2249-1768127595001-0.json} +1 -1
  5. package/package.json +1 -1
  6. package/solid-server-6.0.0.tgz +0 -0
  7. package/test/resources/accounts/db/oidc/op/clients/{_key_92562d880070f137713e506e483bbf0a.json → _key_c763c1d56c6179805e5630cf727c1d90.json} +1 -1
  8. package/test/resources/accounts/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A3457.json +1 -1
  9. package/test/resources/accounts-scenario/alice/db/oidc/op/clients/{_key_b413a20c233c7902ea8a58daa999b5a4.json → _key_b8a06d4b84bef0f9bdf119feb401a49b.json} +1 -1
  10. package/test/resources/accounts-scenario/alice/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7000.json +1 -1
  11. package/test/resources/accounts-scenario/bob/db/oidc/op/clients/{_key_5815389546277987a152f6d803bc7fef.json → _key_04da74e0d809681d1fcd37c382cd3caf.json} +1 -1
  12. package/test/resources/accounts-scenario/bob/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7001.json +1 -1
  13. package/test/resources/accounts-scenario/charlie/db/oidc/op/clients/{_key_4af4f7bb27e9e77c0a5b3dc62321879f.json → _key_d9b6aa7268c20e5f8ee272ded946258f.json} +1 -1
  14. package/test/resources/accounts-scenario/charlie/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A5002.json +1 -1
  15. package/test/resources/accounts-strict-origin-off/alice/db/oidc/op/clients/{_key_5d4e24429e4121ea9b8cddea5abf331b.json → _key_0a0dafa35f17f9f56e1b2d8858ffc4b6.json} +1 -1
  16. package/test/resources/accounts-strict-origin-off/alice/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7010.json +1 -1
  17. package/test/resources/accounts-strict-origin-off/bob/db/oidc/op/clients/{_key_1846c2fdb2e4fc7bd2270c10ebb08c59.json → _key_367fd3187411d219f73956bcdd85bf64.json} +1 -1
  18. package/test/resources/accounts-strict-origin-off/bob/db/oidc/rp/clients/_key_https%3A%2F%2Flocalhost%3A7011.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,4 +1,20 @@
1
1
  # History
2
+ ## 6.0.0
3
+ - CommonJs to ESM (.mjs)
4
+ - support for mashlib >= 2.0.0
5
+ - support solid-OIDC with WebID scope, es256, and rfc9702
6
+
7
+ ## 6.0.0 Upgrade Notes
8
+
9
+ 1.0 Automatically recreated
10
+ - delete `.db/oidc/op/provider.json`
11
+ - delete `config/templates/emails`
12
+ If not recreated then copy from `default-emails`
13
+ If there was some personalisation these need to be redone
14
+
15
+ 2.0 Manuel update the `index.html` in server root `data/<serverOrigin>/index.html`
16
+ edit `common/js/index-buttons.js` to `index-buttons.mjs`
17
+
2
18
  ## 5.3.0
3
19
  - Support for webid-oidc with DPop tokens
4
20
 
package/README.md CHANGED
@@ -146,6 +146,9 @@ also add to `config.json`
146
146
  "emailAuthPass": "gmailPass"
147
147
  ```
148
148
 
149
+ ### Upgrading from version <6.0.0
150
+ Please take into account the [v6.0.0 upgrade notes](https://github.com/solid/node-solid-server/blob/master/CHANGELOG.md#600-upgrade-notes).
151
+
149
152
  ### Upgrading from version <5.3
150
153
  Please take into account the [v5.3 upgrade notes](https://github.com/solid/node-solid-server/blob/master/CHANGELOG.md#530-upgrade-notes).
151
154