paranoia 2.4.3 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0174a966648c3afbf8ce8d09ef65361c48540838e705bb3327477f36ee27eff
4
- data.tar.gz: 70a9eb72fa2cfda78c4adf5aa9918404ad5860d725ac657959f0b105fd300276
3
+ metadata.gz: 722efe26008fec67396f31b78997d981323a85ded9232369e36b06f9c6a2c254
4
+ data.tar.gz: 4262aeee60d6beb99958ffe43032f47cab4b9ce556663daf7c6d9b34c9a17d7e
5
5
  SHA512:
6
- metadata.gz: 2a960433d0574c324778ae6774cc90501ee3a108c91e8aca45f91eeb59b1a80406b861b94e68b7fe391dc50c32fb7ebc034aa43296ec6ffd3bb78e863051a067
7
- data.tar.gz: 765b1c436d256277a0ac54947584b90c69ffec5bad08011696e4a62267d1bf1e3b782957d904425933083b12e1fa3ce2668872acc83e04877304243ea96f9a61
6
+ metadata.gz: 1e39832dc8d08052777e4c750a6481d4eb2280823561d2adfc6844426b7a23caf79eeb97fc9d98931da5f30142af0b241f6e3cc920ff82362bd5a605abc1b1f3
7
+ data.tar.gz: 684e92dc3ff1a24cd965ae4d03ef43b22e6ccc3c6a8cf73b41062d50d98568b1393ddfcc54a3f9e5630f65eba474b87ab202e03c9ca3613f82b470e434c5d12c
@@ -0,0 +1,56 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: build
9
+
10
+ on: [push, pull_request]
11
+
12
+ jobs:
13
+ test:
14
+ runs-on: ubuntu-20.04
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ ruby:
19
+ # - 3.0 # incompatible with rubysl
20
+ - 2.7
21
+ - 2.6
22
+ - 2.5
23
+ # - jruby-9.2.19.0
24
+ # - jruby-9.3.1.0
25
+ rails:
26
+ - '~> 5.1.0'
27
+ - '~> 5.2.0'
28
+ - '~> 6.0.0'
29
+ - '~> 6.1.0'
30
+ - '~> 7.0.0'
31
+ - 'edge'
32
+ exclude:
33
+ # Rails edge is now 7.x and requires ruby 2.7
34
+ - rails: 'edge'
35
+ ruby: 2.6
36
+ - rails: 'edge'
37
+ ruby: 2.5
38
+ - rails: '~> 7.0.0'
39
+ ruby: 2.6
40
+ - rails: '~> 7.0.0'
41
+ ruby: 2.5
42
+ # Legacy Rails with newer rubies
43
+ - rails: '~> 5.1.0'
44
+ ruby: 3.0
45
+ - rails: '~> 5.2.0'
46
+ ruby: 3.0
47
+
48
+ env:
49
+ RAILS: ${{ matrix.rails }}
50
+ steps:
51
+ - uses: actions/checkout@v2
52
+ - uses: ruby/setup-ruby@v1
53
+ with:
54
+ ruby-version: ${{ matrix.ruby }}
55
+ bundler-cache: true
56
+ - run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # paranoia Changelog
2
2
 
3
+ ## 2.4.3
4
+
5
+ * [#503](https://github.com/rubysherpas/paranoia/pull/503) Bump activerecord dependency for Rails 6.1
6
+
7
+ [Jörg Schiller](https://github.com/joergschiller)
8
+
9
+ * [#483](https://github.com/rubysherpas/paranoia/pull/483) Update JRuby version to 9.2.8.0 + remove EOL Ruby 2.2
10
+
11
+ [Uwe Kubosch](https://github.com/donv)
12
+
13
+ * [#482](https://github.com/rubysherpas/paranoia/pull/482) Fix after_commit for Rails 6
14
+
15
+ [Ashwin Hegde](https://github.com/hashwin)
16
+
3
17
  ## 2.4.2
4
18
 
5
19
  * [#470](https://github.com/rubysherpas/paranoia/pull/470) Add support for ActiveRecord 6.0
data/Gemfile CHANGED
@@ -20,7 +20,7 @@ end
20
20
 
21
21
  rails = ENV['RAILS'] || '~> 5.2.0'
22
22
 
23
- if rails == 'master'
23
+ if rails == 'edge'
24
24
  gem 'rails', github: 'rails/rails'
25
25
  else
26
26
  gem 'rails', rails
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/paranoia.svg)](https://badge.fury.io/rb/paranoia)
2
+
1
3
  **Notice:**
2
4
 
3
5
  `paranoia` has some surprising behaviour (like overriding ActiveRecord's `delete` and `destroy`) and is not recommended for new projects. See [`discard`'s README](https://github.com/jhawthorn/discard#why-not-paranoia-or-acts_as_paranoid) for more details.
@@ -1,3 +1,3 @@
1
1
  module Paranoia
2
- VERSION = '2.4.3'.freeze
2
+ VERSION = '2.5.0'.freeze
3
3
  end
data/lib/paranoia.rb CHANGED
@@ -230,7 +230,12 @@ module Paranoia
230
230
  end
231
231
  end
232
232
 
233
- clear_association_cache if destroyed_associations.present?
233
+ if ActiveRecord.version.to_s > '7'
234
+ # Method deleted in https://github.com/rails/rails/commit/dd5886d00a2d5f31ccf504c391aad93deb014eb8
235
+ @association_cache.clear if persisted? && destroyed_associations.present?
236
+ else
237
+ clear_association_cache if destroyed_associations.present?
238
+ end
234
239
  end
235
240
  end
236
241
 
data/paranoia.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.license = 'MIT'
12
12
  s.summary = "Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5, using much, much, much less code."
13
13
  s.description = <<-DSC
14
- Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5,
14
+ Paranoia is a re-implementation of acts_as_paranoid for Rails 4, 5, 6, and 7,
15
15
  using much, much, much less code. You would use either plugin / gem if you
16
16
  wished that when you called destroy on an Active Record object that it
17
17
  didn't actually destroy it, but just "hid" the record. Paranoia does this
@@ -22,9 +22,9 @@ Gem::Specification.new do |s|
22
22
 
23
23
  s.required_rubygems_version = ">= 1.3.6"
24
24
 
25
- s.required_ruby_version = '>= 2.0'
25
+ s.required_ruby_version = '>= 2.5'
26
26
 
27
- s.add_dependency 'activerecord', '>= 4.0', '< 6.2'
27
+ s.add_dependency 'activerecord', '>= 5.1', '< 7.1'
28
28
 
29
29
  s.add_development_dependency "bundler", ">= 1.0.0"
30
30
  s.add_development_dependency "rake"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paranoia
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.3
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - radarlistener@gmail.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-16 00:00:00.000000000 Z
11
+ date: 2021-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '4.0'
19
+ version: '5.1'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.2'
22
+ version: '7.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '4.0'
29
+ version: '5.1'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.2'
32
+ version: '7.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +59,7 @@ dependencies:
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
61
  description: |2
62
- Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5,
62
+ Paranoia is a re-implementation of acts_as_paranoid for Rails 4, 5, 6, and 7,
63
63
  using much, much, much less code. You would use either plugin / gem if you
64
64
  wished that when you called destroy on an Active Record object that it
65
65
  didn't actually destroy it, but just "hid" the record. Paranoia does this
@@ -73,8 +73,8 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - ".github/workflows/build.yml"
76
77
  - ".gitignore"
77
- - ".travis.yml"
78
78
  - CHANGELOG.md
79
79
  - CODE_OF_CONDUCT.md
80
80
  - CONTRIBUTING.md
@@ -100,14 +100,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: '2.0'
103
+ version: '2.5'
104
104
  required_rubygems_version: !ruby/object:Gem::Requirement
105
105
  requirements:
106
106
  - - ">="
107
107
  - !ruby/object:Gem::Version
108
108
  version: 1.3.6
109
109
  requirements: []
110
- rubygems_version: 3.1.2
110
+ rubygems_version: 3.2.11
111
111
  signing_key:
112
112
  specification_version: 4
113
113
  summary: Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5,
data/.travis.yml DELETED
@@ -1,45 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- before_install:
4
- - gem query -I -n "^bundler$" -v ">=2" || gem uninstall -x bundler -v ">=2" || rvm @global do gem uninstall -x bundler -v ">=2"
5
- - gem query -i -n "^bundler$" -v "<2" || gem install bundler -v "<2"
6
- cache: bundler
7
- rvm:
8
- - 2.3.8
9
- - 2.4.5
10
- - 2.5.3
11
- - 2.6.3
12
- - jruby-9.2.8.0
13
-
14
- env:
15
- matrix:
16
- - RAILS='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
17
- - RAILS='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
18
- - RAILS='~> 5.1.0'
19
- - RAILS='~> 5.2.0'
20
- - RAILS='~> 6.1.0'
21
- - RAILS='master'
22
-
23
- matrix:
24
- allow_failures:
25
- - env: RAILS='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
26
- rvm: jruby-9.2.8.0
27
- - env: RAILS='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
28
- rvm: jruby-9.2.8.0
29
- - env: RAILS='~> 5.1.0'
30
- rvm: jruby-9.2.8.0
31
- - env: RAILS='~> 5.2.0'
32
- rvm: jruby-9.2.8.0
33
- - env: RAILS='master'
34
- rvm: jruby-9.2.8.0
35
- - env: RAILS='~> 6.1.0'
36
- rvm: jruby-9.2.8.0
37
- exclude:
38
- - rvm: 2.3.8
39
- env: RAILS='master'
40
- - rvm: 2.4.5
41
- env: RAILS='master'
42
- - rvm: 2.3.8
43
- env: RAILS='~> 6.1.0'
44
- - rvm: 2.4.5
45
- env: RAILS='~> 6.1.0'