From 8f83c3266fc6f3ec67eef73cb5f0a51d8ce82fdd Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Mon, 20 May 2024 10:21:20 +0300 Subject: [PATCH] module: release 1.5.2 Overview This release fixes the bug that was discovered while working with `tt crud export` and `tt crud import` tools. Fixed * `insert_many`, `insert_object_many`, `replace_many`, `replace_object_many`, `upsert_many`, `upsert_object_many` operations no longer fail with `ShardingHashMismatchError` if a space has custom sharding info and every tuple/object in the request has `bucket_id` set (#437). --- CHANGELOG.md | 2 +- crud/version.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47cb998b..89f69bd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## Unreleased +## [1.5.2] - 20-05-24 ### Fixed * `insert_many`, `insert_object_many`, `replace_many`, `replace_object_many`, diff --git a/crud/version.lua b/crud/version.lua index 862caa6c..eeb6c5ca 100644 --- a/crud/version.lua +++ b/crud/version.lua @@ -1,4 +1,4 @@ -- Сontains the module version. -- Requires manual update in case of release commit. -return '1.5.1' +return '1.5.2'