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

Infinite Scale Beta 8 Release Notes #4781

Merged
merged 7 commits into from
Sep 13, 2022
Merged
Changes from 2 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
46 changes: 44 additions & 2 deletions modules/ROOT/pages/ocis_release_notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,50 @@ You can read more about the Infinite Scale beta phase on https://owncloud.com
- https://owncloud.com/infinite-scale-beta[Infinite Scale Beta Page]
- https://owncloud.com/news/infinite-scale-beta/[Infinite Scale Beta is coming]

=== Beta 8

Infinite Scale 2.0.0 Beta 8 includes a huge number of smaller bug fixes and round-offs all around. It introduces a more efficient and scalable way to store share information and improves the performance of ownCloud Web in many areas very noticeably. Furthermore it is now possible to set user quotas in the UI and administrators can now delete orphaned Spaces.
EParzefall marked this conversation as resolved.
Show resolved Hide resolved

IMPORTANT: When updating from Infinite Scale Beta 7 or lower to Beta 8 it is necessary to run two migration steps from the previous to the new share manager **before** starting the system again regularly.
EParzefall marked this conversation as resolved.
Show resolved Hide resolved

**Migration for User/Group Shares**

`OCIS_LOG_LEVEL="debug" OCIS_LOG_PRETTY="true" OCIS_LOG_COLOR="true" ocis migrate shares --from cs3 --to jsoncs3`

**Migration for Public Links**

`OCIS_LOG_LEVEL="debug" OCIS_LOG_PRETTY="true" OCIS_LOG_COLOR="true" ocis migrate publicshares --from cs3 --to jsoncs3`

If you have set up your system with Docker, you can just use the same syntax as with https://doc.owncloud.com/ocis/next/deployment/container/container-setup.html#first-time-start[ocis init]:

```
docker run --rm -it \
--mount type=bind,source=$PWD/ocis/ocis-config,target=/etc/ocis \
owncloud/ocis migrate shares
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if we can use ocis migrate shars, why not use it above? There you stated 2 different share migration commands for user/group and public shares... 🤔

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I gues you mean ocis migrate shares... (or?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulations, you found a typo. 😛 Question itself should be clear, even with the typo.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I only provided one example as you just need to replace shares with publicshares. Thought that transfer would be clear. Should I really add both?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added both now also for the docker commands.

```

The most prominent changes in **Infinite Scale 2.0.0 beta8** and ownCloud Web 5.7.0 comprise:

* A new share manager implementation has been added that will store share information in a more efficient and scalable way. https://github.com/owncloud/ocis/issues/4431[ocis#4431] https://github.com/cs3org/reva/pull/3199[reva#3199]
* The performance of loading the file list has been drastically improved. https://github.com/owncloud/web/issues/7038[web#7038]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was not part of this beta. We only limited the number of items per page for pagination to 100 or 500, the options 1000 and All have been removed.

Copy link
Contributor Author

@pmaier1 pmaier1 Sep 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, then the changelog was a little misleading. I'll change that.

* Further improvements to the web upload performance have been made. https://github.com/owncloud/web/issues/7177[web#7177]
* It is now possible to set/modify user quotas (for personal spaces) in the user management UI. https://github.com/owncloud/web/pull/7182[web#7182]
* A new permission to 'Delete all spaces' has been added to allow the deletion of orphaned Spaces for users with certain roles. This permission has been added to the default 'Admin' role. https://github.com/cs3org/reva/pull/3180 https://github.com/cs3org/reva/pull/3203 https://github.com/owncloud/ocis/issues/4196
* Deleting a user will now also delete their personal space. https://github.com/owncloud/ocis/issues/4195[ocis#4195]
* Space members can now modify shares other members created. https://github.com/cs3org/reva/pull/3192[reva#3192]
* Some translations have been fixed/improved. https://github.com/owncloud/web/issues/7550[web#7550]
* The design of the default login screen has been improved for better consistency with ownCloud Web. https://github.com/owncloud/ocis/pull/4500[ocis#4500]
* Creating duplicate shares with the same recipient (e.g., via group shares or in resharing) will now be prevented. https://github.com/cs3org/reva/pull/3176[reva#3176]
EParzefall marked this conversation as resolved.
Show resolved Hide resolved
* EXIF orientation information will now be properly used for images. https://github.com/owncloud/ocis/issues/4477[ocis#4477]
* Improvements for quota handling have been made. https://github.com/owncloud/web/pull/7522[web#7522]
* The right sidebar has been improved for smaller screens. https://github.com/owncloud/web/issues/7498[web#7498]
* The visual appearance and usability of the file search feature has been improved. https://github.com/owncloud/web/pull/7586[web#7586]
* The known issue about wrong file paths in file search results has been fixed. https://github.com/owncloud/web/issues/7391[web#7391] https://github.com/owncloud/ocis/pull/4485[ocis#4485]
* The file search now also works properly with shares. https://github.com/owncloud/web/pull/7560[web#7560]
* Creating a new file will now propose a unique file name. https://github.com/owncloud/web/pull/7555[web#7555]

You can also read the full https://github.com/owncloud/ocis/releases/tag/v2.0.0-beta.8[Infinite Scale changelog] and https://github.com/owncloud/web/releases/tag/v5.7.0[ownCloud Web changelog] for further details on what has changed.

EParzefall marked this conversation as resolved.
Show resolved Hide resolved
=== Beta 7

Infinite Scale 2.0.0 beta7 includes stability, security and performance improvements. ownCloud Web has been condensed a bit and the cut/copy/paste feature has been reworked. Web Office can now be configured to use a certain language and system administrators can recover a lost admin password.
Expand Down Expand Up @@ -156,8 +200,6 @@ You can also read the full https://github.com/owncloud/ocis/releases/tag/v2.0.0-

This section will be updated if known issues are discovered.

* The path of search results is currently wrong which prevents the user from browsing to the content https://github.com/owncloud/web/issues/7391[web#7391]

== Infinite Scale 1.20.0 Technology Preview

Version 1.20.0 brings major improvements, new features and bug fixes to the platform. Infinite Scale now provides complete Auditing capabilities and the basic 'Spaces' feature has reached initial feature completeness. Furthermore, ownCloud Web introduces a number of smaller features as well as more design and usability improvements.
Expand Down