Skip to content

Releases: Squidex/squidex

7.0.2

09 Aug 14:57
Compare
Choose a tag to compare

Fixed

  • APM: Fixed Stackdriver Monitoring and the dependencies with Google libraries.

7.0.0

02 Aug 19:05
Compare
Choose a tag to compare

This version contains major changes, that are also described in the Blog.

  1. Orleans removed: Orleans has been removed to make deployment easier. Nodes are independent now and you can host it basically everywhere. One instance needs to be assigned as a worker with the CLUSTERING__WORKER=true to environment variable. The default is true, so ensure that the other nodes have the value to set to false. The communication between instances and worker is established with a simple MongoDB-based queue, therefore there is no additional dependency.

  2. Faster JSON serialization: Newtonsoft.JSON has been replaced with System.Text.Json, leading to a 100% performance improvement when writing and reading JSON. Some part of the MongoDB serialization (especially writing of app, schema or rule objects) was also implemented with Newtonsoft.JSON. This part became actually slower, but you can tell Squidex to use a faster serialization with the environment variable STORE__MONGODB__VALUEREPRESENTATION=String. The downside is that the objects are written to MongoDB as strings and not as normal values, therefore you cannot query for app, schema or rule properties anymore.

  3. Dedicated collections per content: You can have one collection per schema now, which gives you the option to create indexes manually to improve query performance. Read the blog post for migration instructions.

Changed

  • Assets: Moved the update of tag counts to a event consumers to improve consistency.

6.13.0

02 Aug 16:06
Compare
Choose a tag to compare

Fixed

  • UI: Fixes the rendering of reference lists.

6.12.0

01 Aug 09:57
Compare
Choose a tag to compare

Changed

  • No changes, just meant to run CI again.

7.0.0-rc3

30 Jul 12:36
Compare
Choose a tag to compare

Fixed

  • Assets: Fix recursive asset deletion. Query was selecting the wrong assets.
  • Assets: Compatibility with 6.X collections fixed.
  • Contents: Compatibility with 6.X collections fixed.

Changed

  • Assets: Moved the update of tag counts to a event consumers to improve consistency.

Added

  • API: New tests to cover more cases.

6.11.0

29 Jul 21:20
Compare
Choose a tag to compare

Fixed

  • Assets: Fix recursive asset deletion. Query was selecting the wrong assets.

7.0.0-rc2

25 Jul 18:51
Compare
Choose a tag to compare

Fixed

  • Contents: Disable the delete button on content list, if user does not have the necessary permissions.
  • Contents: Fixed a bug which was hiding singleton schemas in the frontend.
  • Contents: Fixed a critical bug with the validation scheduler.
  • Contents: Use the correct asset folder, when asset is uploaded with button in rich text editor.
  • Indexing: Several bugfixes with index grains.
  • Restore: Fix a bug to restore apps without any published content items.
  • Translations: Map the translation result code properly.
  • UI: Several translation fixes.

Changed

  • API: Migration to System.Text.JSON for faster JSON performance.

Added

  • Contents: New flag to store each contnent in a dedicated collection, so that indexes can be created.

6.10.0

19 Jul 11:36
Compare
Choose a tag to compare

Fixed

  • Contents: Fixed a bug which was hiding singleton schemas in the frontend.

6.9.0

14 Jul 14:28
Compare
Choose a tag to compare

Fixed

  • Contents: Disable the delete button on content list, if user does not have the necessary permissions.
  • Contents: Fixed a critical bug with the validation scheduler.
  • Contents: Use the correct asset folder, when asset is uploaded with button in rich text editor.
  • Indexing: Several bugfixes with index grains.
  • Restore: Fix a bug to restore apps without any published content items.
  • Translations: Map the translation result code properly.
  • UI: Several translation fixes.

Added

7.0.0-rc1

11 Jul 13:43
Compare
Choose a tag to compare

This version removes Orleans to make Squidex instances stateless and easier to deploy in multiple environments.

If you want to deploy this version, one, and only one, node must be declared as worker with the environment variable CLUSTERING__WORKER=true.

At the moment 2 extra components have been introduced:

  1. A distributed cache to store specific versions of a content item or asset item over a short period of time to make the rule service faster.
  2. A queue implementation to distribute workloads to the worker node.

To make the migration as easy as possible, the default implementation uses MongoDb, but other implementations might follow.