@@ -63,6 +63,11 @@ troubleshoot in production.
63
63
text search, please make sure to remove the
64
64
` --experimental-enabled=text-search ` because Memgraph won't be able to start.
65
65
[ #3301 ] ( https://github.com/memgraph/memgraph/pull/3301 )
66
+ - ` SHOW INDEX INFO ` output is different. Previously, all text indexes returned
67
+ the hardcoded string "text" as their type. Now, the output reflects the
68
+ actual indexed entity more precisely: for node indexes ` label_text ` , for edge
69
+ indexes ` edge-type_text ` .
70
+ [ #3178 ] ( https://github.com/memgraph/memgraph/pull/3178 )
66
71
67
72
{ <h4 className = " custom-header" >✨ New features</h4 >}
68
73
@@ -103,6 +108,19 @@ troubleshoot in production.
103
108
drop even if it is currently being used. The database will be hidden
104
109
immediately, but deletion is deferred until it is safe.
105
110
[ #3033 ] ( https://github.com/memgraph/memgraph/pull/3033 )
111
+ - Updated system metrics with ` WriteWriteConflicts ` and ` TransientErrors `
112
+ counters [ #3230 ] ( https://github.com/memgraph/memgraph/pull/3230 )
113
+ - Updated list of metrics with latency of the GC skiplist cleanup, as well as
114
+ the latency of the whole GC process
115
+ [ #3235 ] ( https://github.com/memgraph/memgraph/pull/3235 )
116
+ - Added support for text indexing on edges. Users can now create and query text
117
+ indexes on edges. The syntax for creating an edge-based text index is:
118
+ ` CREATE TEXT EDGE INDEX edge_index_name ON :EDGE_TYPE(text_property); ` .
119
+ [ #3178 ] ( https://github.com/memgraph/memgraph/pull/3178 )
120
+ - Added fine-grained access control for ` SHOW SCHEMA INFO; ` query. Users are
121
+ now restricted from seeing the full graph schema if they don't have the
122
+ fine-grained privileges.
123
+ [ #3304 ] ( https://github.com/memgraph/memgraph/pull/3304 )
106
124
107
125
{ <h4 className = " custom-header" >🛠️ Improvements</h4 >}
108
126
@@ -124,6 +142,18 @@ troubleshoot in production.
124
142
routing table. This change improves routing accuracy at the expense of
125
143
additional network
126
144
latency.[ #3222 ] ( https://github.com/memgraph/memgraph/pull/3222 )
145
+ - Users can expect a slightly faster demotion to replica on the old main when
146
+ the failover occurs. [ #3128 ] ( https://github.com/memgraph/memgraph/pull/3182 )
147
+ - Text search now includes a relevance score in results, a limit parameter to
148
+ control result count, and support for aggregation queries on text edge
149
+ indexes. These enhancements let users rank, filter, and analyze search
150
+ results more effectively.
151
+ [ #3264 ] ( https://github.com/memgraph/memgraph/pull/3264 )
152
+ - Added better log messages during user creation.
153
+ [ #3303 ] ( https://github.com/memgraph/memgraph/pull/3303 )
154
+ - Updated error message about user not having the correct role-based privileges
155
+ with more information about what the database admin should do in that case.
156
+ [ #3312 ] ( https://github.com/memgraph/memgraph/pull/3312 )
127
157
128
158
{ <h4 className = " custom-header" >🐞 Bug fixes</h4 >}
129
159
0 commit comments