Skip to content

Release Notes 3.x.x

Miguel Serrano edited this page Oct 13, 2022 · 45 revisions

Server Pro 3.3.0

Release date: 2022-10-13

Image ID: 56f044d08198 (Community Edition Image ID: 4c4bad165ea6)

This new release of Server Pro includes a MongoDB migration affecting several collections. Please ensure you have a database backup before upgrading.

For CE users, and Server Pro users that don't run Sandboxed Compiles there is a change in how Latex packages are installed, now requiring to run tlmgr path add again after every use of tlmgr install in order to correctly symlink all the binaries into the system path.

New Features

Other changes

Server Pro 3.2.2

Release date: 2022-09-19

Image ID: 20e80bd600fb (Community Edition Image ID: 8552c59519a7)

Bugfixes

Server Pro 3.2.1

Release date: 2022-08-26

Image ID: 3817bd0d07a4 (Community Edition Image ID: 31cc6bc2bfa7)

Bugfixes

Server Pro 3.2.0

Release date: 2022-08-16

Image ID: 4db483917643 (Community Edition Image ID: 1bce84a47f1f)

This new release of Server Pro includes several new features. It also requires updating Mongo version to 4.4. Upgrade instructions are available here. Please ensure you have a database backup before upgrading.

New Features

  • User Activity and License Usage information (with a count of active users) is now displayed in the Admin Panel.
  • PDF Preview Detach.
  • User Dictionary entries can now be deleted from the Editor Settings panel.
  • TexLive 2022 is available for instances running Sandboxed Compiles. Check the documentation for instructions to upgrade. TexLive 2022 is also the default version for instances not running Sandboxed Compiles.

Bugfixes

Server Pro 3.1.1

Release date: 2022-08-10

Image ID: eb5802bfd8a4 (Community Edition Image ID: 401c5a25016d)

Bugfixes

Server Pro 3.1.0

Release date: 2022-05-17

Image ID: 699e7c990b0f (Community Edition Image ID: 9c9fe33828a0)

This release requires updating Mongo version to 4.2. Upgrade instructions are available here. Please ensure you have a database backup before upgrading.

New Features

Other changes

  • TexLive 2021 is available for instances running Sandboxed Compiles. Check the documentation for instructions to upgrade.
  • The path of the application inside the container has changed from /var/www/sharelatex to /overleaf; if you have bind mounts that use the old path, they will need to be updated.
  • Many small improvements and bugfixes.

Server Pro 3.0.1

Release date: 2021-10-05

Image ID: 5e87b3c5ad41 (Community Edition Image ID: 9155d8a13aaa)

This major release includes migrations that update the database in a backwards incompatible format. Please ensure you have a database backup before upgrading, in case of roll-back you will not be able to read data in the new format.

This update brings general performance and stability improvements to the application, along with many small improvements and bugfixes.

We've recently updated the way we tag our docker images. In addition to 3.0.1, we're also tagging the new version as 3 and 3.0, representing the latest major and minor versions for the 3.x.x branch respectively. These new tags will be updated again when a new minor or hotfix version is published.

latest tag won't be immediately updated to this new major version. If you're using a docker-compose.yml please update your image tag to 3, 3.0 or 3.0.1. Toolkit users can continue using the bin/upgrade script as usual.

Important: before upgrading to this new major version you need to upgrade to version 2.7.1 first.

Troubleshooting

Duplicate Keys

If upgrading from 2.7.1 to 3.0.1 fails with messages containing MongoError: Error during migrate "20190912145029_create_tags_indexes": E11000 duplicate key error collection: sharelatex.tags index: user_id_1_name_1 dup key: {<…>} this means that one of your users has multiple tags/folders with the same name.

To recover, revert to your 2.7.1 backups and ask the user to make their tag/folder names unique. (The user id and specific tag name will be reported in the error message, so you can contact the affected user and mention the specific tag name that is problematic.) Then attempt the upgrade again.

You can also attempt to detect multiple tags in advance, before you upgrade, with the following aggregate:

docker exec -it mongo mongo
use sharelatex

db.tags.aggregate([
  {$group: {
    _id: {name: "$name", user_id: "$user_id"},
    count: {$sum: 1}
  }},
  {$match: {count: {$gt: 1}}},
  {$sort: {count: -1}}
])

If it returns no results, there are no duplicate tags, and the migration should succeed.

SAML initialisation error

You might see a cert is required error when upgrading from Server Pro 2.6.2 or earlier if SHARELATEX_SAML_CERT is not provided.

If you come across the issue, please add the SHARELATEX_SAML_CERT value, and update your instance to 2.7.1 before attempting to upgrade to 3.x.x.

Clone this wiki locally