From 4706611a13ea9c4ed03b29f2e25422bf5a0cdd3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20J=C3=A4ckle?= Date: Wed, 23 Aug 2023 14:05:38 +0200 Subject: [PATCH] provide Ditto 3.3.6 release notes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Jäckle --- .../_data/sidebars/ditto_sidebar.yml | 3 ++ .../pages/ditto/release_notes_336.md | 45 +++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 documentation/src/main/resources/pages/ditto/release_notes_336.md diff --git a/documentation/src/main/resources/_data/sidebars/ditto_sidebar.yml b/documentation/src/main/resources/_data/sidebars/ditto_sidebar.yml index 51def741c1..2729b97230 100644 --- a/documentation/src/main/resources/_data/sidebars/ditto_sidebar.yml +++ b/documentation/src/main/resources/_data/sidebars/ditto_sidebar.yml @@ -23,6 +23,9 @@ entries: - title: Release Notes output: web folderitems: + - title: 3.3.6 + url: /release_notes_336.html + output: web - title: 3.3.5 url: /release_notes_335.html output: web diff --git a/documentation/src/main/resources/pages/ditto/release_notes_336.md b/documentation/src/main/resources/pages/ditto/release_notes_336.md new file mode 100644 index 0000000000..3fac1928ed --- /dev/null +++ b/documentation/src/main/resources/pages/ditto/release_notes_336.md @@ -0,0 +1,45 @@ +--- +title: Release notes 3.3.6 +tags: [release_notes] +published: true +keywords: release notes, announcements, changelog +summary: "Version 3.3.6 of Eclipse Ditto, released on 23.08.2023" +permalink: release_notes_335.html +--- + +This is a bugfix release, no new features since [3.3.5](release_notes_335.html) were added. + +## Changelog + +Compared to the latest release [3.3.5](release_notes_335.html), the following changes and bugfixes were added. + +### Changes + + +### Bugfixes + +This is a complete list of the +[merged pull requests](https://github.com/eclipse-ditto/ditto/pulls?q=is%3Apr+milestone%3A3.3.6). + +#### [Fixed providing Ditto Adaptable information in the "_context" of an SSE event](https://github.com/eclipse-ditto/ditto/pull/1716) + +Previously, the optional `_context` of an SSE subscription only contained the headers. + +The fix also adds (same as for the [`NormalizedMessageMapper`](connectivity-mapping.html#normalized-mapper)) the `topic` +and `path` of the underlying Ditto protocol message. + +#### [Fixed using "/cloudevents" endpoint for other entities than things](https://github.com/eclipse-ditto/ditto/pull/1724) + +When sending `Policy` commands via the `POST /cloudevents` endpoint, the HTTP response was never completed successfully, +as the cloudevents implementation made the assumption to always handle thing commands only. +This has been fixed, now also Policy commands may be sent via the Cloud Events endpoint. + + +### Helm Chart + +The [Ditto Helm Chart](https://github.com/eclipse-ditto/ditto/tree/master/deployment/helm), which was enhanced and changed +a lot for version 3.3.0, contained some configuration bugs which are also addressed with this bugfix release. + +#### [Support for basic nginx-ingress authentication](https://github.com/eclipse-ditto/ditto/pull/1702) + +When using "Ingress" in the Ditto Helm chart, now also users via nginx "Basic auth" can be authenticated.