Skip to content
Open
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
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Added

### Changed

### Fixed

## [1.5.0] - 2026-07-07

This release introduces tube-level grants for roles (supported by all default
tube drivers). It also fixes `ERR_READONLY` errors on the previous leader
when `on_disconnect` triggers run after a leadership change.

### Added

- Ability to grant tubes to roles. All default tube drivers are supported (#249).
Example: `queue.tube.my_tube:grant_role('queue_worker', {call = true})`

### Changed

### Fixed

- `ERR_READONLY` errors on previous leader after leader change in cluster
Expand Down
2 changes: 1 addition & 1 deletion 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.4.4'
return '1.5.0'
Loading