You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Fix generation of WoT Thing Descriptions wrong base and href paths
22
+
23
+
Reported issue [#1959](https://github.com/eclipse-ditto/ditto/issues/1959) correctly identified a bug in the
24
+
[WoT (Web of Things) Thing Description generation](basic-wot-integration.html#thing-description-generation).
25
+
The generated `base` was not ending with a slash and the relative `href` in the TDs were beginning with a slash which
26
+
leads to wrongly interpreted absolute paths, e.g. when using the browser `URL` object.
27
+
28
+
This was fixed in PR [#1962](https://github.com/eclipse-ditto/ditto/pull/1962).
29
+
30
+
#### Fix performance regression issue when running against MongoDB 6 - part 2
31
+
32
+
In Ditto [3.5.7](release_notes_357.html) a MongoDB `aggregation` query done by Ditto as part of background deletion
33
+
was aimed to be optimized.
34
+
This fix provided in PR [#1956](https://github.com/eclipse-ditto/ditto/pull/1956) however could lead to side effects resulting again in very long-running
35
+
aggregation queries.
36
+
37
+
With PR [#1961](https://github.com/eclipse-ditto/ditto/pull/1961) provided in this bugfix release, the options to
38
+
configure the index `hint`s and even to create additional indexes were enhanced and the defaults changed so that no `hint`
39
+
is provided by default, but the MongoDB query planner decides on which index to use.
40
+
The option to configure a `hint` however was enhanced, depending on which fields were present in the `$match` aggregation step.
41
+
42
+
43
+
### Helm Chart
44
+
45
+
The [Ditto Helm Chart](https://github.com/eclipse-ditto/ditto/tree/master/deployment/helm) contained some configuration
46
+
bugs and enhancements which are also addressed with this bugfix release.
47
+
48
+
#### Provided configuration for MongoReadJournal aggregation index hinting
49
+
50
+
Provide Helm value options to configure settings for the above-mentioned PR
0 commit comments