From 1ef5f14562e289e49bb5ea7244faaa7a30d964a1 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 25 Jun 2020 14:28:44 +0200 Subject: [PATCH] Add missing changelog entries --- changelog/unreleased/account-uuid | 5 +++++ changelog/unreleased/auto_provision_accounts.md | 1 + changelog/unreleased/send-autocreate-home | 5 +++++ changelog/unreleased/token-header-fix | 1 + changelog/unreleased/update-to-new-accounts-api | 5 +++++ 5 files changed, 17 insertions(+) create mode 100644 changelog/unreleased/account-uuid create mode 100644 changelog/unreleased/send-autocreate-home create mode 100644 changelog/unreleased/update-to-new-accounts-api diff --git a/changelog/unreleased/account-uuid b/changelog/unreleased/account-uuid new file mode 100644 index 000000000..db2955f2a --- /dev/null +++ b/changelog/unreleased/account-uuid @@ -0,0 +1,5 @@ +Enhancement: Retrieve Account UUID From User Claims + +OIDC Middleware can make use of uuidFromClaims to trade claims.Email for an account's UUID. For this, a general purpose cache was added that caches on a per-request basis, meaning whenever the request parameters match a set of keys, the cached value is returned, saving a round trip to the accounts service that otherwise would happen in every single request. + +https://github.com/owncloud/ocis-proxy/pull/36 diff --git a/changelog/unreleased/auto_provision_accounts.md b/changelog/unreleased/auto_provision_accounts.md index d2c0b2f3d..dc36a0573 100644 --- a/changelog/unreleased/auto_provision_accounts.md +++ b/changelog/unreleased/auto_provision_accounts.md @@ -4,3 +4,4 @@ The accounts_uuid middleware tries to get the account from ocis-accounts. If it doens't exist there yet the proxy creates the account using the ocis-account api. https://github.com/owncloud/ocis-proxy/issues/55 +https://github.com/owncloud/ocis-proxy/issues/58 diff --git a/changelog/unreleased/send-autocreate-home b/changelog/unreleased/send-autocreate-home new file mode 100644 index 000000000..4f6f18b12 --- /dev/null +++ b/changelog/unreleased/send-autocreate-home @@ -0,0 +1,5 @@ +Change: Send autocreate home request to reva gateway + +Send autocreate home request to reva gateway + +https://github.com/owncloud/ocis-proxy/pull/51 diff --git a/changelog/unreleased/token-header-fix b/changelog/unreleased/token-header-fix index 5c3b35112..36907fb39 100644 --- a/changelog/unreleased/token-header-fix +++ b/changelog/unreleased/token-header-fix @@ -3,3 +3,4 @@ Bugfix: Fix x-access-token in header We fixed setting the x-access-token in the request header, which was broken before. https://github.com/owncloud/ocis-proxy/pull/41 +https://github.com/owncloud/ocis-proxy/pull/46 diff --git a/changelog/unreleased/update-to-new-accounts-api b/changelog/unreleased/update-to-new-accounts-api new file mode 100644 index 000000000..b364a02b4 --- /dev/null +++ b/changelog/unreleased/update-to-new-accounts-api @@ -0,0 +1,5 @@ +Change: Update to new accounts API + +Update to new accounts API + +https://github.com/owncloud/ocis-proxy/issues/39