From bdfbb1e4c08b98d643330914ae1dc35d2ff7b361 Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Fri, 8 Dec 2023 14:29:09 +0100 Subject: [PATCH] docs: forward port changelog to master --- changelog/4.0.1_2023-09-01/fix-search.md | 5 +++++ changelog/4.0.2_2023-09-28/bump-reva.md | 6 ++++++ .../do-not-reset-received-share-state.md | 6 ++++++ .../fix-graph-education-createschool.md | 6 ++++++ .../fix-keycloak-example-username-validation.md | 6 ++++++ .../4.0.2_2023-09-28/fix-skip-user-info-option.md | 3 +++ .../fix-users-ldap-schema-user-id.md | 7 +++++++ .../ldap-bind-password-var-deprecation.md | 11 +++++++++++ changelog/4.0.3_2023-11-24/access-token-issuer.md | 5 +++++ changelog/4.0.3_2023-11-24/bump-reva.md | 6 ++++++ changelog/4.0.3_2023-11-24/bump-web-7.1.2.md | 13 +++++++++++++ .../fix-token-storage-config-web.md | 6 ++++++ changelog/4.0.4_2023-12-07/update-reva.md | 7 +++++++ 13 files changed, 87 insertions(+) create mode 100644 changelog/4.0.1_2023-09-01/fix-search.md create mode 100644 changelog/4.0.2_2023-09-28/bump-reva.md create mode 100644 changelog/4.0.2_2023-09-28/do-not-reset-received-share-state.md create mode 100644 changelog/4.0.2_2023-09-28/fix-graph-education-createschool.md create mode 100644 changelog/4.0.2_2023-09-28/fix-keycloak-example-username-validation.md create mode 100644 changelog/4.0.2_2023-09-28/fix-skip-user-info-option.md create mode 100644 changelog/4.0.2_2023-09-28/fix-users-ldap-schema-user-id.md create mode 100644 changelog/4.0.2_2023-09-28/ldap-bind-password-var-deprecation.md create mode 100644 changelog/4.0.3_2023-11-24/access-token-issuer.md create mode 100644 changelog/4.0.3_2023-11-24/bump-reva.md create mode 100644 changelog/4.0.3_2023-11-24/bump-web-7.1.2.md create mode 100644 changelog/4.0.3_2023-11-24/fix-token-storage-config-web.md create mode 100644 changelog/4.0.4_2023-12-07/update-reva.md diff --git a/changelog/4.0.1_2023-09-01/fix-search.md b/changelog/4.0.1_2023-09-01/fix-search.md new file mode 100644 index 0000000000..597978de7a --- /dev/null +++ b/changelog/4.0.1_2023-09-01/fix-search.md @@ -0,0 +1,5 @@ +Bugfix: Disallow sharee to search sharer files outside the share + +When a file was shared with user(sharee) and the sharee searched the shared file the response contained unshared resources as well. + +https://github.com/owncloud/ocis/pull/7184 diff --git a/changelog/4.0.2_2023-09-28/bump-reva.md b/changelog/4.0.2_2023-09-28/bump-reva.md new file mode 100644 index 0000000000..c5290bf75a --- /dev/null +++ b/changelog/4.0.2_2023-09-28/bump-reva.md @@ -0,0 +1,6 @@ +Bugfix: Bump reva to 2.16.1 + +* Bugfix [cs3org/reva#4194](https://github.com/cs3org/reva/pull/4194): Make appctx package compatible with go v1.21 +* Bugfix [cs3org/reva#4214](https://github.com/cs3org/reva/pull/4214): Always pass adjusted default nats options + +https://github.com/owncloud/ocis/pull/7350 \ No newline at end of file diff --git a/changelog/4.0.2_2023-09-28/do-not-reset-received-share-state.md b/changelog/4.0.2_2023-09-28/do-not-reset-received-share-state.md new file mode 100644 index 0000000000..d05cbbca14 --- /dev/null +++ b/changelog/4.0.2_2023-09-28/do-not-reset-received-share-state.md @@ -0,0 +1,6 @@ +Bugfix: Do not reset received share state to pending + +We fixed a problem where the states of received shares were reset to PENDING +in the "ocis migrate rebuild-jsoncs3-indexes" command + +https://github.com/owncloud/ocis/issues/7319 diff --git a/changelog/4.0.2_2023-09-28/fix-graph-education-createschool.md b/changelog/4.0.2_2023-09-28/fix-graph-education-createschool.md new file mode 100644 index 0000000000..4d867a4556 --- /dev/null +++ b/changelog/4.0.2_2023-09-28/fix-graph-education-createschool.md @@ -0,0 +1,6 @@ +Bugfix: Check school number for duplicates before adding a school + +We fixed an issue that allowed to create two schools with the same school number + +https://github.com/owncloud/ocis/pull/7351 +https://github.com/owncloud/enterprise/issues/6051 diff --git a/changelog/4.0.2_2023-09-28/fix-keycloak-example-username-validation.md b/changelog/4.0.2_2023-09-28/fix-keycloak-example-username-validation.md new file mode 100644 index 0000000000..a15f676e74 --- /dev/null +++ b/changelog/4.0.2_2023-09-28/fix-keycloak-example-username-validation.md @@ -0,0 +1,6 @@ +Bugfix: Disable username validation for keycloak example + +Set 'GRAPH_USERNAME_MATCH' to 'none'. To accept any username that is +also valid for keycloak. + +https://github.com/owncloud/ocis/pull/7230 diff --git a/changelog/4.0.2_2023-09-28/fix-skip-user-info-option.md b/changelog/4.0.2_2023-09-28/fix-skip-user-info-option.md new file mode 100644 index 0000000000..f41031c37e --- /dev/null +++ b/changelog/4.0.2_2023-09-28/fix-skip-user-info-option.md @@ -0,0 +1,3 @@ +Bugfix: actually pass PROXY_OIDC_SKIP_USER_INFO option to oidc client middleware + +https://github.com/owncloud/ocis/pull/7220 diff --git a/changelog/4.0.2_2023-09-28/fix-users-ldap-schema-user-id.md b/changelog/4.0.2_2023-09-28/fix-users-ldap-schema-user-id.md new file mode 100644 index 0000000000..efc2640247 --- /dev/null +++ b/changelog/4.0.2_2023-09-28/fix-users-ldap-schema-user-id.md @@ -0,0 +1,7 @@ +Bugfix: Bring back the USERS_LDAP_USER_SCHEMA_ID variable + +We reintroduced the USERS_LDAP_USER_SCHEMA_ID variable which was accidently removed from the users service +with the 4.0.0 release. + +https://github.com/owncloud/ocis/issues/7312 +https://github.com/owncloud/ocis-charts/issues/397 diff --git a/changelog/4.0.2_2023-09-28/ldap-bind-password-var-deprecation.md b/changelog/4.0.2_2023-09-28/ldap-bind-password-var-deprecation.md new file mode 100644 index 0000000000..b1d08dd706 --- /dev/null +++ b/changelog/4.0.2_2023-09-28/ldap-bind-password-var-deprecation.md @@ -0,0 +1,11 @@ +Enhancement: Add OCIS_LDAP_BIND_PASSWORD as replacement for LDAP_BIND_PASSWORD + +The enviroment variable `OCIS_LDAP_BIND_PASSWORD` was added to be more consistent with all +other global LDAP variables. + +`LDAP_BIND_PASSWORD` is deprecated now and scheduled for removal with the 5.0.0 release. + +We also deprecated `LDAP_USER_SCHEMA_ID_IS_OCTETSTRING` for removal with 5.0.0. +The replacement for it is `OCIS_LDAP_USER_SCHEMA_ID_IS_OCTETSTRING`. + +https://github.com/owncloud/ocis/issues/7176 diff --git a/changelog/4.0.3_2023-11-24/access-token-issuer.md b/changelog/4.0.3_2023-11-24/access-token-issuer.md new file mode 100644 index 0000000000..3519938ade --- /dev/null +++ b/changelog/4.0.3_2023-11-24/access-token-issuer.md @@ -0,0 +1,5 @@ +Enhancement: Support spec violating AD FS access token issuer + +AD FS `/adfs/.well-known/openid-configuration` has an optional `access_token_issuer` which, in violation of the OpenID Connect spec, takes precedence over `issuer`. + +https://github.com/owncloud/ocis/pull/7138 diff --git a/changelog/4.0.3_2023-11-24/bump-reva.md b/changelog/4.0.3_2023-11-24/bump-reva.md new file mode 100644 index 0000000000..34a38bc60c --- /dev/null +++ b/changelog/4.0.3_2023-11-24/bump-reva.md @@ -0,0 +1,6 @@ +Bugfix: Bump reva to 2.16.2 + +* Bugfix [cs3org/reva#4251](https://github.com/cs3org/reva/pull/4251): ldap: fix GetUserByClaim for binary encoded UUIDs + +https://github.com/owncloud/ocis/pull/7512 +https://github.com/owncloud/ocis/issues/7469 diff --git a/changelog/4.0.3_2023-11-24/bump-web-7.1.2.md b/changelog/4.0.3_2023-11-24/bump-web-7.1.2.md new file mode 100644 index 0000000000..3a7a3c8d1d --- /dev/null +++ b/changelog/4.0.3_2023-11-24/bump-web-7.1.2.md @@ -0,0 +1,13 @@ +Enhancement: Update web to v7.1.2 + +Tags: web + +We updated ownCloud Web to v7.1.2. Please refer to the changelog (linked) for details on the web release. + +## Summary +* Bugfix [owncloud/web#9833](https://github.com/owncloud/web/pull/9833): Resolving external URLs +* Bugfix [owncloud/web#9868](https://github.com/owncloud/web/pull/9868): Respect "details"-query on private links +* Bugfix [owncloud/web#9913](https://github.com/owncloud/web/pull/9913): Private link resolving via share jail ID + +https://github.com/owncloud/ocis/pull/7798 +https://github.com/owncloud/web/releases/tag/v7.1.2 diff --git a/changelog/4.0.3_2023-11-24/fix-token-storage-config-web.md b/changelog/4.0.3_2023-11-24/fix-token-storage-config-web.md new file mode 100644 index 0000000000..70609592c6 --- /dev/null +++ b/changelog/4.0.3_2023-11-24/fix-token-storage-config-web.md @@ -0,0 +1,6 @@ +Bugfix: Token storage config fixed + +The token storage config in the config.json for web was missing when it was set to `false`. + +https://github.com/owncloud/ocis/pull/7546 +https://github.com/owncloud/ocis/issues/7462 diff --git a/changelog/4.0.4_2023-12-07/update-reva.md b/changelog/4.0.4_2023-12-07/update-reva.md new file mode 100644 index 0000000000..43176315da --- /dev/null +++ b/changelog/4.0.4_2023-12-07/update-reva.md @@ -0,0 +1,7 @@ +Enhancement: update reva to improve trashbin listing + +## Changelog for reva 2.13.3 + +* Enhancement [cs3org/reva#4377](https://github.com/cs3org/reva/pull/4377): Handle trashbin file listings concurrently + +https://github.com/owncloud/ocis/pull/7858