From 39a260fd075cac8f3c5173b5b33336bc5fe114d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 21:49:23 +0000 Subject: [PATCH] chore(master): release with_advisory_lock 0.7.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ lib/with_advisory_lock/version.rb | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 47c26aa..e793a59 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"7.0.2"} +{".":"0.7.5"} diff --git a/CHANGELOG.md b/CHANGELOG.md index ac840ca..b227588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ ## Changelog +## [0.7.5](https://github.com/ClosureTree/with_advisory_lock/compare/with_advisory_lock/v7.0.2...with_advisory_lock/v0.7.5) (2026-01-20) + + +### Features + +* add blocking advisory locks with deadlock detection for PostgreSQL ([#140](https://github.com/ClosureTree/with_advisory_lock/issues/140)) ([f7f9aff](https://github.com/ClosureTree/with_advisory_lock/commit/f7f9aff545381107a632a25511e8fc08654a28b6)) +* Add Trilogy adapter support with MariaDB 12.0+ ([#134](https://github.com/ClosureTree/with_advisory_lock/issues/134)) ([b7764cd](https://github.com/ClosureTree/with_advisory_lock/commit/b7764cd9432b25b37c6da9160f980da29a5cdaa6)) + + +### Bug Fixes + +* Use monotonic clock so postgres timeouts are unaffected by system clock changes ([#141](https://github.com/ClosureTree/with_advisory_lock/issues/141)) ([929e010](https://github.com/ClosureTree/with_advisory_lock/commit/929e0103e5ffc4c66f9088942441f764de1bc650)) + ## [7.0.2](https://github.com/ClosureTree/with_advisory_lock/compare/with_advisory_lock/v7.0.1...with_advisory_lock/v7.0.2) (2025-09-20) diff --git a/lib/with_advisory_lock/version.rb b/lib/with_advisory_lock/version.rb index 4454271..4b9602d 100644 --- a/lib/with_advisory_lock/version.rb +++ b/lib/with_advisory_lock/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module WithAdvisoryLock - VERSION = Gem::Version.new('7.0.2') + VERSION = Gem::Version.new('0.7.5') end