Skip to content

Commit

Permalink
Prepare memgraph-platform 2.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkoBarisic committed Dec 9, 2023
1 parent a1cdbc8 commit d0cb9b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lab
Submodule lab updated from 7bab44 to da903d
2 changes: 1 addition & 1 deletion mage
Submodule mage updated 75 files
+1 −1 .github/workflows/docker_publish.yml
+1 −1 .github/workflows/test.yml
+1 −1 .gitmodules
+1 −1 Dockerfile
+1 −1 Dockerfile.cugraph
+42 −9 README.md
+5 −1 cpp/betweenness_centrality_module/betweenness_centrality_module.cpp
+5 −1 cpp/betweenness_centrality_module/betweenness_centrality_online_module.cpp
+7 −2 cpp/biconnected_components_module/biconnected_components_module.cpp
+7 −2 cpp/bridges_module/bridges_module.cpp
+18 −18 cpp/collections_module/algorithm/collections.cpp
+1 −1 cpp/collections_module/collections_module.cpp
+5 −1 cpp/community_detection_module/community_detection_module.cpp
+26 −17 cpp/community_detection_module/community_detection_online_module.cpp
+5 −1 cpp/connectivity_module/connectivity_module.cpp
+10 −10 cpp/create_module/algorithm/create.cpp
+1 −1 cpp/create_module/create_module.cpp
+11 −1 cpp/cugraph_module/algorithms/balanced_cut_clustering.cu
+11 −1 cpp/cugraph_module/algorithms/betweenness_centrality.cu
+11 −1 cpp/cugraph_module/algorithms/hits.cu
+11 −1 cpp/cugraph_module/algorithms/katz_centrality.cu
+11 −1 cpp/cugraph_module/algorithms/leiden.cu
+11 −1 cpp/cugraph_module/algorithms/louvain.cu
+11 −1 cpp/cugraph_module/algorithms/pagerank.cu
+11 −1 cpp/cugraph_module/algorithms/personalized_pagerank.cu
+11 −1 cpp/cugraph_module/algorithms/spectral_clustering.cu
+5 −1 cpp/cycles_module/cycles_module.cpp
+6 −2 cpp/degree_centrality_module/degree_centrality_module.cpp
+3 −3 cpp/distance_calculator/distance_calculator.cpp
+3 −3 cpp/do_module/do_module.cpp
+1 −1 cpp/graph_util_module/algorithms/ancestors.hpp
+1 −1 cpp/graph_util_module/algorithms/chain_nodes.hpp
+1 −1 cpp/graph_util_module/algorithms/connect_nodes.hpp
+1 −1 cpp/graph_util_module/algorithms/descendants.hpp
+1 −1 cpp/graph_util_module/algorithms/topological_sort.hpp
+1 −1 cpp/graph_util_module/graph_util_module.cpp
+5 −1 cpp/katz_centrality_module/katz_centrality_module.cpp
+30 −8 cpp/katz_centrality_module/katz_centrality_online_module.cpp
+1 −1 cpp/label_module/algorithm/label.cpp
+1 −1 cpp/label_module/label_module.cpp
+9 −9 cpp/map_module/algorithm/map.cpp
+1 −1 cpp/map_module/map_module.cpp
+1 −1 cpp/memgraph
+10 −0 cpp/mg_utility/data_structures/graph_view.hpp
+30 −2 cpp/mg_utility/mg_graph.hpp
+24 −2 cpp/mg_utility/mg_utils.hpp
+2 −2 cpp/neighbors_module/algorithm/neighbors.cpp
+1 −1 cpp/neighbors_module/neighbors_module.cpp
+3 −3 cpp/node_module/algorithm/node.cpp
+0 −2 cpp/node_module/node_module.cpp
+7 −7 cpp/node_similarity_module/node_similarity_module.cpp
+4 −4 cpp/nodes_module/algorithm/nodes.cpp
+1 −1 cpp/nodes_module/nodes_module.cpp
+10 −1 cpp/pagerank_module/pagerank_module.cpp
+24 −6 cpp/pagerank_module/pagerank_online_module.cpp
+2 −2 cpp/periodic_module/periodic_iterate.cpp
+12 −3 cpp/refactor_module/algorithm/refactor.cpp
+1 −0 cpp/text_module/CMakeLists.txt
+72 −3 cpp/text_module/algorithm/text.cpp
+16 −5 cpp/text_module/algorithm/text.hpp
+10 −1 cpp/text_module/text_module.cpp
+1 −1 cpp/util_module/algorithm/util.cpp
+1 −1 cpp/util_module/util_module.cpp
+0 −0 e2e/text_test/test_format_1/input.cyp
+4 −0 e2e/text_test/test_format_1/test.yml
+0 −0 e2e/text_test/test_format_2/input.cyp
+4 −0 e2e/text_test/test_format_2/test.yml
+0 −0 e2e/text_test/test_regex_groups_1/input.cyp
+4 −0 e2e/text_test/test_regex_groups_1/test.yml
+0 −0 e2e/text_test/test_regex_groups_2/input.cyp
+7 −0 e2e/text_test/test_regex_groups_2/test.yml
+0 −0 e2e/text_test/test_regex_groups_3/input.cyp
+6 −0 e2e/text_test/test_regex_groups_3/test.yml
+1 −1 python/link_prediction.py
+6 −0 rust/rsmgp-sys/mgp/mg_procedure.h

0 comments on commit d0cb9b6

Please sign in to comment.