decidim-reporting_proposals 0.4.2 → 0.5.0

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.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/lint.yml +2 -2
  3. data/.github/workflows/test_integration.yml +2 -2
  4. data/.github/workflows/test_unit.yml +2 -2
  5. data/.rubocop-disabled.yml +11 -0
  6. data/.rubocop.yml +1 -0
  7. data/.rubocop_rails.yml +3 -0
  8. data/.rubocop_ruby.yml +24 -10
  9. data/.ruby-version +1 -1
  10. data/.simplecov +2 -2
  11. data/Gemfile.lock +257 -235
  12. data/README.md +2 -2
  13. data/Rakefile +2 -0
  14. data/app/commands/concerns/decidim/reporting_proposals/gallery_methods_override.rb +18 -0
  15. data/app/commands/decidim/reporting_proposals/admin/update_proposal_note.rb +1 -1
  16. data/app/commands/decidim/reporting_proposals/create_reporting_proposal.rb +2 -0
  17. data/app/commands/decidim/templates/admin/copy_proposal_answer_template.rb +1 -1
  18. data/app/commands/decidim/templates/admin/create_proposal_answer_template.rb +1 -1
  19. data/app/commands/decidim/templates/admin/update_proposal_answer_template.rb +1 -1
  20. data/app/controllers/concerns/decidim/reporting_proposals/admin/needs_header_snippets.rb +5 -7
  21. data/app/controllers/concerns/decidim/reporting_proposals/needs_proposal_extra_validations_snippets.rb +1 -1
  22. data/app/controllers/concerns/decidim/reporting_proposals/proposals_controller_override.rb +5 -5
  23. data/app/controllers/decidim/templates/admin/proposal_answer_templates_controller.rb +3 -5
  24. data/app/forms/concerns/decidim/reporting_proposals/form_builder_override.rb +9 -8
  25. data/app/forms/concerns/decidim/reporting_proposals/map_builder_override.rb +6 -4
  26. data/app/helpers/concerns/decidim/reporting_proposals/proposal_wizard_helper_override.rb +4 -4
  27. data/app/overrides/decidim/proposals/admin/proposal_answers/_form/add_template_chooser.html.erb.deface +1 -1
  28. data/app/overrides/decidim/proposals/admin/proposals/_proposal-tr/add_valuators_name.html.erb.deface +3 -3
  29. data/app/overrides/decidim/proposals/admin/proposals/show/add_send_email_btn.html.erb.deface +1 -1
  30. data/app/overrides/decidim/proposals/admin/proposals/show/add_valuators_form.html.erb.deface +1 -1
  31. data/app/overrides/decidim/proposals/admin/proposals/show/remove_photos.html.erb.deface +0 -1
  32. data/app/overrides/decidim/proposals/proposals/_edit_form_fields/replace_add_photos.html.erb.deface +37 -0
  33. data/app/overrides/decidim/proposals/proposals/_proposal_similar/add_distance_badge.html.erb.deface +1 -1
  34. data/app/overrides/decidim/proposals/proposals/_wizard_header/replace_title.html.erb.deface +9 -9
  35. data/app/overrides/decidim/proposals/proposals/edit/add_css.html.erb.deface +5 -0
  36. data/app/overrides/decidim/proposals/proposals/edit/replace_javascript.html.erb.deface +0 -1
  37. data/app/overrides/decidim/proposals/proposals/edit_draft/add_css.html.erb.deface +5 -0
  38. data/app/overrides/decidim/proposals/proposals/new/add_css.html.erb.deface +5 -0
  39. data/app/overrides/decidim/proposals/proposals/new/replace_javascript.html.erb.deface +0 -1
  40. data/app/overrides/decidim/reported_mailer/report/add_link_to_admin.html.erb.deface +1 -1
  41. data/app/overrides/layouts/decidim/_process_header_steps/always_show_new_proposals.html.erb.deface +1 -1
  42. data/app/packs/stylesheets/decidim/reporting_proposals/geocoding_addons.scss +8 -8
  43. data/app/packs/stylesheets/decidim/reporting_proposals/list_component_admin.scss +5 -5
  44. data/app/packs/stylesheets/decidim/reporting_proposals/manage_component_admin.scss +10 -10
  45. data/app/packs/stylesheets/decidim/reporting_proposals/proposals/add_proposal.scss +3 -3
  46. data/app/packs/stylesheets/decidim/reporting_proposals/user_camera_inputs.scss +5 -5
  47. data/app/queries/decidim/reporting_proposals/nearby_proposals.rb +1 -1
  48. data/app/validators/concerns/decidim/reporting_proposals/component_validator_override.rb +2 -2
  49. data/app/views/decidim/proposals/proposals/index.js.erb +1 -1
  50. data/app/views/decidim/reporting_proposals/proposals/_reporting_proposal_fields.html.erb +9 -21
  51. data/babel.config.json +25 -0
  52. data/config/locales/en.yml +2 -0
  53. data/db/migrate/20230404103706_add_target_and_field_values_to_decidim_templates_templates.rb +2 -6
  54. data/decidim-reporting_proposals.gemspec +2 -1
  55. data/lib/decidim/reporting_proposals/component.rb +0 -9
  56. data/lib/decidim/reporting_proposals/engine.rb +27 -3
  57. data/lib/decidim/reporting_proposals/version.rb +3 -3
  58. data/package-lock.json +161 -142
  59. data/package.json +4 -163
  60. metadata +56 -48
data/Gemfile.lock CHANGED
@@ -1,49 +1,51 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- decidim-reporting_proposals (0.4.2)
5
- decidim-admin (>= 0.25.0, < 0.27)
6
- decidim-core (>= 0.25.0, < 0.27)
7
- decidim-participatory_processes (>= 0.25.0, < 0.27)
8
- decidim-proposals (>= 0.25.0, < 0.27)
9
- decidim-templates (>= 0.25.0, < 0.27)
4
+ decidim-reporting_proposals (0.5.0)
5
+ decidim-admin (>= 0.27.0, < 0.28)
6
+ decidim-core (>= 0.27.0, < 0.28)
7
+ decidim-participatory_processes (>= 0.27.0, < 0.28)
8
+ decidim-proposals (>= 0.27.0, < 0.28)
9
+ decidim-templates (>= 0.27.0, < 0.28)
10
10
  deface (>= 1.9)
11
11
 
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- actioncable (6.0.6.1)
16
- actionpack (= 6.0.6.1)
15
+ actioncable (6.1.7.4)
16
+ actionpack (= 6.1.7.4)
17
+ activesupport (= 6.1.7.4)
17
18
  nio4r (~> 2.0)
18
19
  websocket-driver (>= 0.6.1)
19
- actionmailbox (6.0.6.1)
20
- actionpack (= 6.0.6.1)
21
- activejob (= 6.0.6.1)
22
- activerecord (= 6.0.6.1)
23
- activestorage (= 6.0.6.1)
24
- activesupport (= 6.0.6.1)
20
+ actionmailbox (6.1.7.4)
21
+ actionpack (= 6.1.7.4)
22
+ activejob (= 6.1.7.4)
23
+ activerecord (= 6.1.7.4)
24
+ activestorage (= 6.1.7.4)
25
+ activesupport (= 6.1.7.4)
25
26
  mail (>= 2.7.1)
26
- actionmailer (6.0.6.1)
27
- actionpack (= 6.0.6.1)
28
- actionview (= 6.0.6.1)
29
- activejob (= 6.0.6.1)
27
+ actionmailer (6.1.7.4)
28
+ actionpack (= 6.1.7.4)
29
+ actionview (= 6.1.7.4)
30
+ activejob (= 6.1.7.4)
31
+ activesupport (= 6.1.7.4)
30
32
  mail (~> 2.5, >= 2.5.4)
31
33
  rails-dom-testing (~> 2.0)
32
- actionpack (6.0.6.1)
33
- actionview (= 6.0.6.1)
34
- activesupport (= 6.0.6.1)
35
- rack (~> 2.0, >= 2.0.8)
34
+ actionpack (6.1.7.4)
35
+ actionview (= 6.1.7.4)
36
+ activesupport (= 6.1.7.4)
37
+ rack (~> 2.0, >= 2.0.9)
36
38
  rack-test (>= 0.6.3)
37
39
  rails-dom-testing (~> 2.0)
38
40
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
39
- actiontext (6.0.6.1)
40
- actionpack (= 6.0.6.1)
41
- activerecord (= 6.0.6.1)
42
- activestorage (= 6.0.6.1)
43
- activesupport (= 6.0.6.1)
41
+ actiontext (6.1.7.4)
42
+ actionpack (= 6.1.7.4)
43
+ activerecord (= 6.1.7.4)
44
+ activestorage (= 6.1.7.4)
45
+ activesupport (= 6.1.7.4)
44
46
  nokogiri (>= 1.8.5)
45
- actionview (6.0.6.1)
46
- activesupport (= 6.0.6.1)
47
+ actionview (6.1.7.4)
48
+ activesupport (= 6.1.7.4)
47
49
  builder (~> 3.1)
48
50
  erubi (~> 1.4)
49
51
  rails-dom-testing (~> 2.0)
@@ -51,25 +53,27 @@ GEM
51
53
  active_link_to (1.0.5)
52
54
  actionpack
53
55
  addressable
54
- activejob (6.0.6.1)
55
- activesupport (= 6.0.6.1)
56
+ activejob (6.1.7.4)
57
+ activesupport (= 6.1.7.4)
56
58
  globalid (>= 0.3.6)
57
- activemodel (6.0.6.1)
58
- activesupport (= 6.0.6.1)
59
- activerecord (6.0.6.1)
60
- activemodel (= 6.0.6.1)
61
- activesupport (= 6.0.6.1)
62
- activestorage (6.0.6.1)
63
- actionpack (= 6.0.6.1)
64
- activejob (= 6.0.6.1)
65
- activerecord (= 6.0.6.1)
59
+ activemodel (6.1.7.4)
60
+ activesupport (= 6.1.7.4)
61
+ activerecord (6.1.7.4)
62
+ activemodel (= 6.1.7.4)
63
+ activesupport (= 6.1.7.4)
64
+ activestorage (6.1.7.4)
65
+ actionpack (= 6.1.7.4)
66
+ activejob (= 6.1.7.4)
67
+ activerecord (= 6.1.7.4)
68
+ activesupport (= 6.1.7.4)
66
69
  marcel (~> 1.0)
67
- activesupport (6.0.6.1)
70
+ mini_mime (>= 1.1.0)
71
+ activesupport (6.1.7.4)
68
72
  concurrent-ruby (~> 1.0, >= 1.0.2)
69
- i18n (>= 0.7, < 2)
70
- minitest (~> 5.1)
71
- tzinfo (~> 1.1)
72
- zeitwerk (~> 2.2, >= 2.2.2)
73
+ i18n (>= 1.6, < 2)
74
+ minitest (>= 5.1)
75
+ tzinfo (~> 2.0)
76
+ zeitwerk (~> 2.3)
73
77
  acts_as_list (0.9.19)
74
78
  activerecord (>= 3.0)
75
79
  addressable (2.8.4)
@@ -87,7 +91,7 @@ GEM
87
91
  ice_nine (~> 0.11.0)
88
92
  thread_safe (~> 0.3, >= 0.3.1)
89
93
  batch-loader (1.5.0)
90
- bcrypt (3.1.18)
94
+ bcrypt (3.1.19)
91
95
  better_html (1.0.16)
92
96
  actionview (>= 4.0)
93
97
  activesupport (>= 4.0)
@@ -102,7 +106,7 @@ GEM
102
106
  browser (2.7.1)
103
107
  builder (3.2.4)
104
108
  byebug (11.1.3)
105
- capybara (3.39.0)
109
+ capybara (3.39.2)
106
110
  addressable
107
111
  matrix
108
112
  mini_mime (>= 0.1.3)
@@ -111,7 +115,7 @@ GEM
111
115
  rack-test (>= 0.6.3)
112
116
  regexp_parser (>= 1.5, < 3.0)
113
117
  xpath (~> 3.2)
114
- carrierwave (2.2.3)
118
+ carrierwave (2.2.4)
115
119
  activemodel (>= 5.0.0)
116
120
  activesupport (>= 5.0.0)
117
121
  addressable (~> 2.6)
@@ -133,7 +137,7 @@ GEM
133
137
  charlock_holmes (0.7.7)
134
138
  chef-utils (18.2.7)
135
139
  concurrent-ruby
136
- childprocess (3.0.0)
140
+ childprocess (4.1.0)
137
141
  codecov (0.6.0)
138
142
  simplecov (>= 0.15, < 0.22)
139
143
  coercible (1.0.0)
@@ -145,6 +149,7 @@ GEM
145
149
  coffee-script-source
146
150
  execjs
147
151
  coffee-script-source (1.12.2)
152
+ commonmarker (0.23.9)
148
153
  concurrent-ruby (1.2.2)
149
154
  crack (0.4.5)
150
155
  rexml
@@ -152,65 +157,65 @@ GEM
152
157
  css_parser (1.14.0)
153
158
  addressable
154
159
  date (3.3.3)
155
- date_validator (0.9.0)
156
- activemodel
157
- activesupport
160
+ date_validator (0.12.0)
161
+ activemodel (>= 3)
162
+ activesupport (>= 3)
158
163
  db-query-matchers (0.10.0)
159
164
  activesupport (>= 4.0, < 7)
160
165
  rspec (~> 3.0)
161
- decidim (0.26.5)
162
- decidim-accountability (= 0.26.5)
163
- decidim-admin (= 0.26.5)
164
- decidim-api (= 0.26.5)
165
- decidim-assemblies (= 0.26.5)
166
- decidim-blogs (= 0.26.5)
167
- decidim-budgets (= 0.26.5)
168
- decidim-comments (= 0.26.5)
169
- decidim-core (= 0.26.5)
170
- decidim-debates (= 0.26.5)
171
- decidim-forms (= 0.26.5)
172
- decidim-generators (= 0.26.5)
173
- decidim-meetings (= 0.26.5)
174
- decidim-pages (= 0.26.5)
175
- decidim-participatory_processes (= 0.26.5)
176
- decidim-proposals (= 0.26.5)
177
- decidim-sortitions (= 0.26.5)
178
- decidim-surveys (= 0.26.5)
179
- decidim-system (= 0.26.5)
180
- decidim-templates (= 0.26.5)
181
- decidim-verifications (= 0.26.5)
182
- decidim-accountability (0.26.5)
183
- decidim-comments (= 0.26.5)
184
- decidim-core (= 0.26.5)
185
- decidim-admin (0.26.5)
166
+ decidim (0.27.3)
167
+ decidim-accountability (= 0.27.3)
168
+ decidim-admin (= 0.27.3)
169
+ decidim-api (= 0.27.3)
170
+ decidim-assemblies (= 0.27.3)
171
+ decidim-blogs (= 0.27.3)
172
+ decidim-budgets (= 0.27.3)
173
+ decidim-comments (= 0.27.3)
174
+ decidim-core (= 0.27.3)
175
+ decidim-debates (= 0.27.3)
176
+ decidim-forms (= 0.27.3)
177
+ decidim-generators (= 0.27.3)
178
+ decidim-meetings (= 0.27.3)
179
+ decidim-pages (= 0.27.3)
180
+ decidim-participatory_processes (= 0.27.3)
181
+ decidim-proposals (= 0.27.3)
182
+ decidim-sortitions (= 0.27.3)
183
+ decidim-surveys (= 0.27.3)
184
+ decidim-system (= 0.27.3)
185
+ decidim-templates (= 0.27.3)
186
+ decidim-verifications (= 0.27.3)
187
+ decidim-accountability (0.27.3)
188
+ decidim-comments (= 0.27.3)
189
+ decidim-core (= 0.27.3)
190
+ decidim-admin (0.27.3)
186
191
  active_link_to (~> 1.0)
187
- decidim-core (= 0.26.5)
192
+ decidim-core (= 0.27.3)
188
193
  devise (~> 4.7)
189
194
  devise-i18n (~> 1.2)
190
195
  devise_invitable (~> 2.0)
191
- decidim-api (0.26.5)
196
+ decidim-api (0.27.3)
192
197
  graphql (~> 1.12, < 1.13)
198
+ graphql-docs (~> 2.1.0)
193
199
  rack-cors (~> 1.0)
194
- redcarpet (~> 3.5, >= 3.5.1)
195
- decidim-assemblies (0.26.5)
196
- decidim-core (= 0.26.5)
197
- decidim-blogs (0.26.5)
198
- decidim-admin (= 0.26.5)
199
- decidim-comments (= 0.26.5)
200
- decidim-core (= 0.26.5)
201
- decidim-budgets (0.26.5)
202
- decidim-comments (= 0.26.5)
203
- decidim-core (= 0.26.5)
204
- decidim-bulletin_board (0.22.3)
200
+ decidim-assemblies (0.27.3)
201
+ decidim-core (= 0.27.3)
202
+ decidim-blogs (0.27.3)
203
+ decidim-admin (= 0.27.3)
204
+ decidim-comments (= 0.27.3)
205
+ decidim-core (= 0.27.3)
206
+ decidim-budgets (0.27.3)
207
+ decidim-comments (= 0.27.3)
208
+ decidim-core (= 0.27.3)
209
+ decidim-bulletin_board (0.23.0)
205
210
  byebug (~> 11.0)
206
- graphlient (~> 0.4.0)
211
+ graphlient (~> 0.5.0)
207
212
  jwt (~> 2.2.2)
208
213
  rails (~> 6.0, >= 5.0.0)
209
214
  wisper (~> 2.0.0)
210
- decidim-comments (0.26.5)
211
- decidim-core (= 0.26.5)
215
+ decidim-comments (0.27.3)
216
+ decidim-core (= 0.27.3)
212
217
  redcarpet (~> 3.5, >= 3.5.1)
213
- decidim-core (0.26.5)
218
+ decidim-core (0.27.3)
214
219
  active_link_to (~> 1.0)
215
220
  acts_as_list (~> 0.9)
216
221
  batch-loader (~> 1.2)
@@ -219,17 +224,17 @@ GEM
219
224
  cells-erb (~> 0.1.0)
220
225
  cells-rails (~> 0.1.3)
221
226
  charlock_holmes (~> 0.7)
222
- date_validator (~> 0.9.0)
223
- decidim-api (= 0.26.5)
227
+ date_validator (~> 0.12.0)
228
+ decidim-api (= 0.27.3)
224
229
  devise (~> 4.7)
225
230
  devise-i18n (~> 1.2)
226
231
  diffy (~> 3.3)
227
232
  doorkeeper (~> 5.1)
228
233
  doorkeeper-i18n (~> 4.0)
229
- file_validators (~> 2.1)
234
+ file_validators (~> 3.0)
230
235
  fog-local (~> 0.6)
231
- foundation_rails_helper
232
- geocoder (~> 1.7.5)
236
+ foundation_rails_helper (~> 4.0)
237
+ geocoder (~> 1.8)
233
238
  hashdiff (>= 0.4.0, < 2.0.0)
234
239
  invisible_captcha (~> 0.12)
235
240
  kaminari (~> 1.2, >= 1.2.1)
@@ -248,98 +253,97 @@ GEM
248
253
  premailer-rails (~> 1.10)
249
254
  rack (~> 2.2, >= 2.2.3)
250
255
  rack-attack (~> 6.0)
251
- rails (~> 6.0.4)
256
+ rails (~> 6.1.0)
252
257
  rails-i18n (~> 6.0)
253
258
  ransack (~> 2.4.1)
254
- rectify (~> 0.13.0)
255
259
  redis (~> 4.1)
256
260
  request_store (~> 1.5.0)
257
261
  rubyXL (~> 3.4)
258
262
  rubyzip (~> 2.0)
259
- searchlight (~> 4.1)
260
263
  seven_zip_ruby (~> 1.3)
261
264
  social-share-button (~> 1.2, >= 1.2.1)
262
265
  valid_email2 (~> 2.1)
263
266
  webpacker (= 6.0.0.rc.5)
267
+ webpush (~> 1.1)
264
268
  wisper (~> 2.0)
265
- decidim-debates (0.26.5)
266
- decidim-comments (= 0.26.5)
267
- decidim-core (= 0.26.5)
268
- decidim-dev (0.26.5)
269
+ decidim-debates (0.27.3)
270
+ decidim-comments (= 0.27.3)
271
+ decidim-core (= 0.27.3)
272
+ decidim-dev (0.27.3)
269
273
  axe-core-rspec (~> 4.1.0)
270
274
  byebug (~> 11.0)
271
275
  capybara (~> 3.24)
272
276
  db-query-matchers (~> 0.10.0)
273
- decidim (= 0.26.5)
277
+ decidim (= 0.27.3)
274
278
  erb_lint (~> 0.0.35)
275
279
  factory_bot_rails (~> 4.8)
276
280
  i18n-tasks (~> 0.9.18)
277
281
  mdl (~> 0.5)
278
- nokogiri (~> 1.12)
282
+ nokogiri (~> 1.13)
283
+ parallel_tests (~> 3.7)
279
284
  puma (~> 5.0)
280
285
  rails-controller-testing (~> 1.0)
281
- rspec-cells (~> 0.3.4)
286
+ rspec-cells (~> 0.3.7)
282
287
  rspec-html-matchers (~> 0.9.1)
283
288
  rspec-rails (~> 4.0)
284
289
  rspec-retry (~> 0.6.2)
285
290
  rspec_junit_formatter (~> 0.3.0)
286
- rubocop (~> 0.92.0)
287
- rubocop-rails (~> 2.8)
288
- rubocop-rspec (= 1.43.2)
289
- selenium-webdriver (~> 3.142)
290
- simplecov (~> 0.19.0)
291
- simplecov-cobertura (~> 1.3.1)
292
- system_test_html_screenshots (~> 0.2)
291
+ rubocop (~> 1.28.0)
292
+ rubocop-rails (~> 2.14)
293
+ rubocop-rspec (~> 2.10)
294
+ selenium-webdriver (~> 4.1.0)
295
+ simplecov (~> 0.21.0)
296
+ simplecov-cobertura (~> 2.1.0)
293
297
  w3c_rspec_validators (~> 0.3.0)
294
298
  webmock (~> 3.6)
295
299
  wisper-rspec (~> 1.0)
296
- decidim-elections (0.26.5)
297
- decidim-bulletin_board (= 0.22.3)
298
- decidim-core (= 0.26.5)
299
- decidim-forms (= 0.26.5)
300
- decidim-proposals (= 0.26.5)
300
+ decidim-elections (0.27.3)
301
+ decidim-bulletin_board (= 0.23)
302
+ decidim-core (= 0.27.3)
303
+ decidim-forms (= 0.27.3)
304
+ decidim-proposals (= 0.27.3)
301
305
  rack-attack (~> 6.0)
302
- voting_schemes-dummy (= 0.22.3)
303
- voting_schemes-electionguard (= 0.22.3)
304
- decidim-forms (0.26.5)
305
- decidim-core (= 0.26.5)
306
+ voting_schemes-dummy (= 0.23)
307
+ voting_schemes-electionguard (= 0.23)
308
+ decidim-forms (0.27.3)
309
+ decidim-core (= 0.27.3)
306
310
  wicked_pdf (~> 2.1)
307
311
  wkhtmltopdf-binary (~> 0.12)
308
- decidim-generators (0.26.5)
309
- decidim-core (= 0.26.5)
310
- decidim-meetings (0.26.5)
311
- decidim-core (= 0.26.5)
312
- decidim-forms (= 0.26.5)
312
+ decidim-generators (0.27.3)
313
+ decidim-core (= 0.27.3)
314
+ decidim-meetings (0.27.3)
315
+ decidim-core (= 0.27.3)
316
+ decidim-forms (= 0.27.3)
313
317
  icalendar (~> 2.5)
314
- decidim-pages (0.26.5)
315
- decidim-core (= 0.26.5)
316
- decidim-participatory_processes (0.26.5)
317
- decidim-core (= 0.26.5)
318
- decidim-proposals (0.26.5)
319
- decidim-comments (= 0.26.5)
320
- decidim-core (= 0.26.5)
321
- doc2text (~> 0.4.4)
318
+ decidim-pages (0.27.3)
319
+ decidim-core (= 0.27.3)
320
+ decidim-participatory_processes (0.27.3)
321
+ decidim-core (= 0.27.3)
322
+ decidim-proposals (0.27.3)
323
+ decidim-comments (= 0.27.3)
324
+ decidim-core (= 0.27.3)
325
+ doc2text (~> 0.4.5)
322
326
  redcarpet (~> 3.5, >= 3.5.1)
323
- decidim-sortitions (0.26.5)
324
- decidim-admin (= 0.26.5)
325
- decidim-comments (= 0.26.5)
326
- decidim-core (= 0.26.5)
327
- decidim-proposals (= 0.26.5)
328
- decidim-surveys (0.26.5)
329
- decidim-core (= 0.26.5)
330
- decidim-forms (= 0.26.5)
331
- decidim-templates (= 0.26.5)
332
- decidim-system (0.26.5)
327
+ decidim-sortitions (0.27.3)
328
+ decidim-admin (= 0.27.3)
329
+ decidim-comments (= 0.27.3)
330
+ decidim-core (= 0.27.3)
331
+ decidim-proposals (= 0.27.3)
332
+ decidim-surveys (0.27.3)
333
+ decidim-core (= 0.27.3)
334
+ decidim-forms (= 0.27.3)
335
+ decidim-templates (= 0.27.3)
336
+ decidim-system (0.27.3)
333
337
  active_link_to (~> 1.0)
334
- decidim-core (= 0.26.5)
338
+ decidim-core (= 0.27.3)
335
339
  devise (~> 4.7)
336
340
  devise-i18n (~> 1.2)
337
341
  devise_invitable (~> 2.0)
338
- decidim-templates (0.26.5)
339
- decidim-core (= 0.26.5)
340
- decidim-forms (= 0.26.5)
341
- decidim-verifications (0.26.5)
342
- decidim-core (= 0.26.5)
342
+ decidim-templates (0.27.3)
343
+ decidim-core (= 0.27.3)
344
+ decidim-forms (= 0.27.3)
345
+ decidim-verifications (0.27.3)
346
+ decidim-core (= 0.27.3)
343
347
  declarative-builder (0.1.0)
344
348
  declarative-option (< 0.2.0)
345
349
  declarative-option (0.1.0)
@@ -372,7 +376,6 @@ GEM
372
376
  railties (>= 5)
373
377
  doorkeeper-i18n (4.0.1)
374
378
  dumb_delegator (1.0.0)
375
- equalizer (0.0.11)
376
379
  erb_lint (0.0.37)
377
380
  activesupport
378
381
  better_html (~> 1.0.7)
@@ -384,8 +387,11 @@ GEM
384
387
  erbse (0.1.4)
385
388
  temple
386
389
  erubi (1.12.0)
387
- excon (0.99.0)
390
+ escape_utils (1.3.0)
391
+ excon (0.100.0)
388
392
  execjs (2.8.1)
393
+ extended-markdown-filter (0.7.0)
394
+ html-pipeline (~> 2.9)
389
395
  factory_bot (4.11.1)
390
396
  activesupport (>= 3.0.0)
391
397
  factory_bot_rails (4.11.1)
@@ -419,7 +425,7 @@ GEM
419
425
  faraday_middleware (1.2.0)
420
426
  faraday (~> 1.0)
421
427
  ffi (1.15.5)
422
- file_validators (2.3.0)
428
+ file_validators (3.0.0)
423
429
  activemodel (>= 3.2)
424
430
  mime-types (>= 1.0)
425
431
  fog-core (2.3.0)
@@ -435,10 +441,11 @@ GEM
435
441
  activemodel (>= 4.1, < 7.1)
436
442
  activesupport (>= 4.1, < 7.1)
437
443
  railties (>= 4.1, < 7.1)
438
- geocoder (1.7.5)
444
+ gemoji (3.0.1)
445
+ geocoder (1.8.2)
439
446
  globalid (1.1.0)
440
447
  activesupport (>= 5.0)
441
- graphlient (0.4.0)
448
+ graphlient (0.5.0)
442
449
  faraday (>= 1.0)
443
450
  faraday_middleware
444
451
  graphql-client
@@ -446,12 +453,24 @@ GEM
446
453
  graphql-client (0.18.0)
447
454
  activesupport (>= 3.0)
448
455
  graphql
456
+ graphql-docs (2.1.0)
457
+ commonmarker (~> 0.16)
458
+ escape_utils (~> 1.2)
459
+ extended-markdown-filter (~> 0.4)
460
+ gemoji (~> 3.0)
461
+ graphql (~> 1.12)
462
+ html-pipeline (~> 2.9)
463
+ sass (~> 3.4)
449
464
  hashdiff (1.0.1)
450
465
  hashie (5.0.0)
451
466
  highline (2.1.0)
467
+ hkdf (0.3.0)
468
+ html-pipeline (2.14.3)
469
+ activesupport (>= 2)
470
+ nokogiri (>= 1.4)
452
471
  html_tokenizer (0.0.7)
453
472
  htmlentities (4.3.4)
454
- i18n (1.13.0)
473
+ i18n (1.14.1)
455
474
  concurrent-ruby (~> 1.0)
456
475
  i18n-tasks (0.9.37)
457
476
  activesupport (>= 4.0.2)
@@ -524,17 +543,17 @@ GEM
524
543
  mime-types-data (3.2023.0218.1)
525
544
  mini_magick (4.12.0)
526
545
  mini_mime (1.1.2)
527
- minitest (5.18.0)
546
+ minitest (5.18.1)
528
547
  mixlib-cli (2.1.8)
529
548
  mixlib-config (3.0.27)
530
549
  tomlrb
531
550
  mixlib-shellout (3.2.7)
532
551
  chef-utils
533
- msgpack (1.7.0)
552
+ msgpack (1.7.1)
534
553
  multi_xml (0.6.0)
535
554
  multipart-post (2.3.0)
536
555
  mustache (1.1.1)
537
- net-imap (0.3.4)
556
+ net-imap (0.3.6)
538
557
  date
539
558
  net-protocol
540
559
  net-pop (0.1.2)
@@ -544,9 +563,7 @@ GEM
544
563
  net-smtp (0.3.3)
545
564
  net-protocol
546
565
  nio4r (2.5.9)
547
- nokogiri (1.14.3-x86_64-darwin)
548
- racc (~> 1.4)
549
- nokogiri (1.14.3-x86_64-linux)
566
+ nokogiri (1.14.5-x86_64-linux)
550
567
  racc (~> 1.4)
551
568
  oauth (1.1.0)
552
569
  oauth-tty (~> 1.0, >= 1.0.1)
@@ -589,8 +606,11 @@ GEM
589
606
  activerecord (>= 5.2)
590
607
  request_store (~> 1.1)
591
608
  parallel (1.23.0)
592
- parser (3.2.2.1)
609
+ parallel_tests (3.13.0)
610
+ parallel
611
+ parser (3.2.2.3)
593
612
  ast (~> 2.4.1)
613
+ racc
594
614
  pg (1.1.4)
595
615
  pg_search (2.3.6)
596
616
  activerecord (>= 5.2)
@@ -605,9 +625,9 @@ GEM
605
625
  net-smtp
606
626
  premailer (~> 1.7, >= 1.7.9)
607
627
  public_suffix (5.0.1)
608
- puma (5.6.5)
628
+ puma (5.6.6)
609
629
  nio4r (~> 2.0)
610
- racc (1.6.2)
630
+ racc (1.7.1)
611
631
  rack (2.2.7)
612
632
  rack-attack (6.6.1)
613
633
  rack (>= 1.0, < 3)
@@ -619,39 +639,40 @@ GEM
619
639
  rack
620
640
  rack-test (2.1.0)
621
641
  rack (>= 1.3)
622
- rails (6.0.6.1)
623
- actioncable (= 6.0.6.1)
624
- actionmailbox (= 6.0.6.1)
625
- actionmailer (= 6.0.6.1)
626
- actionpack (= 6.0.6.1)
627
- actiontext (= 6.0.6.1)
628
- actionview (= 6.0.6.1)
629
- activejob (= 6.0.6.1)
630
- activemodel (= 6.0.6.1)
631
- activerecord (= 6.0.6.1)
632
- activestorage (= 6.0.6.1)
633
- activesupport (= 6.0.6.1)
634
- bundler (>= 1.3.0)
635
- railties (= 6.0.6.1)
642
+ rails (6.1.7.4)
643
+ actioncable (= 6.1.7.4)
644
+ actionmailbox (= 6.1.7.4)
645
+ actionmailer (= 6.1.7.4)
646
+ actionpack (= 6.1.7.4)
647
+ actiontext (= 6.1.7.4)
648
+ actionview (= 6.1.7.4)
649
+ activejob (= 6.1.7.4)
650
+ activemodel (= 6.1.7.4)
651
+ activerecord (= 6.1.7.4)
652
+ activestorage (= 6.1.7.4)
653
+ activesupport (= 6.1.7.4)
654
+ bundler (>= 1.15.0)
655
+ railties (= 6.1.7.4)
636
656
  sprockets-rails (>= 2.0.0)
637
657
  rails-controller-testing (1.0.5)
638
658
  actionpack (>= 5.0.1.rc1)
639
659
  actionview (>= 5.0.1.rc1)
640
660
  activesupport (>= 5.0.1.rc1)
641
- rails-dom-testing (2.0.3)
642
- activesupport (>= 4.2.0)
661
+ rails-dom-testing (2.1.1)
662
+ activesupport (>= 5.0.0)
663
+ minitest
643
664
  nokogiri (>= 1.6)
644
665
  rails-html-sanitizer (1.4.3)
645
666
  loofah (~> 2.3)
646
667
  rails-i18n (6.0.0)
647
668
  i18n (>= 0.7, < 2)
648
669
  railties (>= 6.0.0, < 7)
649
- railties (6.0.6.1)
650
- actionpack (= 6.0.6.1)
651
- activesupport (= 6.0.6.1)
670
+ railties (6.1.7.4)
671
+ actionpack (= 6.1.7.4)
672
+ activesupport (= 6.1.7.4)
652
673
  method_source
653
- rake (>= 0.8.7)
654
- thor (>= 0.20.3, < 2.0)
674
+ rake (>= 12.2)
675
+ thor (~> 1.0)
655
676
  rainbow (3.1.1)
656
677
  rake (13.0.6)
657
678
  ransack (2.4.2)
@@ -661,15 +682,9 @@ GEM
661
682
  rb-fsevent (0.11.2)
662
683
  rb-inotify (0.10.1)
663
684
  ffi (~> 1.0)
664
- rectify (0.13.0)
665
- activemodel (>= 4.1.0)
666
- activerecord (>= 4.1.0)
667
- activesupport (>= 4.1.0)
668
- virtus (~> 1.0.5)
669
- wisper (>= 1.6.1)
670
685
  redcarpet (3.6.0)
671
686
  redis (4.8.1)
672
- regexp_parser (2.8.0)
687
+ regexp_parser (2.8.1)
673
688
  request_store (1.5.1)
674
689
  rack (>= 1.4)
675
690
  responders (3.1.0)
@@ -704,29 +719,29 @@ GEM
704
719
  rspec-support (~> 3.10)
705
720
  rspec-retry (0.6.2)
706
721
  rspec-core (> 3.3)
707
- rspec-support (3.12.0)
722
+ rspec-support (3.12.1)
708
723
  rspec_junit_formatter (0.3.0)
709
724
  rspec-core (>= 2, < 4, != 2.12.0)
710
- rubocop (0.92.0)
725
+ rubocop (1.28.2)
711
726
  parallel (~> 1.10)
712
- parser (>= 2.7.1.5)
727
+ parser (>= 3.1.0.0)
713
728
  rainbow (>= 2.2.2, < 4.0)
714
- regexp_parser (>= 1.7)
729
+ regexp_parser (>= 1.8, < 3.0)
715
730
  rexml
716
- rubocop-ast (>= 0.5.0)
731
+ rubocop-ast (>= 1.17.0, < 2.0)
717
732
  ruby-progressbar (~> 1.7)
718
- unicode-display_width (>= 1.4.0, < 2.0)
719
- rubocop-ast (1.28.1)
733
+ unicode-display_width (>= 1.4.0, < 3.0)
734
+ rubocop-ast (1.29.0)
720
735
  parser (>= 3.2.1.0)
721
736
  rubocop-faker (1.1.0)
722
737
  faker (>= 2.12.0)
723
738
  rubocop (>= 0.82.0)
724
- rubocop-rails (2.9.1)
739
+ rubocop-rails (2.15.2)
725
740
  activesupport (>= 4.2.0)
726
741
  rack (>= 1.1)
727
- rubocop (>= 0.90.0, < 2.0)
728
- rubocop-rspec (1.43.2)
729
- rubocop (~> 0.87)
742
+ rubocop (>= 1.7.0, < 2.0)
743
+ rubocop-rspec (2.11.1)
744
+ rubocop (~> 1.19)
730
745
  ruby-progressbar (1.13.0)
731
746
  ruby-vips (2.1.4)
732
747
  ffi (~> 1.12)
@@ -735,18 +750,26 @@ GEM
735
750
  nokogiri (>= 1.10.8)
736
751
  rubyzip (>= 1.3.0)
737
752
  rubyzip (2.3.2)
738
- searchlight (4.1.0)
739
- selenium-webdriver (3.142.7)
740
- childprocess (>= 0.5, < 4.0)
753
+ sass (3.7.4)
754
+ sass-listen (~> 4.0.0)
755
+ sass-listen (4.0.0)
756
+ rb-fsevent (~> 0.9, >= 0.9.4)
757
+ rb-inotify (~> 0.9, >= 0.9.7)
758
+ selenium-webdriver (4.1.0)
759
+ childprocess (>= 0.5, < 5.0)
760
+ rexml (~> 3.2, >= 3.2.5)
741
761
  rubyzip (>= 1.2.2)
742
762
  semantic_range (3.0.0)
743
763
  seven_zip_ruby (1.3.0)
744
- simplecov (0.19.1)
764
+ simplecov (0.21.2)
745
765
  docile (~> 1.1)
746
766
  simplecov-html (~> 0.11)
747
- simplecov-cobertura (1.3.1)
748
- simplecov (~> 0.8)
767
+ simplecov_json_formatter (~> 0.1)
768
+ simplecov-cobertura (2.1.0)
769
+ rexml
770
+ simplecov (~> 0.19)
749
771
  simplecov-html (0.12.3)
772
+ simplecov_json_formatter (0.1.4)
750
773
  smart_properties (1.17.0)
751
774
  snaky_hash (2.0.1)
752
775
  hashie
@@ -765,32 +788,29 @@ GEM
765
788
  activesupport (>= 5.2)
766
789
  sprockets (>= 3.0.0)
767
790
  ssrf_filter (1.1.1)
768
- system_test_html_screenshots (0.2.0)
769
- actionpack (>= 5.2, < 6.1.a)
770
- temple (0.10.0)
791
+ temple (0.10.2)
771
792
  terminal-table (3.0.2)
772
793
  unicode-display_width (>= 1.1.1, < 3)
773
- thor (1.2.1)
794
+ thor (1.2.2)
774
795
  thread_safe (0.3.6)
775
- tilt (2.1.0)
776
- timeout (0.3.2)
796
+ tilt (2.2.0)
797
+ timeout (0.4.0)
777
798
  tomlrb (2.0.3)
778
- tzinfo (1.2.11)
779
- thread_safe (~> 0.1)
799
+ tzinfo (2.0.6)
800
+ concurrent-ruby (~> 1.0)
780
801
  uber (0.1.0)
781
- unicode-display_width (1.8.0)
802
+ unicode-display_width (2.4.2)
782
803
  valid_email2 (2.3.1)
783
804
  activemodel (>= 3.2)
784
805
  mail (~> 2.5)
785
- version_gem (1.1.2)
786
- virtus (1.0.5)
806
+ version_gem (1.1.3)
807
+ virtus (2.0.0)
787
808
  axiom-types (~> 0.1)
788
809
  coercible (~> 1.0)
789
810
  descendants_tracker (~> 0.0, >= 0.0.3)
790
- equalizer (~> 0.0, >= 0.0.9)
791
- voting_schemes-dummy (0.22.3)
811
+ voting_schemes-dummy (0.23.0)
792
812
  rails (>= 5.0.0)
793
- voting_schemes-electionguard (0.22.3)
813
+ voting_schemes-electionguard (0.23.0)
794
814
  rails (>= 5.0.0)
795
815
  w3c_rspec_validators (0.3.0)
796
816
  rails
@@ -816,6 +836,9 @@ GEM
816
836
  rack-proxy (>= 0.6.1)
817
837
  railties (>= 5.2)
818
838
  semantic_range (>= 2.3.0)
839
+ webpush (1.1.0)
840
+ hkdf (~> 0.2)
841
+ jwt (~> 2.0)
819
842
  websocket-driver (0.7.5)
820
843
  websocket-extensions (>= 0.1.0)
821
844
  websocket-extensions (0.1.5)
@@ -829,18 +852,17 @@ GEM
829
852
  zeitwerk (2.6.8)
830
853
 
831
854
  PLATFORMS
832
- x86_64-darwin-22
833
855
  x86_64-linux
834
856
 
835
857
  DEPENDENCIES
836
858
  bootsnap (~> 1.7)
837
859
  byebug (~> 11.0)
838
860
  codecov
839
- decidim (= 0.26.5)
840
- decidim-dev (= 0.26.5)
841
- decidim-elections (= 0.26.5)
861
+ decidim (= 0.27.3)
862
+ decidim-dev (= 0.27.3)
863
+ decidim-elections (= 0.27.3)
842
864
  decidim-reporting_proposals!
843
- decidim-templates (= 0.26.5)
865
+ decidim-templates (= 0.27.3)
844
866
  faker (~> 2.14)
845
867
  letter_opener_web (~> 2.0)
846
868
  listen (~> 3.1)
@@ -851,7 +873,7 @@ DEPENDENCIES
851
873
  web-console
852
874
 
853
875
  RUBY VERSION
854
- ruby 2.7.7p221
876
+ ruby 3.0.5p211
855
877
 
856
878
  BUNDLED WITH
857
- 2.4.6
879
+ 2.3.20