diff --git a/CHANGELOG.md b/CHANGELOG.md index a79e58a1..c03ba18c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,22 @@ Version History Latest: +## Mar 8, 2022: +### v1.0.1 +**Key Updates** +- Add support for base32 skylinks. +- Add the endpoints needed for challenge-response login and registration. +- Allow changing of user's password via the PUT /user endpoint +- Add database-backed configuration options. +- Add an option for disabling new account registrations. +- BREAKING: All non-GET handlers now read their parameters from the request's body JSON instead of the form. +- Allow updating user's pubKey via two new endpoints - GET /user/pubkey/register and POST /user/pubkey/register. +- Remove the `GET /user/recover` endpoint in favour of the new `POST /user/recover/request` endpoint. + +## Dec 15, 2021: +### v1.0.0 +This version of accounts is a fully functional system on its own - no more reliance on ORY Kratos/Oathkeeper. + ## Oct 28, 2021: ### v0.1.3 **Key Updates** diff --git a/changelog/changelog-tail.md b/changelog/changelog-tail.md index 022d993f..442bf463 100644 --- a/changelog/changelog-tail.md +++ b/changelog/changelog-tail.md @@ -1,3 +1,19 @@ +## Mar 8, 2022: +### v1.0.1 +**Key Updates** +- Add support for base32 skylinks. +- Add the endpoints needed for challenge-response login and registration. +- Allow changing of user's password via the PUT /user endpoint +- Add database-backed configuration options. +- Add an option for disabling new account registrations. +- BREAKING: All non-GET handlers now read their parameters from the request's body JSON instead of the form. +- Allow updating user's pubKey via two new endpoints - GET /user/pubkey/register and POST /user/pubkey/register. +- Remove the `GET /user/recover` endpoint in favour of the new `POST /user/recover/request` endpoint. + +## Dec 15, 2021: +### v1.0.0 +This version of accounts is a fully functional system on its own - no more reliance on ORY Kratos/Oathkeeper. + ## Oct 18, 2021: ### v0.1.2 **Other** diff --git a/changelog/items/key-updates/base32.md b/changelog/items/key-updates/base32.md deleted file mode 100644 index f695326c..00000000 --- a/changelog/items/key-updates/base32.md +++ /dev/null @@ -1 +0,0 @@ -- Add support for base32 skylinks. diff --git a/changelog/items/key-updates/challenge_response.md b/changelog/items/key-updates/challenge_response.md deleted file mode 100644 index e962c6f8..00000000 --- a/changelog/items/key-updates/challenge_response.md +++ /dev/null @@ -1 +0,0 @@ -- Add the endpoints needed for challenge-response login and registration. diff --git a/changelog/items/key-updates/change_password.md b/changelog/items/key-updates/change_password.md deleted file mode 100644 index 93e63164..00000000 --- a/changelog/items/key-updates/change_password.md +++ /dev/null @@ -1 +0,0 @@ -- Allow changing of user's password via the PUT /user endpoint diff --git a/changelog/items/key-updates/disable_registrations_option.md b/changelog/items/key-updates/disable_registrations_option.md deleted file mode 100644 index e0f60577..00000000 --- a/changelog/items/key-updates/disable_registrations_option.md +++ /dev/null @@ -1,2 +0,0 @@ -- Add database-backed configuration options. -- Add an option for disabling new account registrations. diff --git a/changelog/items/key-updates/json_payloads.md b/changelog/items/key-updates/json_payloads.md deleted file mode 100644 index 38149d85..00000000 --- a/changelog/items/key-updates/json_payloads.md +++ /dev/null @@ -1 +0,0 @@ -- BREAKING: All non-GET handlers now read their parameters from the request's body JSON instead of the form. diff --git a/changelog/items/key-updates/pubkey_update.md b/changelog/items/key-updates/pubkey_update.md deleted file mode 100644 index df5e3c66..00000000 --- a/changelog/items/key-updates/pubkey_update.md +++ /dev/null @@ -1 +0,0 @@ -- Allow updating user's pubKey via two new endpoints - GET /user/pubkey/register and POST /user/pubkey/register. diff --git a/changelog/items/key-updates/recover_post.md b/changelog/items/key-updates/recover_post.md deleted file mode 100644 index 8b05c96d..00000000 --- a/changelog/items/key-updates/recover_post.md +++ /dev/null @@ -1 +0,0 @@ -- Remove the `GET /user/recover` endpoint in favour of the new `POST /user/recover/request` endpoint.