jsonapi_actions 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +93 -86
- data/jsonapi_actions.gemspec +1 -1
- data/lib/jsonapi_actions/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 259d8a7b0dc04dfb629a5c1e6550b484d3dc7f9916d8a94985ac43dd37657679
|
4
|
+
data.tar.gz: 9d7980ce5591258177ba6620a4eb08d33e328fc1e37a21566ffd1da9432b6853
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd8d8748211de18aba2fbc32d981f43b6bcb96d904305a8007ae3da0f79898657c779eeef11f15fdb584ccee1515cc30b5255d7789e6e27d1b645deb0cf67773
|
7
|
+
data.tar.gz: 3765386a373ed5aeca738ccb9ddb68b3dc4d8e018fbffbc67b9155597728478100f0ef15358f35c4ba457760aaabead40af6c0c175ff415f60566ee207db3028
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.7.0] - 2024-01-06
|
8
|
+
### Added
|
9
|
+
- Added support for Rails 8
|
10
|
+
|
7
11
|
## [0.5.0] - 2023-02-22
|
8
12
|
### Added
|
9
13
|
- Added `serializer_params` method to more easily allow for custom serializer params.
|
data/Gemfile.lock
CHANGED
@@ -1,42 +1,42 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jsonapi_actions (0.
|
4
|
+
jsonapi_actions (0.7.0)
|
5
5
|
kaminari (>= 1.0, < 2.0)
|
6
|
-
rails (>= 4.0, <
|
6
|
+
rails (>= 4.0, < 9)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (7.1.
|
12
|
-
actionpack (= 7.1.
|
13
|
-
activesupport (= 7.1.
|
11
|
+
actioncable (7.1.5.1)
|
12
|
+
actionpack (= 7.1.5.1)
|
13
|
+
activesupport (= 7.1.5.1)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
16
|
zeitwerk (~> 2.6)
|
17
|
-
actionmailbox (7.1.
|
18
|
-
actionpack (= 7.1.
|
19
|
-
activejob (= 7.1.
|
20
|
-
activerecord (= 7.1.
|
21
|
-
activestorage (= 7.1.
|
22
|
-
activesupport (= 7.1.
|
17
|
+
actionmailbox (7.1.5.1)
|
18
|
+
actionpack (= 7.1.5.1)
|
19
|
+
activejob (= 7.1.5.1)
|
20
|
+
activerecord (= 7.1.5.1)
|
21
|
+
activestorage (= 7.1.5.1)
|
22
|
+
activesupport (= 7.1.5.1)
|
23
23
|
mail (>= 2.7.1)
|
24
24
|
net-imap
|
25
25
|
net-pop
|
26
26
|
net-smtp
|
27
|
-
actionmailer (7.1.
|
28
|
-
actionpack (= 7.1.
|
29
|
-
actionview (= 7.1.
|
30
|
-
activejob (= 7.1.
|
31
|
-
activesupport (= 7.1.
|
27
|
+
actionmailer (7.1.5.1)
|
28
|
+
actionpack (= 7.1.5.1)
|
29
|
+
actionview (= 7.1.5.1)
|
30
|
+
activejob (= 7.1.5.1)
|
31
|
+
activesupport (= 7.1.5.1)
|
32
32
|
mail (~> 2.5, >= 2.5.4)
|
33
33
|
net-imap
|
34
34
|
net-pop
|
35
35
|
net-smtp
|
36
36
|
rails-dom-testing (~> 2.2)
|
37
|
-
actionpack (7.1.
|
38
|
-
actionview (= 7.1.
|
39
|
-
activesupport (= 7.1.
|
37
|
+
actionpack (7.1.5.1)
|
38
|
+
actionview (= 7.1.5.1)
|
39
|
+
activesupport (= 7.1.5.1)
|
40
40
|
nokogiri (>= 1.8.5)
|
41
41
|
racc
|
42
42
|
rack (>= 2.2.4)
|
@@ -44,60 +44,64 @@ GEM
|
|
44
44
|
rack-test (>= 0.6.3)
|
45
45
|
rails-dom-testing (~> 2.2)
|
46
46
|
rails-html-sanitizer (~> 1.6)
|
47
|
-
actiontext (7.1.
|
48
|
-
actionpack (= 7.1.
|
49
|
-
activerecord (= 7.1.
|
50
|
-
activestorage (= 7.1.
|
51
|
-
activesupport (= 7.1.
|
47
|
+
actiontext (7.1.5.1)
|
48
|
+
actionpack (= 7.1.5.1)
|
49
|
+
activerecord (= 7.1.5.1)
|
50
|
+
activestorage (= 7.1.5.1)
|
51
|
+
activesupport (= 7.1.5.1)
|
52
52
|
globalid (>= 0.6.0)
|
53
53
|
nokogiri (>= 1.8.5)
|
54
|
-
actionview (7.1.
|
55
|
-
activesupport (= 7.1.
|
54
|
+
actionview (7.1.5.1)
|
55
|
+
activesupport (= 7.1.5.1)
|
56
56
|
builder (~> 3.1)
|
57
57
|
erubi (~> 1.11)
|
58
58
|
rails-dom-testing (~> 2.2)
|
59
59
|
rails-html-sanitizer (~> 1.6)
|
60
|
-
activejob (7.1.
|
61
|
-
activesupport (= 7.1.
|
60
|
+
activejob (7.1.5.1)
|
61
|
+
activesupport (= 7.1.5.1)
|
62
62
|
globalid (>= 0.3.6)
|
63
|
-
activemodel (7.1.
|
64
|
-
activesupport (= 7.1.
|
65
|
-
activerecord (7.1.
|
66
|
-
activemodel (= 7.1.
|
67
|
-
activesupport (= 7.1.
|
63
|
+
activemodel (7.1.5.1)
|
64
|
+
activesupport (= 7.1.5.1)
|
65
|
+
activerecord (7.1.5.1)
|
66
|
+
activemodel (= 7.1.5.1)
|
67
|
+
activesupport (= 7.1.5.1)
|
68
68
|
timeout (>= 0.4.0)
|
69
|
-
activestorage (7.1.
|
70
|
-
actionpack (= 7.1.
|
71
|
-
activejob (= 7.1.
|
72
|
-
activerecord (= 7.1.
|
73
|
-
activesupport (= 7.1.
|
69
|
+
activestorage (7.1.5.1)
|
70
|
+
actionpack (= 7.1.5.1)
|
71
|
+
activejob (= 7.1.5.1)
|
72
|
+
activerecord (= 7.1.5.1)
|
73
|
+
activesupport (= 7.1.5.1)
|
74
74
|
marcel (~> 1.0)
|
75
|
-
activesupport (7.1.
|
75
|
+
activesupport (7.1.5.1)
|
76
76
|
base64
|
77
|
+
benchmark (>= 0.3)
|
77
78
|
bigdecimal
|
78
79
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
79
80
|
connection_pool (>= 2.2.5)
|
80
81
|
drb
|
81
82
|
i18n (>= 1.6, < 2)
|
83
|
+
logger (>= 1.4.2)
|
82
84
|
minitest (>= 5.1)
|
83
85
|
mutex_m
|
86
|
+
securerandom (>= 0.3)
|
84
87
|
tzinfo (~> 2.0)
|
85
88
|
base64 (0.2.0)
|
86
|
-
|
89
|
+
benchmark (0.4.0)
|
90
|
+
bigdecimal (3.1.9)
|
87
91
|
builder (3.3.0)
|
88
|
-
concurrent-ruby (1.3.
|
92
|
+
concurrent-ruby (1.3.4)
|
89
93
|
connection_pool (2.4.1)
|
90
94
|
crass (1.0.6)
|
91
|
-
date (3.
|
95
|
+
date (3.4.1)
|
92
96
|
diff-lcs (1.3)
|
93
97
|
drb (2.2.1)
|
94
|
-
erubi (1.
|
98
|
+
erubi (1.13.1)
|
95
99
|
globalid (1.2.1)
|
96
100
|
activesupport (>= 6.1)
|
97
|
-
i18n (1.14.
|
101
|
+
i18n (1.14.6)
|
98
102
|
concurrent-ruby (~> 1.0)
|
99
|
-
io-console (0.
|
100
|
-
irb (1.
|
103
|
+
io-console (0.8.0)
|
104
|
+
irb (1.14.3)
|
101
105
|
rdoc (>= 4.0.0)
|
102
106
|
reline (>= 0.4.2)
|
103
107
|
kaminari (1.2.2)
|
@@ -112,7 +116,8 @@ GEM
|
|
112
116
|
activerecord
|
113
117
|
kaminari-core (= 1.2.2)
|
114
118
|
kaminari-core (1.2.2)
|
115
|
-
|
119
|
+
logger (1.6.4)
|
120
|
+
loofah (2.24.0)
|
116
121
|
crass (~> 1.0.2)
|
117
122
|
nokogiri (>= 1.12.0)
|
118
123
|
mail (2.8.1)
|
@@ -122,10 +127,10 @@ GEM
|
|
122
127
|
net-smtp
|
123
128
|
marcel (1.0.4)
|
124
129
|
mini_mime (1.1.5)
|
125
|
-
mini_portile2 (2.8.
|
126
|
-
minitest (5.
|
127
|
-
mutex_m (0.
|
128
|
-
net-imap (0.4.
|
130
|
+
mini_portile2 (2.8.8)
|
131
|
+
minitest (5.25.4)
|
132
|
+
mutex_m (0.3.0)
|
133
|
+
net-imap (0.4.18)
|
129
134
|
date
|
130
135
|
net-protocol
|
131
136
|
net-pop (0.1.2)
|
@@ -134,54 +139,55 @@ GEM
|
|
134
139
|
timeout
|
135
140
|
net-smtp (0.5.0)
|
136
141
|
net-protocol
|
137
|
-
nio4r (2.7.
|
138
|
-
nokogiri (1.15.
|
142
|
+
nio4r (2.7.4)
|
143
|
+
nokogiri (1.15.7)
|
139
144
|
mini_portile2 (~> 2.8.2)
|
140
145
|
racc (~> 1.4)
|
141
|
-
psych (5.
|
146
|
+
psych (5.2.2)
|
147
|
+
date
|
142
148
|
stringio
|
143
|
-
racc (1.8.
|
144
|
-
rack (3.1.
|
145
|
-
rack-session (2.
|
149
|
+
racc (1.8.1)
|
150
|
+
rack (3.1.8)
|
151
|
+
rack-session (2.1.0)
|
152
|
+
base64 (>= 0.1.0)
|
146
153
|
rack (>= 3.0.0)
|
147
|
-
rack-test (2.
|
154
|
+
rack-test (2.2.0)
|
148
155
|
rack (>= 1.3)
|
149
|
-
rackup (2.1
|
156
|
+
rackup (2.2.1)
|
150
157
|
rack (>= 3)
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
activesupport (= 7.1.3.4)
|
158
|
+
rails (7.1.5.1)
|
159
|
+
actioncable (= 7.1.5.1)
|
160
|
+
actionmailbox (= 7.1.5.1)
|
161
|
+
actionmailer (= 7.1.5.1)
|
162
|
+
actionpack (= 7.1.5.1)
|
163
|
+
actiontext (= 7.1.5.1)
|
164
|
+
actionview (= 7.1.5.1)
|
165
|
+
activejob (= 7.1.5.1)
|
166
|
+
activemodel (= 7.1.5.1)
|
167
|
+
activerecord (= 7.1.5.1)
|
168
|
+
activestorage (= 7.1.5.1)
|
169
|
+
activesupport (= 7.1.5.1)
|
164
170
|
bundler (>= 1.15.0)
|
165
|
-
railties (= 7.1.
|
171
|
+
railties (= 7.1.5.1)
|
166
172
|
rails-dom-testing (2.2.0)
|
167
173
|
activesupport (>= 5.0.0)
|
168
174
|
minitest
|
169
175
|
nokogiri (>= 1.6)
|
170
|
-
rails-html-sanitizer (1.6.
|
176
|
+
rails-html-sanitizer (1.6.2)
|
171
177
|
loofah (~> 2.21)
|
172
|
-
nokogiri (
|
173
|
-
railties (7.1.
|
174
|
-
actionpack (= 7.1.
|
175
|
-
activesupport (= 7.1.
|
178
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
179
|
+
railties (7.1.5.1)
|
180
|
+
actionpack (= 7.1.5.1)
|
181
|
+
activesupport (= 7.1.5.1)
|
176
182
|
irb
|
177
183
|
rackup (>= 1.0.0)
|
178
184
|
rake (>= 12.2)
|
179
185
|
thor (~> 1.0, >= 1.2.2)
|
180
186
|
zeitwerk (~> 2.6)
|
181
187
|
rake (13.0.1)
|
182
|
-
rdoc (6.
|
188
|
+
rdoc (6.10.0)
|
183
189
|
psych (>= 4.0.0)
|
184
|
-
reline (0.
|
190
|
+
reline (0.6.0)
|
185
191
|
io-console (~> 0.5)
|
186
192
|
rspec (3.8.0)
|
187
193
|
rspec-core (~> 3.8.0)
|
@@ -196,16 +202,17 @@ GEM
|
|
196
202
|
diff-lcs (>= 1.2.0, < 2.0)
|
197
203
|
rspec-support (~> 3.8.0)
|
198
204
|
rspec-support (3.8.0)
|
199
|
-
|
200
|
-
|
201
|
-
|
205
|
+
securerandom (0.3.2)
|
206
|
+
stringio (3.1.2)
|
207
|
+
thor (1.3.2)
|
208
|
+
timeout (0.4.3)
|
202
209
|
tzinfo (2.0.6)
|
203
210
|
concurrent-ruby (~> 1.0)
|
204
|
-
|
205
|
-
|
211
|
+
websocket-driver (0.7.7)
|
212
|
+
base64
|
206
213
|
websocket-extensions (>= 0.1.0)
|
207
214
|
websocket-extensions (0.1.5)
|
208
|
-
zeitwerk (2.6.
|
215
|
+
zeitwerk (2.6.18)
|
209
216
|
|
210
217
|
PLATFORMS
|
211
218
|
arm64-darwin-22
|
data/jsonapi_actions.gemspec
CHANGED
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.add_development_dependency "rake", "~> 13.0"
|
28
28
|
spec.add_development_dependency "rspec", "~> 3.0"
|
29
29
|
|
30
|
-
spec.add_dependency 'rails', '>= 4.0', '<
|
30
|
+
spec.add_dependency 'rails', '>= 4.0', '< 9'
|
31
31
|
spec.add_dependency 'kaminari', '>= 1.0', '< 2.0'
|
32
32
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsonapi_actions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Pheasey
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -61,7 +61,7 @@ dependencies:
|
|
61
61
|
version: '4.0'
|
62
62
|
- - "<"
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version: '
|
64
|
+
version: '9'
|
65
65
|
type: :runtime
|
66
66
|
prerelease: false
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -71,7 +71,7 @@ dependencies:
|
|
71
71
|
version: '4.0'
|
72
72
|
- - "<"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '
|
74
|
+
version: '9'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
76
|
name: kaminari
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|