Commit b73eb09
Memgraph v3.11.0 (#1629)
* Add Memgraph v3.11.0 and Lab v3.11.0 release note titles
Co-authored-by: Cursor <cursoragent@cursor.com>
* Update the release docs start skill
* Add mgp_graph_get_start_timestamp / Graph.start_timestamp (#1640)
Documents the transaction starting timestamp exposed to procedures. The
value stays stable across USING PERIODIC COMMIT boundaries, making it
usable as a per-query cache key. Pairs with memgraph/memgraph#4167.
* docs: document start_time and elapsed_ms columns in SHOW TRANSACTIONS (#1627)
Add the two new columns to the schema table and example outputs, note
that snapshot rows now populate them at the top level, and update the
snapshot-progress callout to mention the brief window where start_time
can read as null.
* feat: Ignore --query-modules-directory on coordinators (#1636)
* feat: Document init container chown (#1637)
* Schema (node/rel)_type_properties docs (#1638)
* docs(schema): document expanded output of schema type-properties procedures
Update the Output, Usage, and Example sections of schema.node_type_properties
and schema.rel_type_properties to describe the new sourceNodeLabels,
targetNodeLabels, propertyObservations, and totalObservations columns and
the (relType, sourceNodeLabels, targetNodeLabels) partitioning for the
rel-properties procedure. Replace example result tables with output captured
against the updated procedures.
* docs(schema): fix Kept key value in schema.assert example
The Kept row of the schema.assert example showed "id" for a unique
constraint on a single property, but the procedure emits "[id]" (the
stringified property list) for that action.
* feat: Add support for MCP authorization using OAuth (#1644)
* Document cross_database module (deprecates migrate in 3.11) (#1634)
Add the cross_database reference page covering all procedures
(bolt, neo4j, mysql, postgresql, sql_server, oracle_db, s3,
arrow_flight, duckdb, servicenow), the Bolt type conversion rules
(including the lossy 30-days-per-month Duration flattening), the
same-parameters guard, and the migrate.* alias table.
Reduce the migrate page to a redirect stub pointing at cross_database;
the migrate.* names continue to work via Memgraph's callable-mapping
aliases, but the canonical reference now lives at cross_database.
* docs: Bolt TLS (#1641)
* Apply the docs merging skill - pass #1
* Add changelog items
* feat: Intra-cluster TLS-secured communication (#1647)
* feat: Intra-cluster TLS
* docs: Document charts-side of the reload feature
* Add v3.11.0 release notes for remaining milestone PRs.
Document breaking changes, features, and bug fixes from memgraph#3923 through #4240.
Co-authored-by: Cursor <cursoragent@cursor.com>
* feat: Add support for standalone chart labels (#1645)
* feat: HA chart log_retention_days (#1646)
* Add v3.11.0 release notes for #4188, #4211, #4229, and #4246.
Complete milestone changelog coverage for slow-query logging, GC visibility, planner crash fix, and database drop crash fix.
Co-authored-by: Cursor <cursoragent@cursor.com>
* docs: align schema procedure types and mandatory with new semantics (#1648)
- propertyTypes now lists the connector-recognised type strings
(Boolean, Float, DateTime, Point, etc.)
- mandatory for nodes is driven by existence constraints; for
relationships it is always false
- Example output tables and explanatory text updated to match
Pairs with memgraph/memgraph#4186.
* docs: add toBooleanOrNull, toFloatOrNull, toIntegerOrNull, toStringList (#1651)
* docs: add toBooleanOrNull, toFloatOrNull, toIntegerOrNull, toStringList
Document the new *OrNull scalar conversions and toStringList in the
function reference, and note that the list conversions null out
non-convertible elements per element. Drop these conversion functions
from the unsupported-functions list.
* docs: document point string representation from toString
* docs: show garbage collector in SHOW TRANSACTIONS (#1652)
* feat: show garbage collector in SHOW TRANSACTIONS
* docs: note gc rows cannot be terminated and are filtered like snapshot rows
* docs: document slow and failed query logging (#1654)
Add a Slow and failed query logging section to the logs page covering the
[slow-query]/[failed-query] streams, line format, the DDL timing limitation,
and runtime/per-session configuration. List the new --log-min-duration-ms,
--log-failed-queries and --log-query-plan flags and their runtime settings,
and note SET SESSION SETTING / RESET SESSION SETTING per-session overrides.
* docs: update SHOW STORAGE INFO global/per-DB split and SHOW LICENSE INFO (#1655)
* docs: update SHOW STORAGE INFO global/per-DB split and SHOW LICENSE INFO
Reflect show_storage_info_disk_fix changes:
- Rewrite bare SHOW STORAGE INFO to instance-only schema; add breaking-change
callout (field renames + global_isolation_level/global_storage_mode now report
startup defaults).
- Document SHOW STORAGE INFO ON CURRENT DATABASE and correct enterprise gating
(non-default DB only).
- Add memory_limit_policy row + evaluation matrix to SHOW LICENSE INFO.
- Add ShowStorageInfo global metric to monitoring.
- Fix stale field references across storage-memory-usage, transactions,
vector-search, enabling-memgraph-enterprise, backup-and-restore, and migration
pages.
* docs: align SHOW STORAGE INFO gating/output notes with disk-fix branch
- faq: bare SHOW STORAGE INFO is instance-level only; node/relationship
counts moved to the per-database variant.
- tenant-profiles: only non-default DB requires Enterprise; default DB and
ON CURRENT DATABASE work on all editions.
- release-notes: note Community-edition support for ON DATABASE <default> /
ON CURRENT DATABASE.
* docs: clarify per-database SHOW STORAGE INFO field tables are a memory subset
The per-database tables in storage-memory-usage and tenant-profiles list
only the memory-related fields; point readers to the complete 15-field set
in server-stats and stop implying the memory subset is the full output.
* docs: stop calling per-database introspection queries all "new"
Only SHOW STORAGE INFO ON CURRENT DATABASE is new in 3.11; ON DATABASE
<name> (#3952) and SHOW MEMORY INFO predate it. Reword the lead-in and
point to the availability note for the per-query edition/privilege split.
* docs: fix ME license-types memory-gating to match code and SHOW LICENSE INFO
The license memory limit gates (license.cpp): AI_PLATFORM limits the
graph_memory_tracker (graph + query, the query+graph_memory_tracked arena),
not "graph only"; ENTERPRISE limits total memory (graph + query + vector
index). Align the License types table with memory_limit_policy, server-stats,
and vector-search. Also fix the --memory-limit anchor.
* docs: Describe RedHat HA chart (#1656)
* Stripped relwithdebinfo build (#1659)
* update ddebugging page
* update direct download links
* update debugging page
* feat: add elementId function (#1657)
* feat: document elementId function
* docs: trim elementId description to mirror id()
* docs: session trace now emits into the main log instead of per-session files (#1661)
Rewrite the Session trace section to reflect memgraph#4149: --query-log-directory
and per-session {uuid}.log files are removed; SET SESSION TRACE ON now emits
tagged [session=<uuid>] events into the main log at INFO (visible when
--log-level is INFO or lower). Remove the --query-log-directory configuration
flag row.
* doc: Document multi-tenant monitoring (#1635)
* doc: Document OpenMetrics monitoring
* doc: Restore text about resetting counters
* Add v3.11.0 release notes for #4230, #4247, #4264, #4265, and #4273.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Document ascending PR order for release notes and PR lists in skills.
Co-authored-by: Cursor <cursoragent@cursor.com>
* new: Add Lab 3.11.0 release notes (#1663)
* document direct scraping of openmetrics from Memgraph in kubernetes (#1662)
* feat: document virtual graphs via derive() (#1664)
* feat: document virtual graphs via derive()
Document the derive() aggregation function for building in-query virtual
(derived) graphs, covering the concept, options (virtualEdgeType,
relationshipProperties, source/target node label and property overlays,
undirectedEdgeTypes), per-key node inheritance, and usage examples in
run-algorithms. Add derive() to the graph projection functions reference.
* Remove version note from derive() functions reference entry
* feat: document vector index on label/edge-type combinations (#1665)
Document the new vector index DDL shapes (single, any '|', all '&', and
wildcard) for both CREATE VECTOR INDEX and CREATE VECTOR EDGE INDEX, the
edge '&' rejection, overlapping-index behavior, and how each mode renders
in SHOW INDEX INFO. Update the SHOW VECTOR INDEX INFO label field
description and refresh the walkthrough outputs for the new :Label display.
* feat: document fuzzy text search (#1666)
* feat: document fuzzy text search and the search config map
Document the new optional config map for the text_search search and
regex_search procedures (limit plus fuzzy_distance, fuzzy_prefix and
fuzzy_transpositions), add a dedicated Fuzzy search section with examples,
and note that limit moved from a positional argument into the config map.
* docs: remove nonexistent limit param from text_search.aggregate
text_search.aggregate / aggregate_edges take (index_name, search_query,
aggregation_query); there is no limit argument.
* Update sitemap for v3.11.0 (add cross_database page).
Co-authored-by: Cursor <cursoragent@cursor.com>
---------
Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Ivan Milinović <44698587+imilinovic@users.noreply.github.com>
Co-authored-by: Andi Skrgat <andi8647@gmail.com>
Co-authored-by: Vlasta <vlasta.pavicic@memgraph.io>
Co-authored-by: andrejtonev <29177572+andrejtonev@users.noreply.github.com>
Co-authored-by: Dr Matt James <mattkjames7@gmail.com>
Co-authored-by: colinbarry <colin.barry@memgraph.io>
Co-authored-by: Toni <toni.lastre@memgraph.io>
Co-authored-by: David Ivekovic <david.ivekovic@memgraph.io>1 parent 5b3fb0b commit b73eb09
41 files changed
Lines changed: 3188 additions & 1657 deletions
File tree
- pages
- advanced-algorithms
- available-algorithms
- ai-ecosystem
- clustering/high-availability
- custom-query-modules
- c
- python
- data-migration
- migrate-from-neo4j
- database-management
- authentication-and-authorization
- fundamentals
- getting-started/install-memgraph
- help-center
- memgraph-lab
- features
- querying
- public
- skills
- check-release-milestone
- new-release-branch
- write-changelog-item
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
0 commit comments