Changes
Bugfixes
- 34e3af8 fix: deprecate cluster command
- 1c01412 fix: introspection, handle uuid
- c3c8d69 fix: Add ability to reset when using 'run' as seed definition (#2712)
- 040483a Fix introspection - relations #2741
Performance
We have implemented numerous performance improvements in this release:
- Relation Filters (#2771):
- Queries have been refactored so that subqueries are not correlated anymore.
- We skip joining model tables when it is unnecessary in some cases.
- We decreased CPU and memory usage by tweaking method and data structures that are used very frequently. Examples are:
- #2814 : Results of parsing and validating a GraphQL query are cached now.
- #2805 : Invisible fields are not read from the ResultSet anymore.
- #2804 : Remove the use of a sorted map that was just introduced to make test results more readable.
- #2800 : Avoid the instantiation of expensive Calendar objects in hot loops.