organizations 0.4.0 → 0.4.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 +5 -1
- data/lib/organizations/models/organization.rb +0 -1
- data/lib/organizations/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: 5a2f3a64510fcf3f08245894e49fbdd1a2aae8e76b9b9fb17fa2a6baa212c3e9
|
|
4
|
+
data.tar.gz: 593fdc944621beb95f6bb318ade8ae88e4933a81f25bd273253704ab9f491f05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c5327208fd86db81f8255bf95405736abc01e374e72a190041f31eb4ced7cff63bf2cb7b040d3a4dfc32fcdde7d11282ad6949c70a282eaed1454f318dc9908
|
|
7
|
+
data.tar.gz: 7537c69f044a08a8e8422549b4b9272768c412ef3c13a97600808bb8b1a5d1102479c7d9c5c5d61e062ecec84be92132a687405f751033fdfc58f29fc2ca0227
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [0.4.1] - 2026-03-17
|
|
2
|
+
|
|
3
|
+
- Fixed `memberships_count` counter cache writes on `Organizations::Membership.create!`
|
|
4
|
+
- Removed `attr_readonly :memberships_count`, which conflicted with Rails' native `counter_cache`
|
|
5
|
+
|
|
1
6
|
## [0.4.0] - 2026-03-17
|
|
2
7
|
|
|
3
8
|
**Breaking:** `memberships_count` column is now required on the organizations table.
|
|
@@ -5,7 +10,6 @@
|
|
|
5
10
|
- Added `memberships_count` to the install migration template (fresh installs get it automatically)
|
|
6
11
|
- Switched to Rails' native `counter_cache` so in-memory organization instances stay accurate after member changes
|
|
7
12
|
- `member_count` now reads directly from the counter cache (no fallback to COUNT query)
|
|
8
|
-
- Marked `memberships_count` as readonly on organizations
|
|
9
13
|
|
|
10
14
|
## [0.3.1] - 2026-02-28
|
|
11
15
|
|