From 953594aa1360cb420dfa42dcab7b45bf10edca48 Mon Sep 17 00:00:00 2001 From: Jin Hai Date: Tue, 29 Oct 2024 08:14:42 +0800 Subject: [PATCH] Update version info (#2106) ### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [x] Documentation Update - [x] Refactoring --------- Signed-off-by: Jin Hai --- CMakeLists.txt | 4 ++-- README.md | 2 +- benchmark/remote_infinity/remote_query_benchmark.cpp | 2 +- client/cpp/infinity_client.cpp | 2 +- conf/follower.toml | 2 +- conf/infinity_conf.toml | 2 +- conf/leader.toml | 2 +- conf/learner.toml | 2 +- conf/minio_conf.toml | 2 +- conf/pytest_parallel_continuous_conf.toml | 2 +- conf/pytest_parallel_infinity_conf.toml | 2 +- conf/pytest_parallel_infinity_minio.toml | 2 +- conf/pytest_parallel_infinity_vfs_off.toml | 2 +- docs/getstarted/build_from_source.mdx | 6 +++--- docs/getstarted/deploy_infinity_server.mdx | 10 +++++----- docs/getstarted/quickstart.md | 2 +- docs/references/configurations.mdx | 2 +- docs/references/http_api_reference.mdx | 6 +++--- pyproject.toml | 2 +- python/infinity_sdk/infinity/remote_thrift/client.py | 3 ++- python/infinity_sdk/pyproject.toml | 2 +- src/network/infinity_thrift_service.cpp | 1 + src/network/infinity_thrift_service.cppm | 2 +- src/unit_test/main/config.cpp | 6 +++--- test/data/config/infinity_conf.toml | 2 +- test/data/config/restart_test/test_alter/1.toml | 2 +- test/data/config/restart_test/test_alter/2.toml | 2 +- test/data/config/restart_test/test_alter/3.toml | 2 +- test/data/config/restart_test/test_cleanup/1.toml | 2 +- test/data/config/restart_test/test_drop/1.toml | 2 +- test/data/config/restart_test/test_fulltext/1.toml | 2 +- test/data/config/restart_test/test_fulltext/2.toml | 2 +- test/data/config/restart_test/test_fulltext/3.toml | 2 +- test/data/config/restart_test/test_insert/1.toml | 2 +- test/data/config/restart_test/test_insert/2.toml | 2 +- test/data/config/restart_test/test_insert/3.toml | 2 +- test/data/config/restart_test/test_insert/4.toml | 2 +- test/data/config/restart_test/test_insert/5.toml | 2 +- test/data/config/restart_test/test_memidx/1.toml | 2 +- test/data/config/restart_test/test_memidx/2.toml | 2 +- test/data/config/restart_test/test_memidx/3.toml | 2 +- test/data/config/restart_test/test_memidx/4.toml | 2 +- test/data/config/test.toml | 2 +- test/data/config/test_buffer_obj.toml | 2 +- test/data/config/test_buffer_obj_2.toml | 2 +- test/data/config/test_catalog_delta.toml | 2 +- test/data/config/test_cleanup_task_silent_vfs_off.toml | 2 +- test/data/config/test_close_bgtask.toml | 2 +- test/data/config/test_close_bgtask_silent.toml | 2 +- test/data/config/test_close_bgtask_silent_vfs_off.toml | 2 +- test/data/config/test_close_bgtask_vfs_off.toml | 2 +- test/data/config/test_close_ckp.toml | 2 +- test/data/config/test_close_ckp_vfs_off.toml | 2 +- test/data/config/test_conf_invalid_bytesize.toml | 2 +- test/data/config/test_conf_invalid_log_level.toml | 2 +- test/data/config/test_conf_invalid_param.toml | 2 +- test/data/config/test_conf_invalid_server_address.toml | 2 +- test/data/config/test_conf_invalid_timeinfo.toml | 2 +- test/data/config/test_conf_invalid_timezone.toml | 2 +- test/data/config/test_conf_out_of_bound_bytesize.toml | 2 +- test/data/config/test_conf_out_of_bound_number.toml | 2 +- test/data/config/test_conf_out_of_bound_timeinfo.toml | 2 +- test/data/config/test_conf_out_of_bound_timezone.toml | 2 +- test/data/config/test_conf_out_of_bound_walflush.toml | 2 +- test/data/config/test_conf_valid_value.toml | 2 +- test/data/config/test_minio_s3_storage.toml | 2 +- test/data/config/test_optimize.toml | 2 +- test/data/config/test_optimize_vfs_off.toml | 2 +- test/data/config/test_tracer.toml | 2 +- test/data/config/test_vfs_off.toml | 2 +- 70 files changed, 82 insertions(+), 80 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73f59f453f..ba1d6b1f47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.28.1) -project(infinity VERSION 0.4.0) +project(infinity VERSION 0.5.0) if(NOT CMAKE_GENERATOR STREQUAL "Ninja") message(FATAL_ERROR "This project requires the Ninja generator. Refers to https://cmake.org/cmake/help/latest/manual/cmake-cxxmodules.7.html#generator-support") @@ -250,7 +250,7 @@ if(DEFINED CPACK_PACKAGE_VERSION) string(REPLACE "-" "." CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}") endif() if(NOT DEFINED CPACK_PACKAGE_VERSION OR CPACK_PACKAGE_VERSION STREQUAL "") - set(CPACK_PACKAGE_VERSION "0.4.0") + set(CPACK_PACKAGE_VERSION "0.5.0") endif() set(CPACK_PACKAGE_RELEASE 1) set(CPACK_PACKAGE_CONTACT "Zhichang Yu ") diff --git a/README.md b/README.md index 959ea20ed2..63028269db 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Supports a wide range of data types including strings, numerics, vectors, and mo Infinity supports two working modes, embedded mode and client-server mode. Infinity's embedded mode enables you to quickly embed Infinity into your Python applications, without the need to connect to a separate backend server. The following shows how to operate in embedded mode: ```bash - pip install infinity-embedded-sdk==0.4.0 + pip install infinity-embedded-sdk==0.5.0.dev1 ``` 1. Use Infinity to conduct a dense vector search: ```python diff --git a/benchmark/remote_infinity/remote_query_benchmark.cpp b/benchmark/remote_infinity/remote_query_benchmark.cpp index e6a97bb47f..bd48476ccd 100644 --- a/benchmark/remote_infinity/remote_query_benchmark.cpp +++ b/benchmark/remote_infinity/remote_query_benchmark.cpp @@ -51,7 +51,7 @@ struct InfinityClient { transport->open(); CommonResponse response; ConnectRequest request; - request.__set_client_version(22); // 0.4.0.dev5 and 0.4.0 + request.__set_client_version(23); // 0.5.0.dev1 client->Connect(response, request); session_id = response.session_id; } diff --git a/client/cpp/infinity_client.cpp b/client/cpp/infinity_client.cpp index d4060c1a2e..eeba02818d 100644 --- a/client/cpp/infinity_client.cpp +++ b/client/cpp/infinity_client.cpp @@ -25,7 +25,7 @@ Client Client::Connect(const std::string &ip_address, uint16_t port) { transport->open(); CommonResponse response; ConnectRequest request; - request.__set_client_version(22); // 0.4.0.dev5 and 0.4.0 + request.__set_client_version(23); // 0.5.0.dev1 client->Connect(response, request); return {socket, transport, protocol, std::move(client), response.session_id}; } diff --git a/conf/follower.toml b/conf/follower.toml index 96fa926e67..b917b235ec 100644 --- a/conf/follower.toml +++ b/conf/follower.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" server_mode = "cluster" diff --git a/conf/infinity_conf.toml b/conf/infinity_conf.toml index 8721488ccb..aeaeec9028 100644 --- a/conf/infinity_conf.toml +++ b/conf/infinity_conf.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/conf/leader.toml b/conf/leader.toml index 5b2b275b77..3791f2fafe 100644 --- a/conf/leader.toml +++ b/conf/leader.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" server_mode = "cluster" diff --git a/conf/learner.toml b/conf/learner.toml index 2facd82e89..12eb09efbd 100644 --- a/conf/learner.toml +++ b/conf/learner.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" server_mode = "cluster" diff --git a/conf/minio_conf.toml b/conf/minio_conf.toml index c3c6e5c906..7729c9ce6f 100644 --- a/conf/minio_conf.toml +++ b/conf/minio_conf.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" server_mode = "standalone" diff --git a/conf/pytest_parallel_continuous_conf.toml b/conf/pytest_parallel_continuous_conf.toml index ef027def98..b1915e08e5 100644 --- a/conf/pytest_parallel_continuous_conf.toml +++ b/conf/pytest_parallel_continuous_conf.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/conf/pytest_parallel_infinity_conf.toml b/conf/pytest_parallel_infinity_conf.toml index eeeb55ee99..de9f728490 100644 --- a/conf/pytest_parallel_infinity_conf.toml +++ b/conf/pytest_parallel_infinity_conf.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/conf/pytest_parallel_infinity_minio.toml b/conf/pytest_parallel_infinity_minio.toml index bfddd2105c..8585fa0763 100644 --- a/conf/pytest_parallel_infinity_minio.toml +++ b/conf/pytest_parallel_infinity_minio.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" server_mode = "standalone" diff --git a/conf/pytest_parallel_infinity_vfs_off.toml b/conf/pytest_parallel_infinity_vfs_off.toml index 2c1dc889af..b0c897a4ac 100644 --- a/conf/pytest_parallel_infinity_vfs_off.toml +++ b/conf/pytest_parallel_infinity_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/docs/getstarted/build_from_source.mdx b/docs/getstarted/build_from_source.mdx index 3144c4aa93..2a90930681 100644 --- a/docs/getstarted/build_from_source.mdx +++ b/docs/getstarted/build_from_source.mdx @@ -260,7 +260,7 @@ cmake --build . -t test_main 2. Install Python sdk of infinity: ```bash - pip install infinity-sdk==0.4.0 + pip install infinity-sdk==0.5.0.dev1 ``` 3. Run the functional tests: @@ -282,7 +282,7 @@ cmake --build . -t test_main 2. Install Python sdk of infinity: ```bash - pip install infinity-sdk==0.4.0 + pip install infinity-sdk==0.5.0.dev1 ``` 3. Run the functional tests: @@ -305,7 +305,7 @@ cmake --build . -t test_main 2. Install Python sdk of infinity: ```bash - pip install infinity-sdk==0.4.0 + pip install infinity-sdk==0.5.0.dev1 ``` 3. Run the functional tests: diff --git a/docs/getstarted/deploy_infinity_server.mdx b/docs/getstarted/deploy_infinity_server.mdx index 321b182eb5..60728ba4cb 100644 --- a/docs/getstarted/deploy_infinity_server.mdx +++ b/docs/getstarted/deploy_infinity_server.mdx @@ -30,7 +30,7 @@ This approach allows you to call Infinity as a Python module. To deploy Infinity ### Install Infinity as a module ``` -pip install infinity-embedded-sdk==0.4.0 +pip install infinity-embedded-sdk==0.5.0.dev1 ``` ### Create an Infinity object @@ -98,7 +98,7 @@ If you are on Windows 10+, you must enable WSL or WSL2 to deploy Infinity using ### Install Infinity client ``` -pip install infinity-sdk==0.4.0 +pip install infinity-sdk==0.5.0.dev1 ``` ### Connect to Infinity Server and run a dense vector search @@ -148,7 +148,7 @@ This section provides instructions on deploying Infinity using binary package on Fedora/RHEL/CentOS/OpenSUSE ```bash -sudo rpm -i infinity-0.4.0-x86_64.rpm +sudo rpm -i infinity-0.5.0.dev1-x86_64.rpm ``` ```bash @@ -159,7 +159,7 @@ sudo systemctl start infinity ```bash -sudo dpkg -i infinity-0.4.0-x86_64.deb +sudo dpkg -i infinity-0.5.0.dev1-x86_64.deb ``` ```bash @@ -172,7 +172,7 @@ sudo systemctl start infinity ### Install Infinity client ``` -pip install infinity-sdk==0.4.0 +pip install infinity-sdk==0.5.0.dev1 ``` ### Connect to Infinity Server and run a dense vector search diff --git a/docs/getstarted/quickstart.md b/docs/getstarted/quickstart.md index 5ecb2dfd8b..6516c3e3c4 100644 --- a/docs/getstarted/quickstart.md +++ b/docs/getstarted/quickstart.md @@ -19,7 +19,7 @@ If you wish to embed Infinity into your Python application without the need for 1. Install the Infinity-embedded SDK: ```bash - pip install infinity-embedded-sdk==0.4.0 + pip install infinity-embedded-sdk==0.5.0.dev1 ``` 2. Use Infinity to conduct a dense vector search: ```python diff --git a/docs/references/configurations.mdx b/docs/references/configurations.mdx index a93ca2e436..5c8c7f8a88 100644 --- a/docs/references/configurations.mdx +++ b/docs/references/configurations.mdx @@ -53,7 +53,7 @@ Infinity embedded does not have an *explicit* configuration file. Its configurat ```toml [general] # Version of the Infinity Server -version = "0.4.0" +version = "0.5.0" # Timezone time_zone = "utc-8" # Number of worker threads. Defaults to the number of the CPU cores diff --git a/docs/references/http_api_reference.mdx b/docs/references/http_api_reference.mdx index abeee0ff29..6878e6c39d 100644 --- a/docs/references/http_api_reference.mdx +++ b/docs/references/http_api_reference.mdx @@ -2342,7 +2342,7 @@ The response includes a JSON object like the following: "server_address":"0.0.0.0", "temp_dir":"/var/infinity/tmp", "time_zone":"UTC+8", - "version":"0.4.0", + "version":"0.5.0", "wal_compact_threshold":"1073741824", "wal_dir":"/var/infinity/wal", "wal_flush":"FlushAtOnce" @@ -2391,7 +2391,7 @@ The response includes a JSON object like the following: ```shell { "error_code": 0, - "version":"0.4.0" + "version":"0.5.0" } ``` @@ -3537,7 +3537,7 @@ The response includes a JSON object like the following: "server_address":"0.0.0.0", "temp_dir":"/var/infinity/leader/tmp", "time_zone":"UTC-8", - "version":"0.4.0", + "version":"0.5.0", "wal_compact_threshold":"1073741824", "wal_dir":"/var/infinity/leader/wal", "wal_flush":"FlushAtOnce" diff --git a/pyproject.toml b/pyproject.toml index 3fa1d784c9..bb1adf962f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ build-backend = "scikit_build_core.build" [project] name = "infinity_embedded_sdk" -version = "0.4.0" +version = "0.5.0.dev1" requires-python = ">=3.10" dependencies = [ "sqlglot~=11.7.0", diff --git a/python/infinity_sdk/infinity/remote_thrift/client.py b/python/infinity_sdk/infinity/remote_thrift/client.py index 92f465eb94..1d48b3d36f 100644 --- a/python/infinity_sdk/infinity/remote_thrift/client.py +++ b/python/infinity_sdk/infinity/remote_thrift/client.py @@ -68,7 +68,8 @@ def reconnect(self): # version: 0.4.0.dev3, client_version: 20 # version: 0.4.0.dev4, client_version: 21 # version: 0.4.0.dev5 and 0.4.0, client_version: 22 - res = self.client.Connect(ConnectRequest(client_version=22)) # 0.4.0.dev5 and 0.4.0 + # version: 0.5.0.dev1, client_version: 23 + res = self.client.Connect(ConnectRequest(client_version=23)) # 0.5.0.dev1 if res.error_code != 0: raise InfinityException(res.error_code, res.error_msg) self.session_id = res.session_id diff --git a/python/infinity_sdk/pyproject.toml b/python/infinity_sdk/pyproject.toml index 1b15261ddf..6e7e7ed2f8 100644 --- a/python/infinity_sdk/pyproject.toml +++ b/python/infinity_sdk/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "infinity-sdk" -version = "0.4.0" +version = "0.5.0.dev1" requires-python = ">=3.10" dependencies = [ "sqlglot~=11.7.0", diff --git a/src/network/infinity_thrift_service.cpp b/src/network/infinity_thrift_service.cpp index 40d4da0cc1..4c65b7963c 100644 --- a/src/network/infinity_thrift_service.cpp +++ b/src/network/infinity_thrift_service.cpp @@ -89,6 +89,7 @@ ClientVersions::ClientVersions() { client_version_map_[20] = String("0.4.0.dev3"); client_version_map_[21] = String("0.4.0.dev4"); client_version_map_[22] = String("0.4.0"); + client_version_map_[23] = String("0.5.0.dev1"); } Pair ClientVersions::GetVersionByIndex(i64 version_index) { diff --git a/src/network/infinity_thrift_service.cppm b/src/network/infinity_thrift_service.cppm index e833c4f4b6..3ef81003b2 100644 --- a/src/network/infinity_thrift_service.cppm +++ b/src/network/infinity_thrift_service.cppm @@ -59,7 +59,7 @@ struct ClientVersions { export class InfinityThriftService final : public infinity_thrift_rpc::InfinityServiceIf { private: static constexpr std::string_view ErrorMsgHeader = "[THRIFT ERROR]"; - static constexpr i64 current_version_index_{22}; // 0.4.0.dev5 and 0.4.0 + static constexpr i64 current_version_index_{23}; // 0.5.0.dev1 static std::mutex infinity_session_map_mutex_; static HashMap> infinity_session_map_; diff --git a/src/unit_test/main/config.cpp b/src/unit_test/main/config.cpp index 5a0c87bd6e..f1c3b0826f 100644 --- a/src/unit_test/main/config.cpp +++ b/src/unit_test/main/config.cpp @@ -39,7 +39,7 @@ TEST_F(ConfigTest, test1) { auto status = config.Init(path, nullptr); ASSERT_TRUE(status.ok()); - EXPECT_EQ(config.Version(), "0.4.0"); + EXPECT_EQ(config.Version(), "0.5.0"); EXPECT_EQ(config.TimeZone(), "UTC"); EXPECT_EQ(config.TimeZoneBias(), 8); EXPECT_EQ(config.CPULimit(), std::thread::hardware_concurrency()); @@ -81,7 +81,7 @@ TEST_F(ConfigTest, test2) { auto status = config.Init(path, nullptr); ASSERT_TRUE(status.ok()); - EXPECT_EQ(config.Version(), "0.4.0"); + EXPECT_EQ(config.Version(), "0.5.0"); EXPECT_EQ(config.TimeZone(), "UTC"); EXPECT_EQ(config.TimeZoneBias(), -8); @@ -197,7 +197,7 @@ TEST_F(ConfigTest, TestValidValues) { auto status = config.Init(path, nullptr); ASSERT_TRUE(status.ok()); - EXPECT_EQ(config.Version(), "0.4.0"); + EXPECT_EQ(config.Version(), "0.5.0"); EXPECT_EQ(config.TimeZone(), "UTC"); EXPECT_EQ(config.TimeZoneBias(), -8); EXPECT_EQ(config.CPULimit(), 2); diff --git a/test/data/config/infinity_conf.toml b/test/data/config/infinity_conf.toml index d25c6b2d36..8fdb5d5829 100644 --- a/test/data/config/infinity_conf.toml +++ b/test/data/config/infinity_conf.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" cpu_limit = 2 diff --git a/test/data/config/restart_test/test_alter/1.toml b/test/data/config/restart_test/test_alter/1.toml index d80908845e..7bd82ede59 100644 --- a/test/data/config/restart_test/test_alter/1.toml +++ b/test/data/config/restart_test/test_alter/1.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_alter/2.toml b/test/data/config/restart_test/test_alter/2.toml index 0a5d439ba9..a0a758c2a4 100644 --- a/test/data/config/restart_test/test_alter/2.toml +++ b/test/data/config/restart_test/test_alter/2.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_alter/3.toml b/test/data/config/restart_test/test_alter/3.toml index 27a08fe9cc..201c20211a 100644 --- a/test/data/config/restart_test/test_alter/3.toml +++ b/test/data/config/restart_test/test_alter/3.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_cleanup/1.toml b/test/data/config/restart_test/test_cleanup/1.toml index cc8380daf1..53e601d6f2 100644 --- a/test/data/config/restart_test/test_cleanup/1.toml +++ b/test/data/config/restart_test/test_cleanup/1.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_drop/1.toml b/test/data/config/restart_test/test_drop/1.toml index 644f2e3fd3..733b25f96f 100644 --- a/test/data/config/restart_test/test_drop/1.toml +++ b/test/data/config/restart_test/test_drop/1.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_fulltext/1.toml b/test/data/config/restart_test/test_fulltext/1.toml index 36fc3d48d9..1466a13141 100644 --- a/test/data/config/restart_test/test_fulltext/1.toml +++ b/test/data/config/restart_test/test_fulltext/1.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_fulltext/2.toml b/test/data/config/restart_test/test_fulltext/2.toml index 8d8311af99..32d82228a0 100644 --- a/test/data/config/restart_test/test_fulltext/2.toml +++ b/test/data/config/restart_test/test_fulltext/2.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_fulltext/3.toml b/test/data/config/restart_test/test_fulltext/3.toml index ae7c08e20d..e9a65d18bd 100644 --- a/test/data/config/restart_test/test_fulltext/3.toml +++ b/test/data/config/restart_test/test_fulltext/3.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_insert/1.toml b/test/data/config/restart_test/test_insert/1.toml index 138dffc183..0a51489636 100644 --- a/test/data/config/restart_test/test_insert/1.toml +++ b/test/data/config/restart_test/test_insert/1.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_insert/2.toml b/test/data/config/restart_test/test_insert/2.toml index 5d17101b54..f175df3c06 100644 --- a/test/data/config/restart_test/test_insert/2.toml +++ b/test/data/config/restart_test/test_insert/2.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_insert/3.toml b/test/data/config/restart_test/test_insert/3.toml index c03e57d86d..0bd07f81b4 100644 --- a/test/data/config/restart_test/test_insert/3.toml +++ b/test/data/config/restart_test/test_insert/3.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_insert/4.toml b/test/data/config/restart_test/test_insert/4.toml index 70c14376b6..0439dd9693 100644 --- a/test/data/config/restart_test/test_insert/4.toml +++ b/test/data/config/restart_test/test_insert/4.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_insert/5.toml b/test/data/config/restart_test/test_insert/5.toml index 416264fae8..0a81bd1ce8 100644 --- a/test/data/config/restart_test/test_insert/5.toml +++ b/test/data/config/restart_test/test_insert/5.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_memidx/1.toml b/test/data/config/restart_test/test_memidx/1.toml index a9b967006d..babdfbb483 100644 --- a/test/data/config/restart_test/test_memidx/1.toml +++ b/test/data/config/restart_test/test_memidx/1.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_memidx/2.toml b/test/data/config/restart_test/test_memidx/2.toml index c2d4a5f280..ae425854ec 100644 --- a/test/data/config/restart_test/test_memidx/2.toml +++ b/test/data/config/restart_test/test_memidx/2.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_memidx/3.toml b/test/data/config/restart_test/test_memidx/3.toml index c24c261425..f87aa4c1ca 100644 --- a/test/data/config/restart_test/test_memidx/3.toml +++ b/test/data/config/restart_test/test_memidx/3.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/restart_test/test_memidx/4.toml b/test/data/config/restart_test/test_memidx/4.toml index a0b13f311b..49cad82d5e 100644 --- a/test/data/config/restart_test/test_memidx/4.toml +++ b/test/data/config/restart_test/test_memidx/4.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test.toml b/test/data/config/test.toml index 8004633c18..1394a0a2e6 100644 --- a/test/data/config/test.toml +++ b/test/data/config/test.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_buffer_obj.toml b/test/data/config/test_buffer_obj.toml index 5302c53e40..bc0b997152 100644 --- a/test/data/config/test_buffer_obj.toml +++ b/test/data/config/test_buffer_obj.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_buffer_obj_2.toml b/test/data/config/test_buffer_obj_2.toml index a81361e825..9cf2a3993e 100644 --- a/test/data/config/test_buffer_obj_2.toml +++ b/test/data/config/test_buffer_obj_2.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_catalog_delta.toml b/test/data/config/test_catalog_delta.toml index bd2fb180f6..1027364723 100644 --- a/test/data/config/test_catalog_delta.toml +++ b/test/data/config/test_catalog_delta.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_cleanup_task_silent_vfs_off.toml b/test/data/config/test_cleanup_task_silent_vfs_off.toml index 6e40c38517..81588cbc11 100644 --- a/test/data/config/test_cleanup_task_silent_vfs_off.toml +++ b/test/data/config/test_cleanup_task_silent_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_close_bgtask.toml b/test/data/config/test_close_bgtask.toml index 525232412e..0d2764ff32 100644 --- a/test/data/config/test_close_bgtask.toml +++ b/test/data/config/test_close_bgtask.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_close_bgtask_silent.toml b/test/data/config/test_close_bgtask_silent.toml index 4f74f7a799..7372a96c33 100644 --- a/test/data/config/test_close_bgtask_silent.toml +++ b/test/data/config/test_close_bgtask_silent.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_close_bgtask_silent_vfs_off.toml b/test/data/config/test_close_bgtask_silent_vfs_off.toml index 0bb99cc1a0..47ed5c859c 100644 --- a/test/data/config/test_close_bgtask_silent_vfs_off.toml +++ b/test/data/config/test_close_bgtask_silent_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_close_bgtask_vfs_off.toml b/test/data/config/test_close_bgtask_vfs_off.toml index da6ccc3d80..ca9bb05726 100644 --- a/test/data/config/test_close_bgtask_vfs_off.toml +++ b/test/data/config/test_close_bgtask_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_close_ckp.toml b/test/data/config/test_close_ckp.toml index 3318b1278b..e84c8dab7b 100644 --- a/test/data/config/test_close_ckp.toml +++ b/test/data/config/test_close_ckp.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_close_ckp_vfs_off.toml b/test/data/config/test_close_ckp_vfs_off.toml index 87f78cf60d..90d62b56f1 100644 --- a/test/data/config/test_close_ckp_vfs_off.toml +++ b/test/data/config/test_close_ckp_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_invalid_bytesize.toml b/test/data/config/test_conf_invalid_bytesize.toml index 6086be8457..529239348d 100644 --- a/test/data/config/test_conf_invalid_bytesize.toml +++ b/test/data/config/test_conf_invalid_bytesize.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_invalid_log_level.toml b/test/data/config/test_conf_invalid_log_level.toml index 59b8b7d0cc..baac0123e8 100644 --- a/test/data/config/test_conf_invalid_log_level.toml +++ b/test/data/config/test_conf_invalid_log_level.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_invalid_param.toml b/test/data/config/test_conf_invalid_param.toml index 71054fe6f6..dfc872620b 100644 --- a/test/data/config/test_conf_invalid_param.toml +++ b/test/data/config/test_conf_invalid_param.toml @@ -1,7 +1,7 @@ # testing invalid items in config # result should be same as default [ygenera1] -versi0n = "0.4.0" +versi0n = "0.5.0" time_z0ne = "utc-123" cpu_1imit = 123 diff --git a/test/data/config/test_conf_invalid_server_address.toml b/test/data/config/test_conf_invalid_server_address.toml index 12f6904fea..c66dca2cb9 100644 --- a/test/data/config/test_conf_invalid_server_address.toml +++ b/test/data/config/test_conf_invalid_server_address.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_invalid_timeinfo.toml b/test/data/config/test_conf_invalid_timeinfo.toml index fccfcc5a98..7b946dd0a8 100644 --- a/test/data/config/test_conf_invalid_timeinfo.toml +++ b/test/data/config/test_conf_invalid_timeinfo.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_invalid_timezone.toml b/test/data/config/test_conf_invalid_timezone.toml index f83bc50dbd..66f33a9d47 100644 --- a/test/data/config/test_conf_invalid_timezone.toml +++ b/test/data/config/test_conf_invalid_timezone.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "invalid_timezone" # Changed to an unparseable string [network] diff --git a/test/data/config/test_conf_out_of_bound_bytesize.toml b/test/data/config/test_conf_out_of_bound_bytesize.toml index 1649b640b1..723f636b07 100644 --- a/test/data/config/test_conf_out_of_bound_bytesize.toml +++ b/test/data/config/test_conf_out_of_bound_bytesize.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_out_of_bound_number.toml b/test/data/config/test_conf_out_of_bound_number.toml index 36ec9c6fb0..8e3c9d032e 100644 --- a/test/data/config/test_conf_out_of_bound_number.toml +++ b/test/data/config/test_conf_out_of_bound_number.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_out_of_bound_timeinfo.toml b/test/data/config/test_conf_out_of_bound_timeinfo.toml index f495587c8a..400853a363 100644 --- a/test/data/config/test_conf_out_of_bound_timeinfo.toml +++ b/test/data/config/test_conf_out_of_bound_timeinfo.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_out_of_bound_timezone.toml b/test/data/config/test_conf_out_of_bound_timezone.toml index 21c9594df1..dc7c708798 100644 --- a/test/data/config/test_conf_out_of_bound_timezone.toml +++ b/test/data/config/test_conf_out_of_bound_timezone.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-23" # Changed to "utc-23" [network] diff --git a/test/data/config/test_conf_out_of_bound_walflush.toml b/test/data/config/test_conf_out_of_bound_walflush.toml index aec8342c04..0308f5cb76 100644 --- a/test/data/config/test_conf_out_of_bound_walflush.toml +++ b/test/data/config/test_conf_out_of_bound_walflush.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_conf_valid_value.toml b/test/data/config/test_conf_valid_value.toml index fe983ed584..e66275bc23 100644 --- a/test/data/config/test_conf_valid_value.toml +++ b/test/data/config/test_conf_valid_value.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" cpu_limit = 2 diff --git a/test/data/config/test_minio_s3_storage.toml b/test/data/config/test_minio_s3_storage.toml index e878f2d092..95f4ed5bc3 100644 --- a/test/data/config/test_minio_s3_storage.toml +++ b/test/data/config/test_minio_s3_storage.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_optimize.toml b/test/data/config/test_optimize.toml index 0b13afc9df..51b68219e7 100644 --- a/test/data/config/test_optimize.toml +++ b/test/data/config/test_optimize.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_optimize_vfs_off.toml b/test/data/config/test_optimize_vfs_off.toml index 5fbf9836a8..7483debbce 100644 --- a/test/data/config/test_optimize_vfs_off.toml +++ b/test/data/config/test_optimize_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_tracer.toml b/test/data/config/test_tracer.toml index 477dd3c240..2e9ff371b6 100644 --- a/test/data/config/test_tracer.toml +++ b/test/data/config/test_tracer.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network] diff --git a/test/data/config/test_vfs_off.toml b/test/data/config/test_vfs_off.toml index 47a3f57a9c..f19f719c85 100644 --- a/test/data/config/test_vfs_off.toml +++ b/test/data/config/test_vfs_off.toml @@ -1,5 +1,5 @@ [general] -version = "0.4.0" +version = "0.5.0" time_zone = "utc-8" [network]