Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Added

- Method truncate() to clean tubes (#78).
- `release_limit` configuration option: a taken task is removed from the queue
if the task has been released (by `release` or `ttr`) `release_limit` times (#8).

- `release_limit_policy` configuration option: control the behavior when a task
reached the `release_limit` (#9).

### Changed

### Fixed

## 1.1.0 - 2026-02-27

The release synchronizes sharded-queue with sharded-queue-ee.

### Added

- Method truncate() to clean tubes.
- `release_limit` configuration option: a taken task is removed from the queue
if the task has been released (by `release` or `ttr`) `release_limit` times.
- `release_limit_policy` configuration option: control the behavior when a task
reached the `release_limit`.

## 1.0.0 - 2024-04-17

The release introduces roles for Tarantool 3 and improves the module metrics.
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
sharded-queue (1.1.0-1) unstable; urgency=medium

The release synchronizes sharded-queue with sharded-queue-ee.
* Method truncate() to clean tubes.
* `release_limit` configuration option: a taken task is removed from the queue
* `release_limit_policy` configuration option: control the behavior when a task

-- Oleg Jukovec <oleg.jukovec@tarantool.org> Fri, 27 Feb 2026 01:06:06 +0300

sharded-queue (1.0.0-1) unstable; urgency=medium

* Initial release
Expand Down
7 changes: 6 additions & 1 deletion rpm/sharded-queue.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: sharded-queue
Version: 1.0.0-1
Version: 1.1.0-1
Release: 1%{?dist}
Summary: Tarantool Sharded Queue Application
Group: Applications/Databases
Expand Down Expand Up @@ -32,5 +32,10 @@ install -m 0644 roles/* %{buildroot}%{_datarootdir}/tarantool/roles/

%changelog

* Fri Feb 27 2026 Oleg Jukovec <oleg.jukovec@tarantool.org> - 1.1.0-1
- Method truncate() to clean tubes.
- `release_limit` configuration option: a taken task is removed from the queue
- `release_limit_policy` configuration option: control the behavior when a task

* Tue Feb 17 2026 Oleg Jukovec <oleg.jukovec@tarantool.org> 1.0.0-1
- Initial version of the RPM spec
2 changes: 1 addition & 1 deletion sharded_queue/version.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Сontains the module version.
-- Requires manual update in case of release commit.

return '1.0.0'
return '1.1.0'
Loading