Skip to content

Commit

Permalink
Prepare release v1.10-memgraph-2.10.1 (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbuda authored Aug 24, 2023
1 parent 629c026 commit 75a3f51
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
env:
DOCKER_ORGANIZATION_NAME: memgraph
DOCKER_REPOSITORY_NAME: memgraph-mage
MEMGRAPH_VERSION: 2.9.0
MEMGRAPH_VERSION: 2.10.1
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
runs-on: ubuntu-latest
env:
MEMGRAPH_VERSION: 2.10.0
MEMGRAPH_VERSION: 2.10.1
strategy:
matrix:
architecture: ["amd64", "arm64"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM debian:bullseye as base

USER root

ARG MG_VERSION=2.10.0
ARG MG_VERSION=2.10.1
ARG PY_VERSION_DEFAULT
ENV MG_VERSION ${MG_VERSION}
ENV PY_VERSION ${PY_VERSION_DEFAULT}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cugraph
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG CUGRAPH_VERSION=22.02
ARG CUDA_VERSION=11.5
ARG CUDA_VERSION_MINOR=11.5.2
ARG PY_VERSION=3.8
ARG MG_VERSION=2.10.0
ARG MG_VERSION=2.10.1

FROM rapidsai/rapidsai:${CUGRAPH_VERSION}-cuda${CUDA_VERSION}-runtime-ubuntu20.04-py${PY_VERSION} as cugraph-dev

Expand Down
2 changes: 1 addition & 1 deletion cpp/memgraph
Submodule memgraph updated 51 files
+13 −0 .pre-commit-config.yaml
+3 −3 CMakeLists.txt
+233 −146 include/mgp.hpp
+4 −0 libs/CMakeLists.txt
+6 −0 libs/setup.sh
+1 −1 licenses/BSL.txt
+202 −0 licenses/third-party/abseil-cpp/LICENSE
+218 −0 licenses/third-party/compile-time-regular-expressions/LICENSE
+31 −7 query_modules/example.cpp
+43 −22 src/query/common.hpp
+10 −0 src/query/db_accessor.hpp
+1 −3 src/query/interpreter.cpp
+23 −31 src/query/plan/operator.cpp
+15 −1 src/storage/v2/CMakeLists.txt
+4 −0 src/storage/v2/delta.hpp
+2 −0 src/storage/v2/disk/rocksdb_storage.hpp
+11 −0 src/storage/v2/disk/storage.cpp
+22 −0 src/storage/v2/edge_accessor.cpp
+3 −0 src/storage/v2/edge_accessor.hpp
+20 −0 src/storage/v2/edge_direction.hpp
+42 −91 src/storage/v2/inmemory/indices_utils.hpp
+6 −4 src/storage/v2/inmemory/label_index.cpp
+13 −0 src/storage/v2/inmemory/storage.cpp
+14 −7 src/storage/v2/mvcc.hpp
+26 −0 src/storage/v2/property_store.cpp
+8 −0 src/storage/v2/property_store.hpp
+4 −1 src/storage/v2/storage.cpp
+8 −1 src/storage/v2/transaction.hpp
+356 −313 src/storage/v2/vertex_accessor.cpp
+3 −0 src/storage/v2/vertex_accessor.hpp
+196 −0 src/storage/v2/vertex_info_cache.cpp
+169 −0 src/storage/v2/vertex_info_cache.hpp
+15 −0 src/storage/v2/vertex_info_cache_fwd.hpp
+209 −0 src/storage/v2/vertex_info_helpers.hpp
+4 −2 src/storage/v2/view.hpp
+32 −30 src/utils/skip_list.hpp
+24 −1 src/utils/variant_helpers.hpp
+1 −0 tests/e2e/CMakeLists.txt
+5 −5 tests/e2e/batched_procedures/procedures/batch_c_read.cpp
+8 −0 tests/e2e/concurrent_query_modules/CMakeLists.txt
+33 −0 tests/e2e/concurrent_query_modules/client.py
+19 −0 tests/e2e/concurrent_query_modules/con_query_modules.py
+3 −0 tests/e2e/concurrent_query_modules/test_query_modules/CMakeLists.txt
+59 −0 tests/e2e/concurrent_query_modules/test_query_modules/module_test.cpp
+33 −0 tests/e2e/concurrent_query_modules/workloads.yaml
+5 −0 tests/e2e/configuration/default_config.py
+2 −1 tests/unit/cpp_api.cpp
+35 −0 tests/unit/query_plan_create_set_remove_delete.cpp
+14 −6 tests/unit/storage_v2_durability_inmemory.cpp
+238 −216 tools/github/clang-tidy/clang-tidy-diff.py
+56 −0 tools/pre-commit/clang-tidy.py

0 comments on commit 75a3f51

Please sign in to comment.