iqvoc 4.14.5 → 4.15.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 (172) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +11 -0
  3. data/Gemfile +9 -16
  4. data/Gemfile.lock +313 -257
  5. data/README.md +1 -1
  6. data/app/aides/entity_logger.rb +27 -0
  7. data/app/aides/maker.rb +1 -1
  8. data/app/aides/origin.rb +1 -1
  9. data/app/aides/{rdfapi.rb → rdf_api.rb} +1 -1
  10. data/app/aides/skos_importer.rb +1 -1
  11. data/app/assets/javascripts/iqvoc/iqvoc.js +4 -3
  12. data/app/assets/javascripts/iqvoc/treeview.js +3 -3
  13. data/app/assets/stylesheets/_framework.scss +1 -1
  14. data/app/controllers/collections/alphabetical_controller.rb +75 -0
  15. data/app/controllers/collections/expired_controller.rb +37 -0
  16. data/app/controllers/collections_controller.rb +22 -28
  17. data/app/controllers/concepts/alphabetical_controller.rb +4 -6
  18. data/app/controllers/concepts/expired_controller.rb +1 -1
  19. data/app/controllers/concepts/hierarchical_controller.rb +18 -15
  20. data/app/controllers/concepts_controller.rb +0 -3
  21. data/app/controllers/concepts_movement_controller.rb +1 -1
  22. data/app/controllers/concerns/controller_extensions.rb +15 -0
  23. data/app/controllers/dashboard_controller.rb +1 -1
  24. data/app/controllers/exports_controller.rb +17 -8
  25. data/app/controllers/rdf_controller.rb +0 -2
  26. data/app/controllers/remote_labels_controller.rb +0 -2
  27. data/app/controllers/search_results_controller.rb +59 -43
  28. data/app/helpers/concepts_helper.rb +2 -2
  29. data/app/helpers/navigation_helper.rb +7 -7
  30. data/app/helpers/rdf_helper.rb +2 -0
  31. data/app/jobs/export_job.rb +4 -7
  32. data/app/models/collection/base.rb +6 -8
  33. data/app/models/collection/member/skos/base.rb +2 -2
  34. data/app/models/collection/skos/base.rb +1 -1
  35. data/app/models/collection/skos/unordered.rb +1 -1
  36. data/app/models/collection/unordered.rb +2 -2
  37. data/app/models/concept/base.rb +2 -10
  38. data/app/models/concept/relation/base.rb +1 -1
  39. data/app/models/concept/relation/skos/base.rb +2 -2
  40. data/app/models/concept/relation/skos/broader/base.rb +2 -2
  41. data/app/models/concept/relation/skos/broader/mono.rb +1 -1
  42. data/app/models/concept/relation/skos/broader/poly.rb +1 -1
  43. data/app/models/concept/relation/skos/narrower/base.rb +1 -1
  44. data/app/models/concept/relation/skos/related.rb +1 -1
  45. data/app/models/concept/skos/base.rb +1 -1
  46. data/app/models/concept/skos/scheme.rb +2 -2
  47. data/app/models/concept/validations.rb +14 -0
  48. data/app/models/concerns/expirable.rb +14 -0
  49. data/app/models/export.rb +21 -9
  50. data/app/models/label/base.rb +19 -1
  51. data/app/models/label/skos/base.rb +1 -1
  52. data/app/models/labeling/base.rb +12 -0
  53. data/app/models/labeling/skos/alt_label.rb +1 -1
  54. data/app/models/labeling/skos/base.rb +4 -4
  55. data/app/models/labeling/skos/hidden_label.rb +1 -1
  56. data/app/models/labeling/skos/pref_label.rb +1 -1
  57. data/app/models/match/skos/base.rb +3 -3
  58. data/app/models/match/skos/broad_match.rb +2 -2
  59. data/app/models/match/skos/close_match.rb +1 -1
  60. data/app/models/match/skos/exact_match.rb +1 -1
  61. data/app/models/match/skos/mapping_relation.rb +1 -1
  62. data/app/models/match/skos/narrow_match.rb +2 -2
  63. data/app/models/match/skos/related_match.rb +1 -1
  64. data/app/models/note/base.rb +2 -2
  65. data/app/models/note/rdfs/see_also.rb +1 -1
  66. data/app/models/note/skos/base.rb +4 -4
  67. data/app/models/note/skos/change_note.rb +2 -2
  68. data/app/models/note/skos/definition.rb +1 -1
  69. data/app/models/note/skos/editorial_note.rb +1 -1
  70. data/app/models/note/skos/example.rb +1 -1
  71. data/app/models/note/skos/history_note.rb +1 -1
  72. data/app/models/note/skos/scope_note.rb +1 -1
  73. data/app/presenters/alphabetical_search_result.rb +2 -2
  74. data/app/services/rdf_sync_service.rb +1 -1
  75. data/app/uploaders/base.rb +4 -3
  76. data/app/view_models/concept_view.rb +1 -1
  77. data/app/views/collections/_data.html.erb +1 -1
  78. data/app/views/collections/_form.html.erb +14 -2
  79. data/app/views/collections/alphabetical/_search_result.html.erb +17 -0
  80. data/app/views/collections/alphabetical/_search_result_remote.html.erb +14 -0
  81. data/app/views/collections/alphabetical/index.html.erb +23 -0
  82. data/app/views/collections/edit.html.erb +1 -1
  83. data/app/views/collections/expired/index.html.erb +23 -0
  84. data/app/views/collections/index.html.erb +1 -1
  85. data/app/views/collections/new.html.erb +1 -1
  86. data/app/views/collections/show_published.html.erb +1 -1
  87. data/app/views/collections/show_unpublished.html.erb +1 -1
  88. data/app/views/collections/sidebars/_plural.html.erb +28 -0
  89. data/app/views/collections/sidebars/_singular.html.erb +22 -0
  90. data/app/views/concepts/_form.html.erb +1 -1
  91. data/app/views/concepts/alphabetical/index.html.erb +1 -1
  92. data/app/views/concepts/expired/index.html.erb +1 -1
  93. data/app/views/concepts/glance.html.erb +1 -1
  94. data/app/views/concepts/scheme/edit.html.erb +1 -1
  95. data/app/views/concepts/sidebars/_plural.html.erb +1 -1
  96. data/app/views/concepts/sidebars/_singular.html.erb +1 -1
  97. data/app/views/dashboard/glance.html.erb +1 -1
  98. data/app/views/exports/index.html.erb +5 -1
  99. data/app/views/exports/show.html.erb +1 -1
  100. data/app/views/partials/collection/_inline_base.html.erb +4 -0
  101. data/app/views/search_results/_sidebar.html.erb +1 -1
  102. data/config/application.rb +7 -2
  103. data/config/ci.rb +20 -0
  104. data/config/database.yml +15 -21
  105. data/config/database.yml.postgresql +13 -20
  106. data/config/engine.rb +1 -0
  107. data/config/environments/development.rb +1 -1
  108. data/config/environments/production.rb +1 -1
  109. data/config/environments/test.rb +1 -1
  110. data/config/initializers/content_security_policy.rb +6 -2
  111. data/config/initializers/filter_parameter_logging.rb +4 -4
  112. data/config/initializers/new_framework_defaults_7_1.rb +280 -0
  113. data/config/initializers/new_framework_defaults_8_0.rb +30 -0
  114. data/config/initializers/new_framework_defaults_8_1.rb +74 -0
  115. data/config/initializers/permissions_policy.rb +11 -9
  116. data/config/initializers/zeitwerk.rb +1 -3
  117. data/config/locales/de.yml +4 -1
  118. data/config/locales/en.yml +4 -1
  119. data/config/locales/pt.yml +2 -1
  120. data/config/puma.rb +34 -35
  121. data/config/routes.rb +3 -1
  122. data/db/migrate/20110510162719_use_mono_hierarchy_instead_of_poly_hierarchy.rb +2 -2
  123. data/db/migrate/20130227145825_fix_collection_type.rb +3 -3
  124. data/db/migrate/20130502151221_fix_collection_member_types.rb +1 -1
  125. data/db/migrate/20250218160045_adapt_zeitwerk_naming_to_iqvoc.rb +25 -0
  126. data/db/migrate/20250326182601_adapt_zeitwerk_skos_naming_to_instance_configuration.rb +11 -0
  127. data/db/schema.rb +100 -1
  128. data/iqvoc.gemspec +4 -4
  129. data/lib/iqvoc/configuration/collection.rb +16 -4
  130. data/lib/iqvoc/configuration/concept.rb +22 -18
  131. data/lib/iqvoc/configuration/core.rb +9 -23
  132. data/lib/iqvoc/configuration/label.rb +1 -1
  133. data/lib/iqvoc/environments/development.rb +62 -57
  134. data/lib/iqvoc/environments/production.rb +70 -67
  135. data/lib/iqvoc/environments/test.rb +44 -38
  136. data/lib/iqvoc/version.rb +1 -1
  137. data/test/controllers/concepts_movement_controller_test.rb +14 -14
  138. data/test/controllers/hierarchy_test.rb +0 -1
  139. data/test/controllers/reverse_match_test.rb +6 -6
  140. data/test/integration/alphabetical_test.rb +5 -5
  141. data/test/integration/browse_concepts_and_labels_test.rb +4 -4
  142. data/test/integration/client_edit_concept_test.rb +1 -1
  143. data/test/integration/collection_browsing_test.rb +2 -2
  144. data/test/integration/collection_circularity_test.rb +10 -10
  145. data/test/integration/collection_test.rb +79 -0
  146. data/test/integration/concept_browsing_test.rb +3 -3
  147. data/test/integration/concept_collection_assignment_test.rb +4 -4
  148. data/test/integration/concept_scheme_browsing_test.rb +7 -7
  149. data/test/integration/edit_collections_test.rb +1 -1
  150. data/test/integration/edit_concepts_test.rb +2 -2
  151. data/test/integration/instance_configuration_browsing_test.rb +1 -1
  152. data/test/integration/note_annotations_test.rb +2 -2
  153. data/test/integration/reverse_match_job_test.rb +9 -9
  154. data/test/integration/search_test.rb +20 -10
  155. data/test/integration/tree_test.rb +5 -5
  156. data/test/integration/untranslated_test.rb +2 -2
  157. data/test/integration_test_helper.rb +7 -0
  158. data/test/models/concept_scheme_test.rb +6 -6
  159. data/test/models/concept_test.rb +38 -38
  160. data/test/models/deep_cloning_test.rb +6 -6
  161. data/test/models/note_test.rb +4 -4
  162. data/test/models/rdf_sync_test.rb +1 -1
  163. data/test/models/rdfapi_test.rb +24 -24
  164. data/test/models/skos_collection_import_test.rb +3 -3
  165. data/test/models/skos_import_test.rb +4 -4
  166. metadata +44 -32
  167. data/app/views/collections/_sidebar.html.erb +0 -20
  168. data/config/environments/heroku.rb +0 -81
  169. data/config/initializers/heroku.rb +0 -24
  170. data/config/secrets.yml +0 -35
  171. /data/{app/helpers → lib}/iqvoc_module_helper.rb +0 -0
  172. /data/{app/models/concerns → lib}/search_extension.rb +0 -0
data/Gemfile.lock CHANGED
@@ -1,96 +1,102 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actioncable (7.0.8)
5
- actionpack (= 7.0.8)
6
- activesupport (= 7.0.8)
4
+ action_text-trix (2.1.16)
5
+ railties
6
+ actioncable (8.1.2)
7
+ actionpack (= 8.1.2)
8
+ activesupport (= 8.1.2)
7
9
  nio4r (~> 2.0)
8
10
  websocket-driver (>= 0.6.1)
9
- actionmailbox (7.0.8)
10
- actionpack (= 7.0.8)
11
- activejob (= 7.0.8)
12
- activerecord (= 7.0.8)
13
- activestorage (= 7.0.8)
14
- activesupport (= 7.0.8)
15
- mail (>= 2.7.1)
16
- net-imap
17
- net-pop
18
- net-smtp
19
- actionmailer (7.0.8)
20
- actionpack (= 7.0.8)
21
- actionview (= 7.0.8)
22
- activejob (= 7.0.8)
23
- activesupport (= 7.0.8)
24
- mail (~> 2.5, >= 2.5.4)
25
- net-imap
26
- net-pop
27
- net-smtp
28
- rails-dom-testing (~> 2.0)
29
- actionpack (7.0.8)
30
- actionview (= 7.0.8)
31
- activesupport (= 7.0.8)
32
- rack (~> 2.0, >= 2.2.4)
11
+ zeitwerk (~> 2.6)
12
+ actionmailbox (8.1.2)
13
+ actionpack (= 8.1.2)
14
+ activejob (= 8.1.2)
15
+ activerecord (= 8.1.2)
16
+ activestorage (= 8.1.2)
17
+ activesupport (= 8.1.2)
18
+ mail (>= 2.8.0)
19
+ actionmailer (8.1.2)
20
+ actionpack (= 8.1.2)
21
+ actionview (= 8.1.2)
22
+ activejob (= 8.1.2)
23
+ activesupport (= 8.1.2)
24
+ mail (>= 2.8.0)
25
+ rails-dom-testing (~> 2.2)
26
+ actionpack (8.1.2)
27
+ actionview (= 8.1.2)
28
+ activesupport (= 8.1.2)
29
+ nokogiri (>= 1.8.5)
30
+ rack (>= 2.2.4)
31
+ rack-session (>= 1.0.1)
33
32
  rack-test (>= 0.6.3)
34
- rails-dom-testing (~> 2.0)
35
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
- actiontext (7.0.8)
37
- actionpack (= 7.0.8)
38
- activerecord (= 7.0.8)
39
- activestorage (= 7.0.8)
40
- activesupport (= 7.0.8)
33
+ rails-dom-testing (~> 2.2)
34
+ rails-html-sanitizer (~> 1.6)
35
+ useragent (~> 0.16)
36
+ actiontext (8.1.2)
37
+ action_text-trix (~> 2.1.15)
38
+ actionpack (= 8.1.2)
39
+ activerecord (= 8.1.2)
40
+ activestorage (= 8.1.2)
41
+ activesupport (= 8.1.2)
41
42
  globalid (>= 0.6.0)
42
43
  nokogiri (>= 1.8.5)
43
- actionview (7.0.8)
44
- activesupport (= 7.0.8)
44
+ actionview (8.1.2)
45
+ activesupport (= 8.1.2)
45
46
  builder (~> 3.1)
46
- erubi (~> 1.4)
47
- rails-dom-testing (~> 2.0)
48
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
- activejob (7.0.8)
50
- activesupport (= 7.0.8)
47
+ erubi (~> 1.11)
48
+ rails-dom-testing (~> 2.2)
49
+ rails-html-sanitizer (~> 1.6)
50
+ activejob (8.1.2)
51
+ activesupport (= 8.1.2)
51
52
  globalid (>= 0.3.6)
52
- activemodel (7.0.8)
53
- activesupport (= 7.0.8)
54
- activerecord (7.0.8)
55
- activemodel (= 7.0.8)
56
- activesupport (= 7.0.8)
57
- activestorage (7.0.8)
58
- actionpack (= 7.0.8)
59
- activejob (= 7.0.8)
60
- activerecord (= 7.0.8)
61
- activesupport (= 7.0.8)
53
+ activemodel (8.1.2)
54
+ activesupport (= 8.1.2)
55
+ activerecord (8.1.2)
56
+ activemodel (= 8.1.2)
57
+ activesupport (= 8.1.2)
58
+ timeout (>= 0.4.0)
59
+ activestorage (8.1.2)
60
+ actionpack (= 8.1.2)
61
+ activejob (= 8.1.2)
62
+ activerecord (= 8.1.2)
63
+ activesupport (= 8.1.2)
62
64
  marcel (~> 1.0)
63
- mini_mime (>= 1.1.0)
64
- activesupport (7.0.8)
65
- concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ activesupport (8.1.2)
66
+ base64
67
+ bigdecimal
68
+ concurrent-ruby (~> 1.0, >= 1.3.1)
69
+ connection_pool (>= 2.2.5)
70
+ drb
66
71
  i18n (>= 1.6, < 2)
72
+ json
73
+ logger (>= 1.4.2)
67
74
  minitest (>= 5.1)
68
- tzinfo (~> 2.0)
69
- addressable (2.8.6)
70
- public_suffix (>= 2.0.2, < 6.0)
71
- apipie-rails (1.3.0)
75
+ securerandom (>= 0.3)
76
+ tzinfo (~> 2.0, >= 2.0.5)
77
+ uri (>= 0.13.1)
78
+ addressable (2.8.8)
79
+ public_suffix (>= 2.0.2, < 8.0)
80
+ apipie-rails (1.5.0)
72
81
  actionpack (>= 5.0)
73
82
  activesupport (>= 5.0)
74
- authlogic (6.4.3)
75
- activemodel (>= 5.2, < 7.2)
76
- activerecord (>= 5.2, < 7.2)
77
- activesupport (>= 5.2, < 7.2)
83
+ authlogic (6.6.0)
84
+ activemodel (>= 7.2, < 8.2)
85
+ activerecord (>= 7.2, < 8.2)
86
+ activesupport (>= 7.2, < 8.2)
78
87
  request_store (~> 1.0)
88
+ base64 (0.3.0)
79
89
  bcp47_spec (0.2.1)
80
- better_errors (2.10.1)
81
- erubi (>= 1.0.0)
82
- rack (>= 0.9.0)
83
- rouge (>= 1.0.0)
84
- bigdecimal (3.1.6)
85
- bigdecimal (3.1.6-java)
90
+ benchmark (0.5.0)
91
+ bigdecimal (3.3.1)
86
92
  bindex (0.8.1)
87
- bootsnap (1.18.3)
93
+ bootsnap (1.21.0)
88
94
  msgpack (~> 1.2)
89
95
  bootstrap_form (4.5.0)
90
96
  actionpack (>= 5.2)
91
97
  activemodel (>= 5.2)
92
- builder (3.2.4)
93
- cancancan (3.5.0)
98
+ builder (3.3.0)
99
+ cancancan (3.6.1)
94
100
  capybara (3.40.0)
95
101
  addressable
96
102
  matrix
@@ -100,42 +106,54 @@ GEM
100
106
  rack-test (>= 0.6.3)
101
107
  regexp_parser (>= 1.5, < 3.0)
102
108
  xpath (~> 3.2)
103
- carrierwave (3.0.5)
109
+ carrierwave (3.1.2)
104
110
  activemodel (>= 6.0.0)
105
111
  activesupport (>= 6.0.0)
106
112
  addressable (~> 2.6)
107
113
  image_processing (~> 1.1)
108
114
  marcel (~> 1.0.0)
109
115
  ssrf_filter (~> 1.0)
110
- carrierwave-i18n (3.0.0)
116
+ carrierwave-i18n (3.1.0)
111
117
  carrierwave (>= 3.0.0, < 4)
112
- coderay (1.1.3)
113
- concurrent-ruby (1.2.3)
114
- connection_pool (2.4.1)
115
- crack (0.4.6)
118
+ concurrent-ruby (1.3.6)
119
+ connection_pool (3.0.2)
120
+ crack (1.0.1)
116
121
  bigdecimal
117
122
  rexml
118
123
  crass (1.0.6)
119
- cuprite (0.15)
124
+ csv (3.3.5)
125
+ cuprite (0.17)
120
126
  capybara (~> 3.0)
121
- ferrum (~> 0.14.0)
122
- database_cleaner (1.8.5)
123
- date (3.3.4)
124
- date (3.3.4-java)
125
- deep_cloneable (3.2.0)
126
- activerecord (>= 3.1.0, < 8)
127
- delayed_job (4.1.11)
128
- activesupport (>= 3.0, < 8.0)
129
- delayed_job_active_record (4.1.8)
130
- activerecord (>= 3.0, < 8.0)
127
+ ferrum (~> 0.17.0)
128
+ database_cleaner (2.1.0)
129
+ database_cleaner-active_record (>= 2, < 3)
130
+ database_cleaner-active_record (2.2.2)
131
+ activerecord (>= 5.a)
132
+ database_cleaner-core (~> 2.0)
133
+ database_cleaner-core (2.0.1)
134
+ date (3.5.1)
135
+ debug (1.11.1)
136
+ irb (~> 1.10)
137
+ reline (>= 0.3.8)
138
+ deep_cloneable (3.2.1)
139
+ activerecord (>= 3.1.0, < 9)
140
+ delayed_job (4.2.0)
141
+ activesupport (>= 3.0, < 9.0)
142
+ benchmark
143
+ logger
144
+ delayed_job_active_record (4.1.11)
145
+ activerecord (>= 3.0, < 9.0)
131
146
  delayed_job (>= 3.0, < 5)
132
- ebnf (2.4.0)
147
+ drb (2.2.3)
148
+ ebnf (2.6.0)
149
+ base64 (~> 0.2)
133
150
  htmlentities (~> 4.3)
134
151
  rdf (~> 3.3)
135
152
  scanf (~> 1.0)
136
- sxp (~> 1.3)
153
+ sxp (~> 2.0)
137
154
  unicode-types (~> 1.8)
138
- erubi (1.12.0)
155
+ erb (6.0.1)
156
+ erubi (1.13.1)
139
157
  faraday (1.10.3)
140
158
  faraday-em_http (~> 1.0)
141
159
  faraday-em_synchrony (~> 1.0)
@@ -149,62 +167,73 @@ GEM
149
167
  faraday-retry (~> 1.0)
150
168
  ruby2_keywords (>= 0.0.4)
151
169
  faraday-em_http (1.0.0)
152
- faraday-em_synchrony (1.0.0)
170
+ faraday-em_synchrony (1.0.1)
153
171
  faraday-excon (1.1.0)
154
172
  faraday-httpclient (1.0.1)
155
- faraday-multipart (1.0.4)
156
- multipart-post (~> 2)
157
- faraday-net_http (1.0.1)
173
+ faraday-multipart (1.2.0)
174
+ multipart-post (~> 2.0)
175
+ faraday-net_http (1.0.2)
158
176
  faraday-net_http_persistent (1.2.0)
159
177
  faraday-patron (1.0.0)
160
178
  faraday-rack (1.0.0)
161
179
  faraday-retry (1.0.3)
162
- faraday_middleware (1.2.0)
180
+ faraday_middleware (1.2.1)
163
181
  faraday (~> 1.0)
164
182
  faucet_pipeline_rails (1.0.1)
165
183
  rails (>= 4.2.10)
166
- ferrum (0.14)
184
+ ferrum (0.17.1)
167
185
  addressable (~> 2.5)
186
+ base64 (~> 0.2)
168
187
  concurrent-ruby (~> 1.1)
169
188
  webrick (~> 1.7)
170
- websocket-driver (>= 0.6, < 0.8)
171
- ffi (1.16.3)
172
- ffi (1.16.3-java)
173
- ffi-compiler (1.0.1)
174
- ffi (>= 1.0.0)
189
+ websocket-driver (~> 0.7)
190
+ ffi (1.17.3-aarch64-linux-gnu)
191
+ ffi (1.17.3-aarch64-linux-musl)
192
+ ffi (1.17.3-arm-linux-gnu)
193
+ ffi (1.17.3-arm-linux-musl)
194
+ ffi (1.17.3-arm64-darwin)
195
+ ffi (1.17.3-x86_64-darwin)
196
+ ffi (1.17.3-x86_64-linux-gnu)
197
+ ffi (1.17.3-x86_64-linux-musl)
198
+ ffi-compiler (1.3.2)
199
+ ffi (>= 1.15.5)
175
200
  rake
176
- globalid (1.2.1)
201
+ globalid (1.3.0)
177
202
  activesupport (>= 6.1)
178
- haml (6.3.0)
203
+ haml (6.4.0)
179
204
  temple (>= 0.8.2)
180
205
  thor
181
206
  tilt
182
207
  hamster (3.0.0)
183
208
  concurrent-ruby (~> 1.0)
184
- hashdiff (1.1.0)
185
- htmlentities (4.3.4)
186
- i18n (1.14.1)
209
+ hashdiff (1.2.1)
210
+ htmlentities (4.4.2)
211
+ i18n (1.14.8)
187
212
  concurrent-ruby (~> 1.0)
188
- image_processing (1.12.2)
189
- mini_magick (>= 4.9.5, < 5)
213
+ image_processing (1.14.0)
214
+ mini_magick (>= 4.9.5, < 6)
190
215
  ruby-vips (>= 2.0.17, < 3)
191
- iq_rdf (0.2.0)
216
+ io-console (0.8.2)
217
+ iq_rdf (0.2.1)
192
218
  activesupport
193
219
  builder
194
220
  bundler
195
221
  iq_triplestorage (0.2.2)
196
- jar-dependencies (0.4.1)
197
- json (2.7.1)
198
- json (2.7.1-java)
222
+ irb (1.16.0)
223
+ pp (>= 0.6.0)
224
+ rdoc (>= 4.0.0)
225
+ reline (>= 0.4.2)
226
+ json (2.18.0)
199
227
  json-canonicalization (1.0.0)
200
- json-ld (3.3.1)
228
+ json-ld (3.3.2)
201
229
  htmlentities (~> 4.3)
202
230
  json-canonicalization (~> 1.0)
203
231
  link_header (~> 0.0, >= 0.0.8)
204
232
  multi_json (~> 1.15)
205
233
  rack (>= 2.2, < 4)
206
234
  rdf (~> 3.3)
207
- json-ld-preloaded (3.3.0)
235
+ rexml (~> 3.2)
236
+ json-ld-preloaded (3.3.2)
208
237
  json-ld (~> 3.3)
209
238
  rdf (~> 3.3)
210
239
  kaminari (1.2.2)
@@ -219,25 +248,25 @@ GEM
219
248
  activerecord
220
249
  kaminari-core (= 1.2.2)
221
250
  kaminari-core (1.2.2)
222
- ld-patch (3.3.0)
223
- ebnf (~> 2.4)
251
+ ld-patch (3.3.1)
252
+ ebnf (~> 2.6)
224
253
  rdf (~> 3.3)
225
254
  rdf-xsd (~> 3.3)
226
255
  sparql (~> 3.3)
227
- sxp (~> 1.3)
256
+ sxp (~> 2.0)
228
257
  link_header (0.0.8)
229
- linkeddata (3.3.1)
230
- json-ld (~> 3.3)
231
- json-ld-preloaded (~> 3.3)
232
- ld-patch (~> 3.3)
233
- nokogiri (~> 1.15, >= 1.15.4)
234
- rdf (~> 3.2, >= 3.2.1)
235
- rdf-aggregate-repo (~> 3.2)
258
+ linkeddata (3.3.3)
259
+ json-ld (~> 3.3, >= 3.3.2)
260
+ json-ld-preloaded (~> 3.3, >= 3.3.1)
261
+ ld-patch (~> 3.3, >= 3.3.1)
262
+ nokogiri (~> 1.18, >= 1.18.8)
263
+ rdf (~> 3.3, >= 3.3.2)
264
+ rdf-aggregate-repo (~> 3.3)
236
265
  rdf-hamster-repo (~> 3.3)
237
266
  rdf-isomorphic (~> 3.3)
238
267
  rdf-json (~> 3.3)
239
268
  rdf-microdata (~> 3.3)
240
- rdf-n3 (~> 3.3)
269
+ rdf-n3 (~> 3.3, >= 3.3.1)
241
270
  rdf-normalize (~> 0.7)
242
271
  rdf-ordered-repo (~> 3.3)
243
272
  rdf-rdfa (~> 3.3)
@@ -246,128 +275,138 @@ GEM
246
275
  rdf-tabular (~> 3.3)
247
276
  rdf-trig (~> 3.3)
248
277
  rdf-trix (~> 3.3)
249
- rdf-turtle (~> 3.3)
250
- rdf-vocab (~> 3.3)
278
+ rdf-turtle (~> 3.3, >= 3.3.1)
279
+ rdf-vocab (~> 3.3, >= 3.3.2)
251
280
  rdf-xsd (~> 3.3)
252
- shacl (~> 0.4)
253
- shex (~> 0.8)
254
- sparql (~> 3.3)
281
+ shacl (~> 0.4, >= 0.4.2)
282
+ shex (~> 0.8, >= 0.8.1)
283
+ sparql (~> 3.3, >= 3.3.2)
255
284
  sparql-client (~> 3.3)
256
- yaml-ld (~> 0.0)
257
- listen (3.8.0)
285
+ yaml-ld (~> 0.0, >= 0.0.3)
286
+ listen (3.9.0)
258
287
  rb-fsevent (~> 0.10, >= 0.10.3)
259
288
  rb-inotify (~> 0.9, >= 0.9.10)
260
- logger (1.6.0)
261
- loofah (2.22.0)
289
+ logger (1.7.0)
290
+ loofah (2.25.0)
262
291
  crass (~> 1.0.2)
263
292
  nokogiri (>= 1.12.0)
264
- mail (2.8.1)
293
+ mail (2.9.0)
294
+ logger
265
295
  mini_mime (>= 0.1.1)
266
296
  net-imap
267
297
  net-pop
268
298
  net-smtp
269
- marcel (1.0.2)
299
+ marcel (1.0.4)
270
300
  maruku (0.7.3)
271
- matrix (0.4.2)
272
- method_source (1.0.0)
273
- mini_magick (4.12.0)
301
+ matrix (0.4.3)
302
+ mini_magick (5.3.1)
303
+ logger
274
304
  mini_mime (1.1.5)
275
- mini_portile2 (2.8.5)
276
- minitest (5.21.2)
277
- msgpack (1.7.2)
278
- msgpack (1.7.2-java)
279
- multi_json (1.15.0)
280
- multipart-post (2.3.0)
281
- net-http (0.4.1)
282
- uri
283
- net-http-persistent (4.0.2)
284
- connection_pool (~> 2.2)
285
- net-imap (0.4.9.1)
305
+ minitest (5.27.0)
306
+ msgpack (1.8.0)
307
+ multi_json (1.19.1)
308
+ multipart-post (2.4.1)
309
+ net-http-persistent (4.0.8)
310
+ connection_pool (>= 2.2.4, < 4)
311
+ net-imap (0.6.2)
286
312
  date
287
313
  net-protocol
288
314
  net-pop (0.1.2)
289
315
  net-protocol
290
316
  net-protocol (0.2.2)
291
317
  timeout
292
- net-smtp (0.4.0.1)
318
+ net-smtp (0.5.1)
293
319
  net-protocol
294
- nio4r (2.7.0)
295
- nio4r (2.7.0-java)
296
- nokogiri (1.16.0)
297
- mini_portile2 (~> 2.8.2)
320
+ nio4r (2.7.5)
321
+ nokogiri (1.19.0-aarch64-linux-gnu)
322
+ racc (~> 1.4)
323
+ nokogiri (1.19.0-aarch64-linux-musl)
324
+ racc (~> 1.4)
325
+ nokogiri (1.19.0-arm-linux-gnu)
326
+ racc (~> 1.4)
327
+ nokogiri (1.19.0-arm-linux-musl)
298
328
  racc (~> 1.4)
299
- nokogiri (1.16.0-java)
329
+ nokogiri (1.19.0-arm64-darwin)
300
330
  racc (~> 1.4)
301
- pg (1.5.4)
302
- pry (0.14.2)
303
- coderay (~> 1.1)
304
- method_source (~> 1.0)
305
- pry (0.14.2-java)
306
- coderay (~> 1.1)
307
- method_source (~> 1.0)
308
- spoon (~> 0.0)
309
- pry-rails (0.3.9)
310
- pry (>= 0.10.4)
311
- psych (5.1.2)
331
+ nokogiri (1.19.0-x86_64-darwin)
332
+ racc (~> 1.4)
333
+ nokogiri (1.19.0-x86_64-linux-gnu)
334
+ racc (~> 1.4)
335
+ nokogiri (1.19.0-x86_64-linux-musl)
336
+ racc (~> 1.4)
337
+ ostruct (0.6.3)
338
+ pg (1.6.3)
339
+ pg (1.6.3-aarch64-linux)
340
+ pg (1.6.3-aarch64-linux-musl)
341
+ pg (1.6.3-arm64-darwin)
342
+ pg (1.6.3-x86_64-darwin)
343
+ pg (1.6.3-x86_64-linux)
344
+ pg (1.6.3-x86_64-linux-musl)
345
+ pp (0.6.3)
346
+ prettyprint
347
+ prettyprint (0.2.0)
348
+ psych (5.3.1)
349
+ date
312
350
  stringio
313
- psych (5.1.2-java)
314
- jar-dependencies (>= 0.1.7)
315
- public_suffix (5.0.4)
316
- puma (6.4.2)
351
+ public_suffix (7.0.2)
352
+ puma (6.6.1)
317
353
  nio4r (~> 2.0)
318
- puma (6.4.2-java)
319
- nio4r (~> 2.0)
320
- racc (1.7.3)
321
- racc (1.7.3-java)
322
- rack (2.2.8)
323
- rack-mini-profiler (3.3.0)
354
+ racc (1.8.1)
355
+ rack (3.2.4)
356
+ rack-mini-profiler (4.0.1)
324
357
  rack (>= 1.2.0)
325
- rack-test (2.1.0)
358
+ rack-session (2.1.1)
359
+ base64 (>= 0.1.0)
360
+ rack (>= 3.0.0)
361
+ rack-test (2.2.0)
326
362
  rack (>= 1.3)
327
- rails (7.0.8)
328
- actioncable (= 7.0.8)
329
- actionmailbox (= 7.0.8)
330
- actionmailer (= 7.0.8)
331
- actionpack (= 7.0.8)
332
- actiontext (= 7.0.8)
333
- actionview (= 7.0.8)
334
- activejob (= 7.0.8)
335
- activemodel (= 7.0.8)
336
- activerecord (= 7.0.8)
337
- activestorage (= 7.0.8)
338
- activesupport (= 7.0.8)
363
+ rackup (2.3.1)
364
+ rack (>= 3)
365
+ rails (8.1.2)
366
+ actioncable (= 8.1.2)
367
+ actionmailbox (= 8.1.2)
368
+ actionmailer (= 8.1.2)
369
+ actionpack (= 8.1.2)
370
+ actiontext (= 8.1.2)
371
+ actionview (= 8.1.2)
372
+ activejob (= 8.1.2)
373
+ activemodel (= 8.1.2)
374
+ activerecord (= 8.1.2)
375
+ activestorage (= 8.1.2)
376
+ activesupport (= 8.1.2)
339
377
  bundler (>= 1.15.0)
340
- railties (= 7.0.8)
341
- rails-dom-testing (2.2.0)
378
+ railties (= 8.1.2)
379
+ rails-dom-testing (2.3.0)
342
380
  activesupport (>= 5.0.0)
343
381
  minitest
344
382
  nokogiri (>= 1.6)
345
- rails-html-sanitizer (1.6.0)
383
+ rails-html-sanitizer (1.6.2)
346
384
  loofah (~> 2.21)
347
- nokogiri (~> 1.14)
348
- rails_12factor (0.0.3)
349
- rails_serve_static_assets
350
- rails_stdout_logging
385
+ 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)
351
386
  rails_autolink (1.1.8)
352
387
  actionview (> 3.1)
353
388
  activesupport (> 3.1)
354
389
  railties (> 3.1)
355
- rails_serve_static_assets (0.0.5)
356
- rails_stdout_logging (0.0.5)
357
- railties (7.0.8)
358
- actionpack (= 7.0.8)
359
- activesupport (= 7.0.8)
360
- method_source
390
+ railties (8.1.2)
391
+ actionpack (= 8.1.2)
392
+ activesupport (= 8.1.2)
393
+ irb (~> 1.13)
394
+ rackup (>= 1.0.0)
361
395
  rake (>= 12.2)
362
- thor (~> 1.0)
363
- zeitwerk (~> 2.5)
364
- rake (13.1.0)
396
+ thor (~> 1.0, >= 1.2.2)
397
+ tsort (>= 0.2)
398
+ zeitwerk (~> 2.6)
399
+ rake (13.3.1)
365
400
  rb-fsevent (0.11.2)
366
- rb-inotify (0.10.1)
401
+ rb-inotify (0.11.1)
367
402
  ffi (~> 1.0)
368
- rdf (3.3.1)
403
+ rdf (3.3.4)
369
404
  bcp47_spec (~> 0.2)
405
+ bigdecimal (~> 3.1, >= 3.1.5)
370
406
  link_header (~> 0.0, >= 0.0.8)
407
+ logger (~> 1.5)
408
+ ostruct (~> 0.6)
409
+ readline (~> 0.0)
371
410
  rdf-aggregate-repo (3.3.0)
372
411
  rdf (~> 3.3)
373
412
  rdf-hamster-repo (3.3.0)
@@ -383,11 +422,11 @@ GEM
383
422
  rdf (~> 3.3)
384
423
  rdf-rdfa (~> 3.3)
385
424
  rdf-xsd (~> 3.3)
386
- rdf-n3 (3.3.0)
387
- ebnf (~> 2.4)
425
+ rdf-n3 (3.3.1)
426
+ ebnf (~> 2.5)
388
427
  rdf (~> 3.3)
389
428
  sparql (~> 3.3)
390
- sxp (~> 1.3)
429
+ sxp (~> 2.0)
391
430
  rdf-normalize (0.7.0)
392
431
  rdf (~> 3.3)
393
432
  rdf-ordered-repo (3.3.0)
@@ -421,79 +460,91 @@ GEM
421
460
  rdf-trix (3.3.0)
422
461
  rdf (~> 3.3)
423
462
  rdf-xsd (~> 3.3)
424
- rdf-turtle (3.3.0)
425
- ebnf (~> 2.4)
463
+ rdf-turtle (3.3.1)
464
+ base64 (~> 0.2)
465
+ bigdecimal (~> 3.1, >= 3.1.5)
466
+ ebnf (~> 2.5)
426
467
  rdf (~> 3.3)
427
- rdf-vocab (3.3.0)
468
+ rdf-vocab (3.3.3)
428
469
  rdf (~> 3.3)
429
470
  rdf-xsd (3.3.0)
430
471
  rdf (~> 3.3)
431
472
  rexml (~> 3.2)
432
- regexp_parser (2.9.0)
433
- request_store (1.5.1)
473
+ rdoc (7.1.0)
474
+ erb
475
+ psych (>= 4.0.0)
476
+ tsort
477
+ readline (0.0.4)
478
+ reline
479
+ regexp_parser (2.11.3)
480
+ reline (0.6.3)
481
+ io-console (~> 0.5)
482
+ request_store (1.7.0)
434
483
  rack (>= 1.4)
435
- rexml (3.2.6)
436
- rouge (4.2.0)
437
- ruby-vips (2.2.0)
484
+ rexml (3.4.4)
485
+ ruby-vips (2.3.0)
438
486
  ffi (~> 1.12)
487
+ logger
439
488
  ruby2_keywords (0.0.5)
440
489
  scanf (1.0.0)
441
- scrypt (3.0.7)
490
+ scrypt (3.1.0)
442
491
  ffi-compiler (>= 1.0, < 2.0)
443
- shacl (0.4.1)
492
+ rake (~> 13)
493
+ securerandom (0.4.1)
494
+ shacl (0.4.3)
444
495
  json-ld (~> 3.3)
445
496
  rdf (~> 3.3)
446
497
  sparql (~> 3.3)
447
- sxp (~> 1.2)
448
- shex (0.8.0)
449
- ebnf (~> 2.4)
498
+ sxp (~> 2.0)
499
+ shex (0.8.1)
500
+ ebnf (~> 2.5)
450
501
  htmlentities (~> 4.3)
451
502
  json-ld (~> 3.3)
452
503
  json-ld-preloaded (~> 3.3)
453
504
  rdf (~> 3.3)
454
505
  rdf-xsd (~> 3.3)
455
506
  sparql (~> 3.3)
456
- sxp (~> 1.3)
457
- sparql (3.3.0)
507
+ sxp (~> 2.0)
508
+ sparql (3.3.2)
458
509
  builder (~> 3.2, >= 3.2.4)
459
- ebnf (~> 2.4)
510
+ ebnf (~> 2.5)
460
511
  logger (~> 1.5)
461
512
  rdf (~> 3.3)
462
513
  rdf-aggregate-repo (~> 3.3)
463
514
  rdf-xsd (~> 3.3)
515
+ readline (~> 0.0)
464
516
  sparql-client (~> 3.3)
465
- sxp (~> 1.3)
517
+ sxp (~> 2.0)
466
518
  sparql-client (3.3.0)
467
519
  net-http-persistent (~> 4.0, >= 4.0.2)
468
520
  rdf (~> 3.3)
469
- spoon (0.0.6)
470
- ffi
471
- ssrf_filter (1.1.2)
472
- stringio (3.1.0)
473
- sxp (1.3.0)
521
+ ssrf_filter (1.3.0)
522
+ stringio (3.2.0)
523
+ sxp (2.0.0)
474
524
  matrix (~> 0.4)
475
525
  rdf (~> 3.3)
476
- temple (0.10.3)
477
- thor (1.3.0)
478
- tilt (2.3.0)
479
- timeout (0.4.1)
526
+ temple (0.10.4)
527
+ thor (1.5.0)
528
+ tilt (2.7.0)
529
+ timeout (0.6.0)
530
+ tsort (0.2.0)
480
531
  tzinfo (2.0.6)
481
532
  concurrent-ruby (~> 1.0)
482
- unicode-types (1.9.0)
483
- uri (0.13.0)
533
+ unicode-types (1.11.0)
534
+ uri (1.1.1)
535
+ useragent (0.16.11)
484
536
  web-console (4.2.1)
485
537
  actionview (>= 6.0.0)
486
538
  activemodel (>= 6.0.0)
487
539
  bindex (>= 0.4.0)
488
540
  railties (>= 6.0.0)
489
- webmock (3.19.1)
541
+ webmock (3.26.1)
490
542
  addressable (>= 2.8.0)
491
543
  crack (>= 0.3.2)
492
544
  hashdiff (>= 0.4.0, < 2.0.0)
493
- webrick (1.8.1)
494
- websocket-driver (0.7.6)
495
- websocket-extensions (>= 0.1.0)
496
- websocket-driver (0.7.6-java)
545
+ webrick (1.9.2)
546
+ websocket-driver (0.8.0)
547
+ base64
497
548
  websocket-extensions (>= 0.1.0)
498
549
  websocket-extensions (0.1.5)
499
550
  xpath (3.2.0)
@@ -503,27 +554,34 @@ GEM
503
554
  psych (>= 3.3)
504
555
  rdf (~> 3.3)
505
556
  rdf-xsd (~> 3.3)
506
- zeitwerk (2.6.12)
557
+ zeitwerk (2.7.4)
507
558
 
508
559
  PLATFORMS
509
- java
510
- ruby
560
+ aarch64-linux-gnu
561
+ aarch64-linux-musl
562
+ arm-linux-gnu
563
+ arm-linux-musl
564
+ arm64-darwin
565
+ x86_64-darwin
566
+ x86_64-linux-gnu
567
+ x86_64-linux-musl
511
568
 
512
569
  DEPENDENCIES
513
570
  apipie-rails
514
571
  authlogic
515
- better_errors
516
572
  bootsnap
517
573
  bootstrap_form (~> 4.0)
518
574
  cancancan
519
575
  capybara
520
576
  carrierwave
521
577
  carrierwave-i18n
578
+ csv
522
579
  cuprite
523
- database_cleaner (~> 1.8.5)
580
+ database_cleaner
581
+ debug
524
582
  deep_cloneable
525
583
  delayed_job_active_record
526
- faraday
584
+ faraday (= 1.10.3)
527
585
  faraday_middleware
528
586
  faucet_pipeline_rails
529
587
  iq_rdf
@@ -533,14 +591,12 @@ DEPENDENCIES
533
591
  linkeddata
534
592
  listen (~> 3.3)
535
593
  maruku
536
- net-http
594
+ minitest (< 6)
537
595
  nokogiri
538
596
  pg
539
- pry-rails
540
- puma (< 7.0)
597
+ puma (>= 5.0)
541
598
  rack-mini-profiler
542
- rails (~> 7.0.8)
543
- rails_12factor
599
+ rails (~> 8.1.2)
544
600
  rails_autolink
545
601
  rdf-vocab
546
602
  scrypt
@@ -548,4 +604,4 @@ DEPENDENCIES
548
604
  webmock
549
605
 
550
606
  BUNDLED WITH
551
- 2.3.26
607
+ 2.6.4