acts_as_paranoid 0.10.2 → 0.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -5
- data/README.md +2 -2
- data/lib/acts_as_paranoid/version.rb +1 -1
- metadata +9 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c63f41e55a1e68fd2cc5c1353501bb390d5a1bd99cb11da1be628f63c8149134
|
4
|
+
data.tar.gz: cd25ddabafff9d4897867af108ae741edee9d1dabf8ef363843c8d3bc7ec2e39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad61b7c2cd715b521dbd042d0fcb0ff331ddf635fa100166028092a05c2ff40cfd4633a60076723ba55bf5bb5d2b23f905ebb56597586445831054f1cb389b61
|
7
|
+
data.tar.gz: d272b64f33ccc60ac3ecba65bac5c12174c0446ef0dcfffd43e24e63e67b9796b3b6dde3dd756f9d204a09a260aa491422370674c695f5cb2ab7c8774b0e0175
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
Notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## 0.10.3
|
6
|
+
|
7
|
+
* Fix CI Badge ([#350] by [tagliala])
|
8
|
+
* Support Rails 8.0 ([#354] by [mvz])
|
9
|
+
|
10
|
+
[tagliala]: https://github.com/tagliala
|
11
|
+
[#350]: https://github.com/ActsAsParanoid/acts_as_paranoid/pull/350
|
12
|
+
[#354]: https://github.com/ActsAsParanoid/acts_as_paranoid/pull/354
|
13
|
+
|
5
14
|
## 0.10.2
|
6
15
|
|
7
16
|
* Support Rails 7.2 ([#341] by [kalashnikovisme])
|
@@ -52,13 +61,16 @@ Notable changes to this project will be documented in this file.
|
|
52
61
|
## 0.8.1
|
53
62
|
|
54
63
|
* Officially support Ruby 3.1 ([#268], by [Matijs van Zuijlen][mvz])
|
55
|
-
* Fix association building for `belongs_to` with `:with_deleted` option
|
64
|
+
* Fix association building for `belongs_to` with `:with_deleted` option
|
65
|
+
([#277], by [Matijs van Zuijlen][mvz])
|
56
66
|
|
57
67
|
## 0.8.0
|
58
68
|
|
59
69
|
* Do not set `paranoid_value` when destroying fully ([#238], by [Aymeric Le Dorze][aymeric-ledorze])
|
60
|
-
* Make helper methods for dependent associations private
|
61
|
-
|
70
|
+
* Make helper methods for dependent associations private
|
71
|
+
([#239], by [Matijs van Zuijlen][mvz])
|
72
|
+
* Raise ActiveRecord::RecordNotDestroyed if destroy returns false
|
73
|
+
([#240], by [Hao Liu][leomayleomay])
|
62
74
|
* Make unscoping by `with_deleted` less blunt ([#241], by [Matijs van Zuijlen][mvz])
|
63
75
|
* Drop support for Ruby 2.4 and 2.5 ([#243] and [#245] by [Matijs van Zuijlen][mvz])
|
64
76
|
* Remove deprecated methods ([#244] by [Matijs van Zuijlen][mvz])
|
@@ -67,7 +79,7 @@ Notable changes to this project will be documented in this file.
|
|
67
79
|
|
68
80
|
## 0.7.3
|
69
81
|
|
70
|
-
|
82
|
+
### Improvements
|
71
83
|
|
72
84
|
* Fix deletion time scopes ([#212] by [Matijs van Zuijlen][mvz])
|
73
85
|
* Reload `has_one` associations after dependent recovery ([#214],
|
@@ -81,7 +93,7 @@ Notable changes to this project will be documented in this file.
|
|
81
93
|
* Deprecate the undocumented `:recovery_value` setting. Calculate the correct
|
82
94
|
value instead. ([#220], by [Matijs van Zuijlen][mvz])
|
83
95
|
|
84
|
-
|
96
|
+
### Developer experience
|
85
97
|
|
86
98
|
* Log ActiveRecord activity to a visible log during tests ([#218],
|
87
99
|
by [Matijs van Zuijlen][mvz])
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# ActsAsParanoid
|
2
2
|
|
3
|
-
[![
|
3
|
+
[![CI](https://github.com/ActsAsParanoid/acts_as_paranoid/actions/workflows/ruby.yml/badge.svg)](https://github.com/ActsAsParanoid/acts_as_paranoid/actions/workflows/ruby.yml)
|
4
4
|
|
5
5
|
A Rails plugin to add soft delete.
|
6
6
|
|
@@ -26,7 +26,7 @@ please require an older version of the `acts_as_paranoid` gem.
|
|
26
26
|
#### Install gem
|
27
27
|
|
28
28
|
```ruby
|
29
|
-
gem
|
29
|
+
gem "acts_as_paranoid", "~> 0.10.3"
|
30
30
|
```
|
31
31
|
|
32
32
|
```shell
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts_as_paranoid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zachary Scott
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-11-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activerecord
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '6.1'
|
22
22
|
- - "<"
|
23
23
|
- !ruby/object:Gem::Version
|
24
|
-
version: '8'
|
24
|
+
version: '8.1'
|
25
25
|
type: :runtime
|
26
26
|
prerelease: false
|
27
27
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -31,7 +31,7 @@ dependencies:
|
|
31
31
|
version: '6.1'
|
32
32
|
- - "<"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: '8'
|
34
|
+
version: '8.1'
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: activesupport
|
37
37
|
requirement: !ruby/object:Gem::Requirement
|
@@ -41,7 +41,7 @@ dependencies:
|
|
41
41
|
version: '6.1'
|
42
42
|
- - "<"
|
43
43
|
- !ruby/object:Gem::Version
|
44
|
-
version: '8'
|
44
|
+
version: '8.1'
|
45
45
|
type: :runtime
|
46
46
|
prerelease: false
|
47
47
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
version: '6.1'
|
52
52
|
- - "<"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '8'
|
54
|
+
version: '8.1'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: appraisal
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,20 +122,6 @@ dependencies:
|
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0.6'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: pry
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - "~>"
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: 0.14.1
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - "~>"
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: 0.14.1
|
139
125
|
- !ruby/object:Gem::Dependency
|
140
126
|
name: rake
|
141
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -198,14 +184,14 @@ dependencies:
|
|
198
184
|
requirements:
|
199
185
|
- - "~>"
|
200
186
|
- !ruby/object:Gem::Version
|
201
|
-
version: 0.
|
187
|
+
version: 0.36.0
|
202
188
|
type: :development
|
203
189
|
prerelease: false
|
204
190
|
version_requirements: !ruby/object:Gem::Requirement
|
205
191
|
requirements:
|
206
192
|
- - "~>"
|
207
193
|
- !ruby/object:Gem::Version
|
208
|
-
version: 0.
|
194
|
+
version: 0.36.0
|
209
195
|
- !ruby/object:Gem::Dependency
|
210
196
|
name: rubocop-packaging
|
211
197
|
requirement: !ruby/object:Gem::Requirement
|
@@ -301,7 +287,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
287
|
- !ruby/object:Gem::Version
|
302
288
|
version: '0'
|
303
289
|
requirements: []
|
304
|
-
rubygems_version: 3.5.
|
290
|
+
rubygems_version: 3.5.23
|
305
291
|
signing_key:
|
306
292
|
specification_version: 4
|
307
293
|
summary: Active Record plugin which allows you to hide and restore records without
|