docs: add changelog from stable-4.0

This commit is contained in:
Benedikt Kulmann
2024-02-14 14:57:10 +01:00
parent cff2190392
commit e0342492a1
6 changed files with 43 additions and 0 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1,5 @@
Bugfix: signed url verification
Signed urls now expire properly
https://github.com/owncloud/ocis/pull/8385