Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs-only] add breaking changes and migration #1679

Merged
merged 1 commit into from
Feb 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions docs/ocis/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ geekdocEditPath: edit/master/docs/ocis
geekdocFilePath: release_notes.md
---


## ownCloud Infinite Scale 1.2.0 Technology Preview
Version 1.2.0 brings more functionality and stability to ownCloud Infinite Scale. ownCloud Web now loads a lot faster and is prepared for the introduction of accessibility features. An initial implementation for S3 storage support is available and file integrity checking has been introduced.

Expand All @@ -20,6 +21,46 @@ The most prominent changes in version 1.2.0 comprise:

You can also read the full [ownCloud Infinite Scale changelog](https://github.com/owncloud/ocis/blob/master/CHANGELOG.md) and [ownCloud Web changelog](https://github.com/owncloud/web/blob/master/CHANGELOG.md#changelog-for-owncloud-web-200-2021-02-16) for further details on what has changed.

### Breaking changes
{{< hint warning >}}
We are currently in a Tech Preview state and breaking changes may occur at any time. For more information see our [release roadmap]({{< ref "./release_roadmap.md" >}})
{{< /hint >}}

#### Fix IDP service user
Related: [#1390](https://github.com/owncloud/ocis/pull/1390), [#1569](https://github.com/owncloud/ocis/issues/1569)

After upgrading oCIS from a previous version to oCIS 1.2.0 you will not be able to login in ownCloud Web

Implications:
- manual action required

Migration steps:
- Stop oCIS
- Open following file `/var/tmp/ocis/storage/metadata/nodes/root/accounts/820ba2a1-3f54-4538-80a4-2d73007e30bf`
- Change password to `$2y$12$ywfGLDPsSlBTVZU0g.2GZOPO8Wap3rVOpm8e3192VlytNdGWH7x72`
- Change onPremisesSamAccountName to `idp`
- Change preferredName to `idp`
- Save the changed file
- Start oCIS
- You now are able to lock back in again.

Please have a look at [how to secure an oCIS instance]({{< ref "./deployment#secure-an-ocis-instance" >}}) since you seem to run it with default secrets.

#### Reset shares
Related: [#1626](https://github.com/owncloud/ocis/pull/1626)

After upgrading oCIS from a previous version to oCIS 1.2.0 you will will not be able to use previous shares or create new shares.

Implications:
- manual action required
- loss of shares (manual resharing is needed, files will not be lost)

Migration steps:
- Stop oCIS
- Delete following file `/var/tmp/ocis/storage/shares.json`
- Start oCIS
- Recreate shares manually

## ownCloud Infinite Scale 1.1.0 Technology Preview

Version 1.1.0 is a hardening and patch release. It ships with the latest version of ownCloud Web and brings a couple of minor improvements. The minor version increase is needed due to non-backwards compatible changes in configuration. The documentation has been updated to reflect the changes. Please note that this version is still a Technology Preview and not suited for production use.
Expand Down