solid_queue_guard 1.2.2 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +2 -2
- data/README.md +2 -1
- data/lib/solid_queue_guard/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1893e95d5ab5c66e556b93b743f0a981b62509716b11350b546941af696cf282
|
|
4
|
+
data.tar.gz: 44d23bf1b5f8900a50c84446a2abaaba97bba4689979d5f0799d148e7edee06d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a90a43b4541edd2f96ad9795708a016934ac6820998c83c4217be5902c8210fdf8ba0bb07ba021922cc297f58caf23a704640231fc6f65b28842d32e9bb3e79
|
|
7
|
+
data.tar.gz: 50df8d5b56540152da201bf0a71acd9cb9f8d1ae9a11b180d66f5d597e274982c54bb16bec3d82d5cc1997cd12c7fa128db983a1a10e303c4e93cc47e8b9a954
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.2.5] - 2026-07-10
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Sync Appraisal lockfiles with gem version 1.2.5 so CI `bundle install --frozen` succeeds
|
|
13
|
+
|
|
14
|
+
## [1.2.4] - 2026-07-10
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- CI excludes Ruby 3.1 + Rails 8.0 matrix cell — Rails 8 dependency tree (`connection_pool` 3.x) requires Ruby >= 3.2
|
|
19
|
+
|
|
20
|
+
## [1.2.3] - 2026-07-10
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Appraisal lockfiles now pin Bundler 2.6.9 so Ruby 3.1 CI matrix can install dependencies (Bundler 2.7.2 requires Ruby >= 3.2)
|
|
25
|
+
|
|
8
26
|
## [1.2.2] - 2026-07-10
|
|
9
27
|
|
|
10
28
|
### Fixed
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
solid_queue_guard (1.2.
|
|
4
|
+
solid_queue_guard (1.2.5)
|
|
5
5
|
actionpack (>= 7.1, < 9.0)
|
|
6
6
|
activejob (>= 7.1, < 9.0)
|
|
7
7
|
activerecord (>= 7.1, < 9.0)
|
|
@@ -330,4 +330,4 @@ DEPENDENCIES
|
|
|
330
330
|
sqlite3 (~> 2.1)
|
|
331
331
|
|
|
332
332
|
BUNDLED WITH
|
|
333
|
-
2.
|
|
333
|
+
2.6.9
|
data/README.md
CHANGED
|
@@ -157,7 +157,8 @@ Internal check classes and registry are `@api private`.
|
|
|
157
157
|
|
|
158
158
|
| Gem version | Ruby | Rails |
|
|
159
159
|
| ----------- | ---- | ----- |
|
|
160
|
-
| 1.2.x | 3.1+ | 7.1, 7.2
|
|
160
|
+
| 1.2.x | 3.1+ | 7.1, 7.2 |
|
|
161
|
+
| 1.2.x | 3.2+ | 8.0 |
|
|
161
162
|
| 1.1.x | 3.1+ | 7.1, 7.2, 8.0 |
|
|
162
163
|
| 1.0.x | 3.1+ | 7.1, 7.2, 8.0 |
|
|
163
164
|
|