chewy 8.2.0 → 8.2.1
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 +11 -1
- data/lib/chewy/index/adapter/orm.rb +1 -1
- data/lib/chewy/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: ec704929088d1e1f785d46b74dd62197c2a173ff5b405d500ab4068b6025d407
|
|
4
|
+
data.tar.gz: ed17897341f8c43713c41d6e0b22a71afa13899a3c553baf6d034072ad40712a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e957fc1353e97b268ead1e99ac9665eac7bd8d0d4eceaff205c07763c7690f8ea173844aeac1be7a9f1af6138b875f49508ed68a21d92814660916aa057566ad
|
|
7
|
+
data.tar.gz: d3ece465fadfae3486f28303eadd1919e5b760e797e41ab231d797363c9ed5143fa616b270f342172ef63bd128780f21ca54f1675d6507749ae5c7aca1278025
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## master (unreleased
|
|
3
|
+
## master (unreleased
|
|
4
4
|
|
|
5
5
|
### New Features
|
|
6
6
|
|
|
@@ -8,6 +8,16 @@
|
|
|
8
8
|
|
|
9
9
|
### Changes
|
|
10
10
|
|
|
11
|
+
## 8.2.1 (2026-06-01)
|
|
12
|
+
|
|
13
|
+
### New Features
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* Fix `import_count` on relations with multiple `.select(...)` clauses so the bounded progressbar is used instead of silently falling back to the unbounded spinner. Bare `.count` produced `SELECT COUNT(col1, col2, ...)` (invalid SQL); `count(:all)` is used for relations. ([#1026](https://github.com/toptal/chewy/pull/1026))
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
11
21
|
## 8.2.0 (2026-05-29)
|
|
12
22
|
|
|
13
23
|
### New Features
|
data/lib/chewy/version.rb
CHANGED