diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dfa614271..eaa57f900c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ The following sections list the changes for unreleased. ## Summary * Bugfix - CSP rules for silent token refresh in iframe: [#4031](https://github.com/owncloud/ocis/pull/4031) +* Bugfix - Fix `OCIS_RUN_SERVICES`: [#4133](https://github.com/owncloud/ocis/pull/4133) * Bugfix - Fix unused config option `GRAPH_SPACES_INSECURE`: [#55555](https://github.com/owncloud/ocis/pull/55555) * Bugfix - Remove unused configuration options: [#3973](https://github.com/owncloud/ocis/pull/3973) * Bugfix - Remove static ocs user backend config: [#4077](https://github.com/owncloud/ocis/pull/4077) @@ -32,6 +33,20 @@ The following sections list the changes for unreleased. https://github.com/owncloud/web/issues/7030 https://github.com/owncloud/ocis/pull/4031 +* Bugfix - Fix `OCIS_RUN_SERVICES`: [#4133](https://github.com/owncloud/ocis/pull/4133) + + `OCIS_RUN_SERVICES` was introduced as successor to `OCIS_RUN_EXTENSIONS` because we + wanted to call oCIS "core" extensions services. We kept `OCIS_RUN_EXTENSIONS` for backwards + compatibility reasons. + + It turned out, that setting `OCIS_RUN_SERVICES` has no effect since introduced. + `OCIS_RUN_EXTENSIONS`. `OCIS_RUN_EXTENSIONS` was working fine all the time. + + We now fixed `OCIS_RUN_SERVICES`, so that you can use it as a equivalent replacement for + `OCIS_RUN_EXTENSIONS` + + https://github.com/owncloud/ocis/pull/4133 + * Bugfix - Fix unused config option `GRAPH_SPACES_INSECURE`: [#55555](https://github.com/owncloud/ocis/pull/55555) We've removed the unused config option `GRAPH_SPACES_INSECURE` from the GRAPH service.