Compare commits
3 Commits
v2.15.0-rc
...
release/2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ed7cc4b10 | ||
|
|
5f66c8815c | ||
|
|
954de4ac0f |
@@ -68,7 +68,7 @@ set(MEMGRAPH_OVERRIDE_VERSION "2.15.0")
|
||||
|
||||
# Custom suffix that this version should have. The suffix can be any arbitrary
|
||||
# string. Primarily used when building a version for a specific customer.
|
||||
set(MEMGRAPH_OVERRIDE_VERSION_SUFFIX "rc5")
|
||||
set(MEMGRAPH_OVERRIDE_VERSION_SUFFIX "")
|
||||
|
||||
# Variables used to generate the versions.
|
||||
if (MG_ENTERPRISE)
|
||||
|
||||
@@ -45,6 +45,7 @@ MEMGRAPH_BUILD_DEPS=(
|
||||
readline-devel # for memgraph console
|
||||
python3-devel # for query modules
|
||||
openssl-devel
|
||||
openssl
|
||||
libseccomp-devel
|
||||
python3 python3-pip nmap-ncat # for tests
|
||||
#
|
||||
|
||||
@@ -43,6 +43,7 @@ MEMGRAPH_BUILD_DEPS=(
|
||||
readline-devel # for memgraph console
|
||||
python3-devel # for query modules
|
||||
openssl-devel
|
||||
openssl
|
||||
libseccomp-devel
|
||||
python3 python-virtualenv python3-pip nmap-ncat # for qa, macro_benchmark and stress tests
|
||||
#
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2023 Memgraph Ltd.
|
||||
// Copyright 2024 Memgraph Ltd.
|
||||
//
|
||||
// Use of this software is governed by the Business Source License
|
||||
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
||||
@@ -39,9 +39,10 @@ struct UUID {
|
||||
|
||||
UUID() { uuid_generate(uuid.data()); }
|
||||
explicit operator std::string() const {
|
||||
auto decoded = std::array<char, UUID_STR_LEN>{};
|
||||
// Note not using UUID_STR_LEN so we can build with older libuuid
|
||||
auto decoded = std::array<char, 37 /*UUID_STR_LEN*/>{};
|
||||
uuid_unparse(uuid.data(), decoded.data());
|
||||
return std::string{decoded.data(), UUID_STR_LEN - 1};
|
||||
return std::string{decoded.data(), 37 /*UUID_STR_LEN*/ - 1};
|
||||
}
|
||||
|
||||
explicit operator arr_t() const { return uuid; }
|
||||
|
||||
Reference in New Issue
Block a user