From 954e23845abf82c16d7f1afa50bfdcc40fa16a6f Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 3 Mar 2023 12:18:17 +0100 Subject: [PATCH] Changelog for 7.5.0 --- CHANGELOG.md | 34 +++++++++++++++++++ .../AzureQueue/AzureQueueActionHandler.cs | 4 +-- .../ElasticSearchActionHandler.cs | 8 ++--- .../OpenSearch/OpenSearchActionHandler.cs | 8 ++--- .../Actions/SignalR/SignalRActionHandler.cs | 4 +-- .../Typesense/TypesenseActionHandler.cs | 8 ++--- .../Actions/Webhook/WebhookActionHandler.cs | 4 +-- 7 files changed, 52 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94542ab12..dcb135648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,40 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.5.0] - 2023-03-03 + +### Fixed + +* **UI**: Fixed styling of schemas in workflow settings. +* **Contents**: Fixed a bug when permanently deleting a content that was permanently deleted before didn't work. +* **Scripting**: Fixes to the handling of asynchronous tasks in scripts. + +### Changed + +* **Rabbit MQ**: Removed the RabbitMQ event consumer. +* **Contents**: Allow DateTime fields in sample uniqueness validator. +* **Rules**: Only create enriched content events once for the same trigger type. +* **Schemas**: Added tooltip to field icon in schema editor. +* **Tests**: Improvements to the tests to verify all methods to make an update, delete and so on. +* **UI** + +### Added + +* **Assets**: Added support for Cloudflare R2. +* **Contents**: New endpoint to stream all content items out using server-sent-events. +* **Rules**: Also trigger rules when a reference has changed. +* **Scripting**: Expose information about deprecated helper methods. +* **Scripting**: Improved the `reject` method to output multiple errors. +* **Scripting**: New method to resolve a single asset. +* **Scripting**: New method to resolve a single reference. +* **UI**: Autocompletion for Preview URLs. +* **UI**: Autocompletion for single line code editors. +* **UI**: Show allowed values in autocompletion. + +### Security + +* **UI**: Escape HTML in the hightlight pipe, that is used to highlight matching words in search. + ## [7.4.0] - 2023-02-01 ### Fixed diff --git a/backend/extensions/Squidex.Extensions/Actions/AzureQueue/AzureQueueActionHandler.cs b/backend/extensions/Squidex.Extensions/Actions/AzureQueue/AzureQueueActionHandler.cs index 2319d3c92..6934d5015 100644 --- a/backend/extensions/Squidex.Extensions/Actions/AzureQueue/AzureQueueActionHandler.cs +++ b/backend/extensions/Squidex.Extensions/Actions/AzureQueue/AzureQueueActionHandler.cs @@ -47,7 +47,7 @@ public sealed class AzureQueueActionHandler : RuleActionHandler ExecuteJobAsync(AzureQueueJob job, diff --git a/backend/extensions/Squidex.Extensions/Actions/ElasticSearch/ElasticSearchActionHandler.cs b/backend/extensions/Squidex.Extensions/Actions/ElasticSearch/ElasticSearchActionHandler.cs index e8c1614cc..a06719269 100644 --- a/backend/extensions/Squidex.Extensions/Actions/ElasticSearch/ElasticSearchActionHandler.cs +++ b/backend/extensions/Squidex.Extensions/Actions/ElasticSearch/ElasticSearchActionHandler.cs @@ -58,7 +58,7 @@ public sealed class ElasticSearchActionHandler : RuleActionHandler ExecuteJobAsync(ElasticSearchJob job, diff --git a/backend/extensions/Squidex.Extensions/Actions/OpenSearch/OpenSearchActionHandler.cs b/backend/extensions/Squidex.Extensions/Actions/OpenSearch/OpenSearchActionHandler.cs index 09591fe11..c8829a1de 100644 --- a/backend/extensions/Squidex.Extensions/Actions/OpenSearch/OpenSearchActionHandler.cs +++ b/backend/extensions/Squidex.Extensions/Actions/OpenSearch/OpenSearchActionHandler.cs @@ -58,7 +58,7 @@ public sealed class OpenSearchActionHandler : RuleActionHandler ExecuteJobAsync(OpenSearchJob job, diff --git a/backend/extensions/Squidex.Extensions/Actions/SignalR/SignalRActionHandler.cs b/backend/extensions/Squidex.Extensions/Actions/SignalR/SignalRActionHandler.cs index 76d30db4b..3733aa6ec 100644 --- a/backend/extensions/Squidex.Extensions/Actions/SignalR/SignalRActionHandler.cs +++ b/backend/extensions/Squidex.Extensions/Actions/SignalR/SignalRActionHandler.cs @@ -52,7 +52,7 @@ public sealed class SignalRActionHandler : RuleActionHandler ExecuteJobAsync(SignalRJob job, diff --git a/backend/extensions/Squidex.Extensions/Actions/Typesense/TypesenseActionHandler.cs b/backend/extensions/Squidex.Extensions/Actions/Typesense/TypesenseActionHandler.cs index 6127ef233..8c41ee5d2 100644 --- a/backend/extensions/Squidex.Extensions/Actions/Typesense/TypesenseActionHandler.cs +++ b/backend/extensions/Squidex.Extensions/Actions/Typesense/TypesenseActionHandler.cs @@ -49,7 +49,7 @@ public sealed class TypesenseActionHandler : RuleActionHandler ExecuteJobAsync(TypesenseJob job, diff --git a/backend/extensions/Squidex.Extensions/Actions/Webhook/WebhookActionHandler.cs b/backend/extensions/Squidex.Extensions/Actions/Webhook/WebhookActionHandler.cs index b8f6bedcf..4da3d39a8 100644 --- a/backend/extensions/Squidex.Extensions/Actions/Webhook/WebhookActionHandler.cs +++ b/backend/extensions/Squidex.Extensions/Actions/Webhook/WebhookActionHandler.cs @@ -44,7 +44,7 @@ public sealed class WebhookActionHandler : RuleActionHandler> ParseHeadersAsync(string headers, EnrichedEvent @event)