From e0342492a1ae24742a1e92d03096bd2c69be81a3 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Wed, 14 Feb 2024 14:57:10 +0100 Subject: [PATCH] docs: add changelog from stable-4.0 --- changelog/4.0.5_2023-12-21/add-trach-bin-cli.md | 6 ++++++ .../fix-auth-allow-empty-cred-chain.md | 11 +++++++++++ changelog/4.0.5_2023-12-21/fix-traces.md | 5 +++++ .../4.0.5_2023-12-21/fix-upload-session-purging.md | 5 +++++ changelog/4.0.6_2024-02-07/fix-RED-metrics.md | 11 +++++++++++ changelog/4.0.6_2024-02-07/fix-signed-url-expiry.md | 5 +++++ 6 files changed, 43 insertions(+) create mode 100644 changelog/4.0.5_2023-12-21/add-trach-bin-cli.md create mode 100644 changelog/4.0.5_2023-12-21/fix-auth-allow-empty-cred-chain.md create mode 100644 changelog/4.0.5_2023-12-21/fix-traces.md create mode 100644 changelog/4.0.5_2023-12-21/fix-upload-session-purging.md create mode 100644 changelog/4.0.6_2024-02-07/fix-RED-metrics.md create mode 100644 changelog/4.0.6_2024-02-07/fix-signed-url-expiry.md diff --git a/changelog/4.0.5_2023-12-21/add-trach-bin-cli.md b/changelog/4.0.5_2023-12-21/add-trach-bin-cli.md new file mode 100644 index 000000000..91485a28f --- /dev/null +++ b/changelog/4.0.5_2023-12-21/add-trach-bin-cli.md @@ -0,0 +1,6 @@ +Enhancement: Add cli commands for trash-binq + +We added the `list` and `restore` commands to the trash-bin items to the CLI + +https://github.com/owncloud/ocis/pull/7936 +https://github.com/owncloud/ocis/issues/7845 diff --git a/changelog/4.0.5_2023-12-21/fix-auth-allow-empty-cred-chain.md b/changelog/4.0.5_2023-12-21/fix-auth-allow-empty-cred-chain.md new file mode 100644 index 000000000..d1eff1fe9 --- /dev/null +++ b/changelog/4.0.5_2023-12-21/fix-auth-allow-empty-cred-chain.md @@ -0,0 +1,11 @@ +Bugfix: fix reva config of frontend service to avoid misleading error logs + +We set an empty Credentials chain for the frontend service now. In ocis all +non-reva token authentication is handled by the proxy. This avoids irritating +error messages about the missing 'auth-bearer' service. + +https://github.com/owncloud/ocis/pull/7934 +https://github.com/owncloud/ocis/pull/7453 +https://github.com/cs3org/reva/pull/4396 +https://github.com/cs3org/reva/pull/4241 +https://github.com/owncloud/ocis/issues/6692 diff --git a/changelog/4.0.5_2023-12-21/fix-traces.md b/changelog/4.0.5_2023-12-21/fix-traces.md new file mode 100644 index 000000000..acdb4d527 --- /dev/null +++ b/changelog/4.0.5_2023-12-21/fix-traces.md @@ -0,0 +1,5 @@ +Bugfix: Fix trace ids + +We changed the default tracing to produce non-empty traceids and fixed a problem where traces got disconnected further down the stack. + +https://github.com/owncloud/ocis/pull/8026 diff --git a/changelog/4.0.5_2023-12-21/fix-upload-session-purging.md b/changelog/4.0.5_2023-12-21/fix-upload-session-purging.md new file mode 100644 index 000000000..5ff837037 --- /dev/null +++ b/changelog/4.0.5_2023-12-21/fix-upload-session-purging.md @@ -0,0 +1,5 @@ +Bugfix: Do not purge expired upload sessions that are still postprocessing + +https://github.com/owncloud/ocis/pull/7941 +https://github.com/owncloud/ocis/pull/7859 +https://github.com/owncloud/ocis/pull/7958 \ No newline at end of file diff --git a/changelog/4.0.6_2024-02-07/fix-RED-metrics.md b/changelog/4.0.6_2024-02-07/fix-RED-metrics.md new file mode 100644 index 000000000..89cf681e2 --- /dev/null +++ b/changelog/4.0.6_2024-02-07/fix-RED-metrics.md @@ -0,0 +1,11 @@ +Bugfix: Fix RED metrics on the metrics endpoint + +We connected some metrics to the metrics endpoint to support the RED method for monitoring microservices. + +- Request Rate: The number of requests per second. The total count of requests is available under `ocis_proxy_requests_total`. +- Error Rate: The number of failed requests per second. The total count of failed requests is available under `ocis_proxy_errors_total`. +- Duration: The amount of time each request takes. The duration of all requests is available under `ocis_proxy_request_duration_seconds`. This is a histogram metric, so it also provides information about the distribution of request durations. + +The metrics are available under the following paths: `PROXY_DEBUG_ADDR/metrics` in a prometheus compatible format and maybe secured by `PROXY_DEBUG_TOKEN`. + +https://github.com/owncloud/ocis/pull/7994 diff --git a/changelog/4.0.6_2024-02-07/fix-signed-url-expiry.md b/changelog/4.0.6_2024-02-07/fix-signed-url-expiry.md new file mode 100644 index 000000000..9b0cdf3da --- /dev/null +++ b/changelog/4.0.6_2024-02-07/fix-signed-url-expiry.md @@ -0,0 +1,5 @@ +Bugfix: signed url verification + +Signed urls now expire properly + +https://github.com/owncloud/ocis/pull/8385