invenio-app-ils 1.0.0a54__py2.py3-none-any.whl → 6.1.0__py2.py3-none-any.whl

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 (331) hide show
  1. invenio_app_ils/__init__.py +2 -2
  2. invenio_app_ils/acquisition/api.py +3 -1
  3. invenio_app_ils/acquisition/config.py +10 -21
  4. invenio_app_ils/acquisition/jsonresolvers/order_order_lines.py +1 -0
  5. invenio_app_ils/acquisition/mappings/os-v1/acq_orders/order-v1.0.0.json +364 -0
  6. invenio_app_ils/acquisition/mappings/os-v2/__init__.py +0 -0
  7. invenio_app_ils/acquisition/mappings/os-v2/acq_orders/order-v1.0.0.json +364 -0
  8. invenio_app_ils/acquisition/mappings/v7/acq_orders/order-v1.0.0.json +14 -0
  9. invenio_app_ils/acquisition/search.py +5 -15
  10. invenio_app_ils/assets/semantic-ui/less/theme.config +103 -0
  11. invenio_app_ils/assets/semantic-ui/templates/.gitkeep +0 -0
  12. invenio_app_ils/circulation/api.py +153 -67
  13. invenio_app_ils/circulation/config.py +29 -25
  14. invenio_app_ils/circulation/indexer.py +14 -19
  15. invenio_app_ils/circulation/loaders/__init__.py +2 -0
  16. invenio_app_ils/circulation/loaders/schemas/json/loan_checkout.py +2 -3
  17. invenio_app_ils/circulation/loaders/schemas/json/loan_request.py +82 -16
  18. invenio_app_ils/circulation/loaders/schemas/json/loan_self_checkout.py +19 -0
  19. invenio_app_ils/circulation/notifications/api.py +23 -19
  20. invenio_app_ils/circulation/notifications/messages.py +6 -6
  21. invenio_app_ils/circulation/notifications/tasks.py +1 -2
  22. invenio_app_ils/circulation/receivers.py +2 -5
  23. invenio_app_ils/circulation/search.py +23 -22
  24. invenio_app_ils/circulation/serializers/__init__.py +2 -2
  25. invenio_app_ils/circulation/serializers/csv.py +1 -3
  26. invenio_app_ils/circulation/serializers/custom_fields.py +5 -9
  27. invenio_app_ils/circulation/serializers/json.py +2 -6
  28. invenio_app_ils/circulation/serializers/response.py +12 -12
  29. invenio_app_ils/circulation/stats/views.py +5 -15
  30. invenio_app_ils/circulation/tasks.py +2 -6
  31. invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/self_checkout.html +19 -0
  32. invenio_app_ils/circulation/templates/invenio_app_ils_circulation/notifications/update_dates.html +19 -0
  33. invenio_app_ils/circulation/utils.py +23 -17
  34. invenio_app_ils/circulation/views.py +103 -39
  35. invenio_app_ils/cli.py +220 -260
  36. invenio_app_ils/closures/api.py +72 -7
  37. invenio_app_ils/closures/serializers/__init__.py +16 -0
  38. invenio_app_ils/closures/serializers/response.py +35 -0
  39. invenio_app_ils/closures/serializers/schema.py +28 -0
  40. invenio_app_ils/closures/tasks.py +4 -11
  41. invenio_app_ils/closures/views.py +66 -0
  42. invenio_app_ils/config.py +207 -150
  43. invenio_app_ils/document_requests/api.py +6 -21
  44. invenio_app_ils/document_requests/loaders/__init__.py +4 -12
  45. invenio_app_ils/document_requests/mappings/{v6 → os-v1}/__init__.py +2 -2
  46. invenio_app_ils/document_requests/mappings/os-v1/document_requests/document_request-v1.0.0.json +196 -0
  47. invenio_app_ils/document_requests/mappings/os-v2/__init__.py +8 -0
  48. invenio_app_ils/document_requests/mappings/os-v2/document_requests/document_request-v1.0.0.json +196 -0
  49. invenio_app_ils/document_requests/notifications/api.py +2 -7
  50. invenio_app_ils/document_requests/notifications/messages.py +3 -7
  51. invenio_app_ils/document_requests/search.py +2 -6
  52. invenio_app_ils/document_requests/views.py +4 -10
  53. invenio_app_ils/documents/api.py +19 -25
  54. invenio_app_ils/documents/indexer.py +13 -20
  55. invenio_app_ils/documents/jsonresolvers/document_circulation.py +11 -33
  56. invenio_app_ils/documents/jsonresolvers/document_eitem.py +1 -0
  57. invenio_app_ils/documents/jsonresolvers/document_item.py +8 -9
  58. invenio_app_ils/documents/jsonresolvers/document_stock.py +7 -7
  59. invenio_app_ils/documents/loaders/jsonschemas/document.py +3 -14
  60. invenio_app_ils/documents/mappings/{v6 → os-v1}/__init__.py +1 -1
  61. invenio_app_ils/documents/mappings/os-v1/documents/document-v1.0.0.json +932 -0
  62. invenio_app_ils/documents/mappings/os-v1/documents/document-v2.0.0.json +1066 -0
  63. invenio_app_ils/documents/mappings/os-v2/__init__.py +8 -0
  64. invenio_app_ils/documents/mappings/os-v2/documents/document-v1.0.0.json +932 -0
  65. invenio_app_ils/documents/mappings/os-v2/documents/document-v2.0.0.json +1066 -0
  66. invenio_app_ils/documents/mappings/v7/documents/document-v1.0.0.json +102 -11
  67. invenio_app_ils/documents/mappings/v7/documents/document-v2.0.0.json +1066 -0
  68. invenio_app_ils/documents/schemas/documents/document-v2.0.0.json +732 -0
  69. invenio_app_ils/eitems/api.py +41 -7
  70. invenio_app_ils/eitems/loaders/jsonschemas/eitems.py +6 -6
  71. invenio_app_ils/eitems/mappings/{v6 → os-v1}/__init__.py +1 -1
  72. invenio_app_ils/eitems/mappings/os-v1/eitems/eitem-v1.0.0.json +139 -0
  73. invenio_app_ils/eitems/mappings/os-v1/eitems/eitem-v2.0.0.json +142 -0
  74. invenio_app_ils/eitems/mappings/os-v1/eitems/eitem-v3.0.0.json +179 -0
  75. invenio_app_ils/{series/mappings/v6 → eitems/mappings/os-v2}/__init__.py +1 -1
  76. invenio_app_ils/eitems/mappings/os-v2/eitems/eitem-v1.0.0.json +139 -0
  77. invenio_app_ils/eitems/mappings/os-v2/eitems/eitem-v2.0.0.json +142 -0
  78. invenio_app_ils/eitems/mappings/os-v2/eitems/eitem-v3.0.0.json +179 -0
  79. invenio_app_ils/eitems/mappings/v7/eitems/eitem-v1.0.0.json +12 -2
  80. invenio_app_ils/eitems/mappings/v7/eitems/eitem-v2.0.0.json +142 -0
  81. invenio_app_ils/eitems/mappings/v7/eitems/eitem-v3.0.0.json +179 -0
  82. invenio_app_ils/eitems/schemas/eitems/eitem-v2.0.0.json +120 -0
  83. invenio_app_ils/eitems/schemas/eitems/eitem-v3.0.0.json +120 -0
  84. invenio_app_ils/eitems/search.py +3 -9
  85. invenio_app_ils/errors.py +119 -6
  86. invenio_app_ils/ext.py +15 -18
  87. invenio_app_ils/facets.py +13 -15
  88. invenio_app_ils/files/receivers.py +1 -1
  89. invenio_app_ils/files/views.py +1 -2
  90. invenio_app_ils/ill/api.py +1 -2
  91. invenio_app_ils/ill/config.py +10 -16
  92. invenio_app_ils/ill/jsonresolvers/borrowing_request_document.py +2 -3
  93. invenio_app_ils/ill/jsonresolvers/borrowing_request_patron.py +1 -3
  94. invenio_app_ils/ill/jsonresolvers/borrowing_request_provider.py +1 -3
  95. invenio_app_ils/ill/loaders/__init__.py +3 -9
  96. invenio_app_ils/ill/loaders/jsonschemas/patron_loan_actions.py +1 -8
  97. invenio_app_ils/ill/loaders/jsonschemas/patron_loan_extension_actions.py +3 -8
  98. invenio_app_ils/ill/mappings/{v6 → os-v1}/__init__.py +1 -1
  99. invenio_app_ils/ill/mappings/os-v1/ill_borrowing_requests/borrowing_request-v1.0.0.json +254 -0
  100. invenio_app_ils/{acquisition/mappings/v6 → ill/mappings/os-v2}/__init__.py +1 -1
  101. invenio_app_ils/ill/mappings/os-v2/ill_borrowing_requests/borrowing_request-v1.0.0.json +254 -0
  102. invenio_app_ils/ill/mappings/v7/ill_borrowing_requests/borrowing_request-v1.0.0.json +14 -0
  103. invenio_app_ils/ill/notifications/api.py +1 -4
  104. invenio_app_ils/ill/search.py +3 -9
  105. invenio_app_ils/ill/serializers/__init__.py +1 -3
  106. invenio_app_ils/ill/views.py +2 -4
  107. invenio_app_ils/internal_locations/api.py +1 -4
  108. invenio_app_ils/internal_locations/mappings/{v6 → os-v1}/__init__.py +1 -1
  109. invenio_app_ils/internal_locations/mappings/os-v1/internal_locations/internal_location-v1.0.0.json +108 -0
  110. invenio_app_ils/internal_locations/mappings/os-v2/__init__.py +8 -0
  111. invenio_app_ils/internal_locations/mappings/os-v2/internal_locations/internal_location-v1.0.0.json +108 -0
  112. invenio_app_ils/internal_locations/search.py +1 -3
  113. invenio_app_ils/items/api.py +18 -15
  114. invenio_app_ils/items/indexer.py +1 -3
  115. invenio_app_ils/items/jsonresolvers/item_document.py +1 -1
  116. invenio_app_ils/items/jsonresolvers/item_internal_location.py +2 -6
  117. invenio_app_ils/items/loaders/jsonschemas/items.py +2 -0
  118. {tests/api/circulation → invenio_app_ils/items/mappings/os-v1}/__init__.py +1 -1
  119. invenio_app_ils/items/mappings/os-v1/items/item-v1.0.0.json +285 -0
  120. invenio_app_ils/items/mappings/os-v1/items/item-v2.0.0.json +326 -0
  121. {tests/api/ill → invenio_app_ils/items/mappings/os-v2}/__init__.py +1 -1
  122. invenio_app_ils/items/mappings/os-v2/items/item-v1.0.0.json +285 -0
  123. invenio_app_ils/items/mappings/os-v2/items/item-v2.0.0.json +326 -0
  124. invenio_app_ils/items/mappings/v7/items/item-v1.0.0.json +11 -0
  125. invenio_app_ils/items/mappings/v7/items/item-v2.0.0.json +326 -0
  126. invenio_app_ils/items/schemas/items/item-v1.0.0.json +22 -0
  127. invenio_app_ils/items/schemas/items/item-v2.0.0.json +172 -0
  128. invenio_app_ils/items/search.py +18 -11
  129. invenio_app_ils/items/serializers/item.py +7 -6
  130. invenio_app_ils/literature/api.py +1 -3
  131. invenio_app_ils/literature/search.py +3 -5
  132. invenio_app_ils/literature/serializers/csv.py +1 -3
  133. invenio_app_ils/literature/serializers/json.py +1 -3
  134. invenio_app_ils/locations/api.py +2 -4
  135. invenio_app_ils/locations/indexer.py +3 -9
  136. invenio_app_ils/locations/loaders/__init__.py +1 -3
  137. invenio_app_ils/locations/loaders/jsonschemas/location.py +4 -11
  138. invenio_app_ils/locations/mappings/{v6 → os-v1}/__init__.py +1 -1
  139. invenio_app_ils/locations/mappings/os-v1/locations/location-v1.0.0.json +90 -0
  140. invenio_app_ils/locations/mappings/os-v2/__init__.py +8 -0
  141. invenio_app_ils/locations/mappings/os-v2/locations/location-v1.0.0.json +90 -0
  142. invenio_app_ils/notifications/messages.py +4 -3
  143. invenio_app_ils/notifications/tasks.py +1 -3
  144. invenio_app_ils/notifications/views.py +2 -2
  145. invenio_app_ils/patrons/anonymization.py +53 -32
  146. invenio_app_ils/patrons/api.py +3 -5
  147. invenio_app_ils/patrons/cli.py +1 -2
  148. invenio_app_ils/patrons/indexer.py +4 -13
  149. invenio_app_ils/patrons/mappings/os-v1/__init__.py +8 -0
  150. invenio_app_ils/patrons/mappings/os-v1/patrons/patron-v1.0.0.json +42 -0
  151. invenio_app_ils/patrons/mappings/os-v2/__init__.py +8 -0
  152. invenio_app_ils/patrons/mappings/os-v2/patrons/patron-v1.0.0.json +42 -0
  153. invenio_app_ils/patrons/views.py +4 -14
  154. invenio_app_ils/permissions.py +93 -35
  155. invenio_app_ils/providers/api.py +2 -6
  156. invenio_app_ils/providers/config.py +11 -19
  157. invenio_app_ils/providers/indexer.py +2 -6
  158. invenio_app_ils/providers/mappings/{v6 → os-v1}/__init__.py +1 -1
  159. invenio_app_ils/providers/mappings/os-v1/providers/provider-v1.0.0.json +57 -0
  160. invenio_app_ils/providers/mappings/os-v2/__init__.py +8 -0
  161. invenio_app_ils/providers/mappings/os-v2/providers/provider-v1.0.0.json +57 -0
  162. invenio_app_ils/providers/mappings/v7/__init__.py +1 -1
  163. invenio_app_ils/providers/proxies.py +1 -3
  164. invenio_app_ils/records/api.py +3 -9
  165. invenio_app_ils/records/loaders/schemas/changed_by.py +1 -3
  166. invenio_app_ils/records/loaders/schemas/identifiers.py +23 -0
  167. invenio_app_ils/records/metadata_extensions.py +1 -4
  168. invenio_app_ils/records/permissions.py +8 -2
  169. invenio_app_ils/records/serializers/__init__.py +1 -4
  170. invenio_app_ils/records/views.py +4 -7
  171. invenio_app_ils/records_relations/api.py +11 -34
  172. invenio_app_ils/records_relations/indexer.py +1 -3
  173. invenio_app_ils/records_relations/retriever.py +14 -9
  174. invenio_app_ils/records_relations/views.py +16 -50
  175. invenio_app_ils/relations/api.py +17 -16
  176. invenio_app_ils/search_permissions.py +24 -24
  177. invenio_app_ils/series/api.py +10 -12
  178. invenio_app_ils/series/loaders/jsonschemas/series.py +3 -2
  179. invenio_app_ils/{items/mappings/v6 → series/mappings/os-v1}/__init__.py +1 -1
  180. invenio_app_ils/series/mappings/os-v1/series/series-v1.0.0.json +324 -0
  181. invenio_app_ils/series/mappings/os-v1/series/series-v2.0.0.json +396 -0
  182. {tests/api/acquisition → invenio_app_ils/series/mappings/os-v2}/__init__.py +1 -1
  183. invenio_app_ils/series/mappings/os-v2/series/series-v1.0.0.json +324 -0
  184. invenio_app_ils/series/mappings/os-v2/series/series-v2.0.0.json +396 -0
  185. invenio_app_ils/series/mappings/v7/series/series-v1.0.0.json +35 -3
  186. invenio_app_ils/series/mappings/v7/series/series-v2.0.0.json +396 -0
  187. invenio_app_ils/series/schemas/series/series-v2.0.0.json +354 -0
  188. invenio_app_ils/stats/aggregations/aggr_file_download/os-v1/aggr-file-download-v1.json +60 -0
  189. invenio_app_ils/stats/aggregations/aggr_file_download/os-v2/__init__.py +9 -0
  190. invenio_app_ils/stats/aggregations/aggr_file_download/os-v2/aggr-file-download-v1.json +60 -0
  191. invenio_app_ils/stats/event_builders.py +73 -0
  192. invenio_app_ils/stats/file_download/os-v1/file-download-v1.json +72 -0
  193. invenio_app_ils/stats/file_download/os-v2/__init__.py +9 -0
  194. invenio_app_ils/stats/file_download/os-v2/file-download-v1.json +72 -0
  195. invenio_app_ils/stats/processors.py +30 -0
  196. invenio_app_ils/stats/templates/aggregations/__init__.py +8 -0
  197. invenio_app_ils/stats/templates/aggregations/ils_record_changes/__init__.py +8 -0
  198. invenio_app_ils/stats/templates/aggregations/ils_record_changes/os-v2/__init__.py +8 -0
  199. invenio_app_ils/stats/templates/aggregations/ils_record_changes/os-v2/aggr-ils-record-changes-v1.json +41 -0
  200. {tests → invenio_app_ils/stats/templates/events}/__init__.py +2 -2
  201. invenio_app_ils/stats/templates/events/ils_record_changes/__init__.py +8 -0
  202. invenio_app_ils/stats/templates/events/ils_record_changes/os-v2/__init__.py +8 -0
  203. invenio_app_ils/stats/templates/events/ils_record_changes/os-v2/ils-record-changes-v1.json +41 -0
  204. invenio_app_ils/templates/logged_out.html +12 -0
  205. invenio_app_ils/views.py +18 -4
  206. invenio_app_ils/vocabularies/api.py +1 -1
  207. invenio_app_ils/vocabularies/cli.py +6 -18
  208. invenio_app_ils/vocabularies/data/acq_order_line_payment_modes.json +5 -0
  209. invenio_app_ils/vocabularies/data/identifier_schemes.json +5 -0
  210. invenio_app_ils/vocabularies/indexer.py +1 -4
  211. invenio_app_ils/vocabularies/jsonresolvers/licenses.py +2 -11
  212. invenio_app_ils/vocabularies/mappings/os-v1/__init__.py +8 -0
  213. invenio_app_ils/vocabularies/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +23 -0
  214. invenio_app_ils/vocabularies/mappings/os-v2/__init__.py +8 -0
  215. invenio_app_ils/vocabularies/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +23 -0
  216. invenio_app_ils/vocabularies/sources/base.py +1 -3
  217. invenio_app_ils/webpack.py +27 -0
  218. invenio_app_ils-6.1.0.dist-info/METADATA +627 -0
  219. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/RECORD +227 -249
  220. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/WHEEL +1 -1
  221. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/entry_points.txt +9 -5
  222. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info}/top_level.txt +0 -1
  223. invenio_app_ils/acquisition/mappings/v6/acq_orders/order-v1.0.0.json +0 -352
  224. invenio_app_ils/document_requests/mappings/v6/document_requests/document_request-v1.0.0.json +0 -199
  225. invenio_app_ils/documents/mappings/v6/documents/document-v1.0.0.json +0 -843
  226. invenio_app_ils/eitems/mappings/v6/eitems/eitem-v1.0.0.json +0 -131
  227. invenio_app_ils/ill/mappings/v6/ill_borrowing_requests/borrowing_request-v1.0.0.json +0 -242
  228. invenio_app_ils/internal_locations/mappings/v6/internal_locations/internal_location-v1.0.0.json +0 -110
  229. invenio_app_ils/items/mappings/v6/items/item-v1.0.0.json +0 -276
  230. invenio_app_ils/locations/mappings/v6/locations/location-v1.0.0.json +0 -92
  231. invenio_app_ils/notifications/admin.py +0 -57
  232. invenio_app_ils/patrons/mappings/v6/__init__.py +0 -8
  233. invenio_app_ils/patrons/mappings/v6/patrons/patron-v1.0.0.json +0 -44
  234. invenio_app_ils/providers/mappings/v6/providers/provider-v1.0.0.json +0 -59
  235. invenio_app_ils/series/mappings/v6/series/series-v1.0.0.json +0 -298
  236. invenio_app_ils/stats/aggregations/aggr_file_download/v6/aggr-file-download-v1.json +0 -59
  237. invenio_app_ils/stats/file_download/v6/file-download-v1.json +0 -74
  238. invenio_app_ils/version.py +0 -14
  239. invenio_app_ils/vocabularies/mappings/v6/__init__.py +0 -8
  240. invenio_app_ils/vocabularies/mappings/v6/vocabularies/vocabulary-v1.0.0.json +0 -25
  241. invenio_app_ils-1.0.0a54.dist-info/METADATA +0 -95
  242. tests/api/__init__.py +0 -8
  243. tests/api/acquisition/test_acq_orders_crud.py +0 -102
  244. tests/api/acquisition/test_acq_orders_permissions.py +0 -104
  245. tests/api/acquisition/test_acq_providers_permissions.py +0 -83
  246. tests/api/circulation/test_expired_loans.py +0 -88
  247. tests/api/circulation/test_loan_checkout.py +0 -216
  248. tests/api/circulation/test_loan_default_durations.py +0 -57
  249. tests/api/circulation/test_loan_document_resolver.py +0 -18
  250. tests/api/circulation/test_loan_extend.py +0 -132
  251. tests/api/circulation/test_loan_item_permissions.py +0 -139
  252. tests/api/circulation/test_loan_item_resolver.py +0 -26
  253. tests/api/circulation/test_loan_list_permissions.py +0 -104
  254. tests/api/circulation/test_loan_patron_resolver.py +0 -38
  255. tests/api/circulation/test_loan_request.py +0 -234
  256. tests/api/circulation/test_loan_update.py +0 -150
  257. tests/api/circulation/test_notifications.py +0 -229
  258. tests/api/conftest.py +0 -236
  259. tests/api/document_requests/__init__.py +0 -8
  260. tests/api/document_requests/test_document_requests.py +0 -131
  261. tests/api/document_requests/test_document_requests_permissions.py +0 -177
  262. tests/api/document_requests/test_notifications_filter.py +0 -36
  263. tests/api/ill/test_ill_brw_crud.py +0 -84
  264. tests/api/ill/test_ill_brw_reqs_patron_loan_create_action.py +0 -207
  265. tests/api/ill/test_ill_brw_reqs_patron_loan_extension_actions.py +0 -298
  266. tests/api/ill/test_ill_brw_reqs_permissions.py +0 -169
  267. tests/api/ill/test_ill_providers_permissions.py +0 -82
  268. tests/api/ils/__init__.py +0 -8
  269. tests/api/ils/documents/__init__.py +0 -8
  270. tests/api/ils/documents/test_document_crud.py +0 -57
  271. tests/api/ils/documents/test_document_permissions.py +0 -106
  272. tests/api/ils/documents/test_document_resolvers.py +0 -35
  273. tests/api/ils/eitems/__init__.py +0 -8
  274. tests/api/ils/eitems/test_eitems_crud.py +0 -41
  275. tests/api/ils/eitems/test_eitems_permissions.py +0 -84
  276. tests/api/ils/eitems/test_files.py +0 -172
  277. tests/api/ils/items/__init__.py +0 -8
  278. tests/api/ils/items/test_apis.py +0 -43
  279. tests/api/ils/items/test_items_crud.py +0 -60
  280. tests/api/ils/items/test_items_permissions.py +0 -107
  281. tests/api/ils/items/test_items_update.py +0 -47
  282. tests/api/ils/records_relations/__init__.py +0 -8
  283. tests/api/ils/records_relations/helpers.py +0 -115
  284. tests/api/ils/records_relations/test_records_relations_parentchild.py +0 -560
  285. tests/api/ils/records_relations/test_records_relations_sequence.py +0 -302
  286. tests/api/ils/records_relations/test_records_relations_siblings.py +0 -678
  287. tests/api/ils/series/__init__.py +0 -8
  288. tests/api/ils/series/test_series_permissions.py +0 -95
  289. tests/api/ils/test_anonymization.py +0 -189
  290. tests/api/ils/test_apis.py +0 -76
  291. tests/api/ils/test_closures.py +0 -324
  292. tests/api/ils/test_errors.py +0 -126
  293. tests/api/ils/test_facets.py +0 -84
  294. tests/api/ils/test_internal_locations.py +0 -96
  295. tests/api/ils/test_loaders.py +0 -55
  296. tests/api/ils/test_metadata_extensions.py +0 -205
  297. tests/api/ils/test_notifications.py +0 -183
  298. tests/api/ils/test_notifications_mails.py +0 -39
  299. tests/api/ils/test_notifications_permissions.py +0 -55
  300. tests/api/ils/test_patrons.py +0 -106
  301. tests/api/ils/test_record_delete.py +0 -46
  302. tests/api/ils/test_record_permissions.py +0 -135
  303. tests/api/ils/test_resolvers.py +0 -207
  304. tests/api/ils/test_stats.py +0 -160
  305. tests/api/ils/test_tasks.py +0 -211
  306. tests/api/ils/test_vocabularies.py +0 -35
  307. tests/conftest.py +0 -123
  308. tests/data/acq_orders.json +0 -89
  309. tests/data/acq_providers.json +0 -12
  310. tests/data/document_requests.json +0 -77
  311. tests/data/documents.json +0 -237
  312. tests/data/eitems.json +0 -66
  313. tests/data/ill_borrowing_requests.json +0 -77
  314. tests/data/ill_providers.json +0 -12
  315. tests/data/internal_locations.json +0 -22
  316. tests/data/items.json +0 -271
  317. tests/data/loans.json +0 -133
  318. tests/data/loans_most_loaned.json +0 -128
  319. tests/data/locations.json +0 -20
  320. tests/data/series.json +0 -33
  321. tests/helpers.py +0 -104
  322. tests/templates/notifications/title_body.html +0 -8
  323. tests/templates/notifications/title_body_html.html +0 -13
  324. tests/templates/notifications/title_body_html_ctx.html +0 -13
  325. tests/templates/notifications/title_only.html +0 -3
  326. tests/test_version.py +0 -17
  327. /tests/templates/notifications/blank.html → /invenio_app_ils/acquisition/mappings/os-v1/__init__.py +0 -0
  328. /invenio_app_ils/stats/aggregations/aggr_file_download/{v6 → os-v1}/__init__.py +0 -0
  329. /invenio_app_ils/stats/file_download/{v6 → os-v1}/__init__.py +0 -0
  330. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info/licenses}/AUTHORS.rst +0 -0
  331. {invenio_app_ils-1.0.0a54.dist-info → invenio_app_ils-6.1.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,627 @@
1
+ Metadata-Version: 2.4
2
+ Name: invenio-app-ils
3
+ Version: 6.1.0
4
+ Summary: Invenio Integrated Library System.
5
+ Home-page: https://github.com/inveniosoftware/invenio-app-ils
6
+ Author: CERN
7
+ Author-email: info@inveniosoftware.org
8
+ License: MIT
9
+ Keywords: invenio-app-ils Invenio
10
+ Platform: any
11
+ Classifier: Development Status :: 4 - Beta
12
+ Requires-Python: >=3.8
13
+ License-File: LICENSE
14
+ License-File: AUTHORS.rst
15
+ Requires-Dist: invenio-app<3.0.0,>=2.3.0
16
+ Requires-Dist: invenio-db[mysql,postgresql]<3.0.0,>=2.0.0
17
+ Requires-Dist: invenio-base<3.0.0,>=2.3.2
18
+ Requires-Dist: invenio-cache<3.0.0,>=2.1.0
19
+ Requires-Dist: invenio-celery<3.0.0,>=2.2.0
20
+ Requires-Dist: invenio-config<2.0.0,>=1.1.0
21
+ Requires-Dist: invenio-i18n<4.0.0,>=3.3.0
22
+ Requires-Dist: invenio-assets<5.0.0,>=4.2.0
23
+ Requires-Dist: invenio-formatter<4.0.0,>=3.2.0
24
+ Requires-Dist: invenio-logging[sentry]<5.0.0,>=4.1.0
25
+ Requires-Dist: invenio-mail<3.0.0,>=2.3.0
26
+ Requires-Dist: invenio-rest<3.0.0,>=2.0.5
27
+ Requires-Dist: invenio-theme<5.0.0,>=4.3.0
28
+ Requires-Dist: invenio-access<5.0.0,>=4.1.0
29
+ Requires-Dist: invenio-accounts<7.0.0,>=6.1.1
30
+ Requires-Dist: invenio-oauth2server<4.0.0,>=3.2.0
31
+ Requires-Dist: invenio-oauthclient<6.0.0,>=5.1.0
32
+ Requires-Dist: invenio-userprofiles<5.0.0,>=4.0.0
33
+ Requires-Dist: invenio-indexer<4.0.0,>=3.1.0
34
+ Requires-Dist: invenio-jsonschemas<3.0.0,>=2.1.0
35
+ Requires-Dist: invenio-oaiserver<4.0.0,>=3.6.0
36
+ Requires-Dist: invenio-pidstore<3.0.0,>=2.1.0
37
+ Requires-Dist: invenio-records-rest<4.0.0,>=3.1.0
38
+ Requires-Dist: invenio-records<4.0.0,>=3.0.2
39
+ Requires-Dist: invenio-files-rest<4.0.0,>=3.2.0
40
+ Requires-Dist: invenio-banners<6.0.0,>=5.0.0
41
+ Requires-Dist: invenio-pages<8.0.0,>=7.1.0
42
+ Requires-Dist: invenio-circulation<4.0.0,>=3.0.0a1
43
+ Requires-Dist: invenio-opendefinition<3.0.0,>=2.0.0a2
44
+ Requires-Dist: invenio-pidrelations<2.0.0,>=1.0.0
45
+ Requires-Dist: invenio-stats<6.0.0,>=5.1.1
46
+ Requires-Dist: Flask-Debugtoolbar<1.0.0,>=0.15.1
47
+ Requires-Dist: pycountry<25.0.0,>=22.3.5
48
+ Requires-Dist: simplejson<4.0.0,>=3.20.1
49
+ Requires-Dist: jsonschema<5.0.0,>=4.24.0
50
+ Requires-Dist: alembic<2.0.0,>=1.16.4
51
+ Requires-Dist: celery<5.4.0,>=5.3.6
52
+ Requires-Dist: billiard<5.0.0,>=4.2.1
53
+ Requires-Dist: werkzeug<4.0.0,>=3.1.3
54
+ Requires-Dist: click<9.0.0,>=8.1.8
55
+ Requires-Dist: sqlalchemy_utils>=0.41.2
56
+ Provides-Extra: tests
57
+ Requires-Dist: pytest-black>=0.3.0; extra == "tests"
58
+ Requires-Dist: mock>=2.0.0; extra == "tests"
59
+ Requires-Dist: pytest-invenio>=3.4.2; extra == "tests"
60
+ Requires-Dist: docker-services-cli>=0.6.0; extra == "tests"
61
+ Requires-Dist: pydocstyle==6.1.1; extra == "tests"
62
+ Requires-Dist: pytest-mock>=1.6.0; extra == "tests"
63
+ Requires-Dist: sphinx>=5; extra == "tests"
64
+ Requires-Dist: pluggy>=1.6.0; extra == "tests"
65
+ Provides-Extra: lorem
66
+ Requires-Dist: lorem>=0.1.1; extra == "lorem"
67
+ Provides-Extra: opensearch2
68
+ Requires-Dist: invenio-search[opensearch2]<4.0.0,>=3.1.0; extra == "opensearch2"
69
+ Provides-Extra: docs
70
+ Dynamic: license-file
71
+
72
+ ..
73
+ Copyright (C) 2018-2020 CERN.
74
+
75
+ invenio-app-ils is free software; you can redistribute it and/or modify it
76
+ under the terms of the MIT License; see LICENSE file for more details.
77
+
78
+ =================
79
+ Invenio App ILS
80
+ =================
81
+
82
+ .. image:: https://img.shields.io/travis/inveniosoftware/invenio-app-ils.svg
83
+ :target: https://travis-ci.org/inveniosoftware/invenio-app-ils
84
+
85
+ .. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-app-ils.svg
86
+ :target: https://coveralls.io/r/inveniosoftware/invenio-app-ils
87
+
88
+ .. image:: https://img.shields.io/github/license/inveniosoftware/invenio-app-ils.svg
89
+ :target: https://github.com/inveniosoftware/invenio-app-ils/blob/master/LICENSE
90
+
91
+ Integrated Library System based on Invenio
92
+
93
+ Official documentation (under development) is available at
94
+ https://invenioils.docs.cern.ch
95
+
96
+
97
+ ..
98
+ Copyright (C) 2018-2024 CERN.
99
+
100
+ invenio-app-ils is free software; you can redistribute it and/or modify it
101
+ under the terms of the MIT License; see LICENSE file for more details.
102
+
103
+ Changes
104
+ =======
105
+
106
+ Version 6.1.0 (released 2025-10-05)
107
+
108
+ - fix: make terms query that gets eitems by creator use correct keyword
109
+ - stats: record change ids only contain `user_id` when it is not None
110
+ - global: include python files inside invenio_app_ils in manifest
111
+ - stats: move file `test_stats` into folder for stats
112
+ - stats: add stats to track ILSRecord insertions, deletions and updates
113
+
114
+ Version 6.0.0 (released 2025-10-03)
115
+
116
+ - breaking change: permissions: turn permission that checks if user can see notifications into read permission
117
+ - permissions: add backoffice readonly action
118
+
119
+ Version 5.1.0 (released 2025-09-24)
120
+
121
+ - eitem: add api methods to get eitems by `created_by` and `source` fields
122
+
123
+ Version 5.0.2 (released 2025-08-20)
124
+
125
+ - fix: ensure the invenio_app_ils configuration is loaded before cds_ils
126
+
127
+ Version 5.0.1 (released 2025-08-13)
128
+
129
+ - (fix) installation: remove phased out invenio-admin entry point
130
+
131
+ Version 5.0.0 (released 2025-08-12)
132
+
133
+ - breaking changes: upgrade to flask 3
134
+ - breaking changes: upgrade to sqlalchemy2
135
+ - circulation: added NOT-SPECIFIED delivery method
136
+ - circulation: changing loan dates sends out a mail to the patron
137
+ - update: rename schema field parameter default to load_default
138
+
139
+ Version 4.6.0 (released 2025-06-25)
140
+
141
+ - installation: remove breaking package version constraints
142
+
143
+ Version 4.5.0 (released 2025-06-04)
144
+
145
+ - closures: added endpoint for closure periods in a year
146
+ - circulation: self-checkout of MISSING items marks them as CAN_CIRCULATE
147
+ - tests: Fix comment on running tests by bumping Postgres & adding param
148
+
149
+ Version 4.4.0 (released 2025-02-21)
150
+
151
+ - installation: pin invenio-logging
152
+
153
+ Version 4.3.0 (released 2024-11-19)
154
+
155
+ - self-checkout: use dedicated endpoints for the entire workflow for better
156
+ permissions check and error handling.
157
+ Add a new loan transition and delivery method for self-checkout.
158
+ - anonymization: ensure that re-indexing is happening after the commit to the db,
159
+ to avoid premature re-indexing (and therefore index conflict version)
160
+ when db rollback happens.
161
+
162
+ Version 4.2.0 (released 2024-11-04)
163
+
164
+ - self-checkout: barcode is now always uppercased to make searches case-insensitive
165
+
166
+ Version 4.1.0 (released 2024-10-21)
167
+
168
+ - search: apply the same search analyzers to the fields that needs to be searchable.
169
+ This is required when using cross-field searches.
170
+ Re-create the documents and series indices to take advantage of this change.
171
+
172
+ Version 4.0.0 (released 2024-08-07)
173
+
174
+ - Initial full release
175
+
176
+ Version 4.0.0rc1 (released 2024-06-28)
177
+
178
+ - search: improve search for accents and special characters
179
+ breaking change: requires updating the version of mappings and schema
180
+
181
+ Version 3.0.0rc5 (released 2024-06-24)
182
+
183
+ - search: allow custom query parser
184
+
185
+ Version 3.0.0rc4 (released 2024-06-17)
186
+
187
+ - serializers: handle PatronNotFound
188
+
189
+ Version 3.0.0rc3 (released 2024-06-07)
190
+
191
+ - circulation: Support self checkout by patrons
192
+ - Dockerfile: update backend base image python3.6 -> inveniosoftware/almalinux:1
193
+
194
+ Version 3.0.0rc2 (released 2024-05-28)
195
+
196
+ - mappings: Add alternative_titles in brwReqs and AcqOrders
197
+ - records: loaders: schemas: Move IdentifierSchema from documents
198
+ - documents: mappings: Update item identifiers description to scheme
199
+
200
+ Version 3.0.0rc1 (released 2024-05-13)
201
+
202
+ - eitems: add required type field to data model (breaking change)
203
+ - physical items: add identifiers field
204
+ - documents: add MULTIMEDIA document type
205
+
206
+ Version 2.0.0rc9 (released 2024-04-25)
207
+
208
+ - patch: add record pid to error display
209
+
210
+ Version 2.0.0rc8 (released 2024-04-04)
211
+
212
+ - records_relation: Simplify sorting
213
+ - records_relations: Use sort_by parameter from configs instead
214
+ - relations: Add functionality to sort json refs by relation_type
215
+ - tests: circulation: Add new location for testing closures
216
+ - circulation: loan_request: Fix dates comparison in get_offset_duration
217
+ - tests: loan request: fix test for minimum days before request
218
+ - circulation: Consider closures dates when verifying loan request dates
219
+
220
+ Version 2.0.0rc7 (released 2024-03-04)
221
+
222
+ - circulation: Made loan request start date to be configurable and validated at the backend
223
+
224
+ Version 2.0.0rc6 (released 2024-02-27)
225
+
226
+ - facets: fix boolean query
227
+
228
+ Version 2.0.0rc5 (released 2024-02-21)
229
+
230
+ - facets: fix range query
231
+
232
+ Version 2.0.0rc4 (released 2024-02-19)
233
+
234
+ - stats: emit custom signal for file download
235
+
236
+ Version 2.0.0rc3 (released 2024-02-19)
237
+
238
+ - facets: fix range post filter
239
+
240
+ Version 2.0.0rc2 (released 2024-01-12)
241
+
242
+ - search: fix search factory function signature
243
+ - anonymization: fix patron_pid retrieval on acq orders
244
+
245
+ Version 2.0.0rc1 (released 2024-01-11)
246
+
247
+ - upgrade python version
248
+ - remove ES v7 and below support
249
+ - upgrade invenio packages
250
+ - upgrade python dependencies
251
+
252
+ Version 1.0.0rc5 (released 2023-12-20)
253
+
254
+ - demo data: optional admin account creation
255
+
256
+ Version 1.0.0rc4 (released 2023-07-04)
257
+
258
+ - Fix docker-compose file
259
+
260
+ Version 1.0.0rc3 (released 2023-03-10)
261
+
262
+ - Remove ES v6 mappings
263
+
264
+ Version 1.0.0rc2 (released 2023-03-07)
265
+
266
+ - add opensearch docker image
267
+ - add opensearch v1 and v2 mappings
268
+ - remove doc type to enable opensearch2 compatibility
269
+ - bump invenio-stats and invenio-indexer to opensearch2 compatible versions
270
+ - bump invenio-circulation to opensearch-compatible alpha release
271
+ - remove ES6 mappings
272
+
273
+ Version 1.0.0rc1 (released 2022-10-24)
274
+
275
+ - first release candidate
276
+
277
+ Version 1.0.0a69 (released 2022-10-18)
278
+
279
+ - adapt literature search query
280
+
281
+ Version 1.0.0a68 (released 2022-10-06)
282
+
283
+ - bump pycountry
284
+
285
+ Version 1.0.0a67 (released 2022-09-15)
286
+
287
+ - removes ES6 support
288
+
289
+ Version 1.0.0a66 (released 2022-08-24)
290
+
291
+ - allows vocabularies values to be queried via REST API
292
+
293
+ Version 1.0.0a65 (released 2022-08-16)
294
+
295
+ - fix mappings for documents volume field
296
+
297
+ Version 1.0.0a64 (released 2022-08-12)
298
+
299
+ - fix redirection page after logout
300
+ - add copy to field for volume
301
+
302
+ Version 1.0.0a63 (released 2022-05-05)
303
+
304
+ - document: preserve legacy_recid on update as int
305
+ - series: preserve legacy_recid on update as int
306
+
307
+ Version 1.0.0a62 (released 2022-05-02)
308
+
309
+ - document: preserve legacy_recid on update
310
+
311
+ Version 1.0.0a61 (released 2022-02-21)
312
+
313
+ - Pin `itsdangerous` because v2.1.0 removes `TimedJSONWebSignatureSerializer`
314
+
315
+ Version 1.0.0a60 (released 2022-02-21)
316
+
317
+ - upgrade invenio-opendefinition
318
+
319
+ Version 1.0.0a59 (released 2022-01-17)
320
+
321
+ - add alternative mappings to text fields in documents e-items and series
322
+
323
+ Version 1.0.0a58 (released 2021-12-17)
324
+
325
+ - add words length limiter on document author name indexing
326
+ - add case insensitive search on document publisher
327
+
328
+ Version 1.0.0a57 (released 2021-12-01)
329
+
330
+ - global: fix installation issues by dependencies
331
+
332
+ Version 1.0.0a56 (released 2021-11-12)
333
+
334
+ - Bulk loan extension: add overdue loans to bulk extend functionality
335
+
336
+ Version 1.0.0a55 (released 2021-11-05)
337
+
338
+ - search: add normalised keyword search to support case insensitive exact match
339
+
340
+ Version 1.0.0a54 (released 2021-10-20)
341
+
342
+ - literature search: improved relevance of results
343
+ - Search Guide: add search guide static page
344
+
345
+ Version 1.0.0a53 (released 2021-10-05)
346
+
347
+ - bulk extend: supress sending notification on empty extended loans set
348
+
349
+ Version 1.0.0a52 (released 2021-10-01)
350
+
351
+ - update invenio circulation
352
+
353
+ Version 1.0.0a51 (released 2021-09-30)
354
+
355
+ - add bulk loan extension feature
356
+
357
+ Version 1.0.0a50 (released 2021-09-27)
358
+
359
+ - add notifications module with configurable backends
360
+
361
+ Version 1.0.0a49 (released 2021-09-27)
362
+
363
+ - document: fix loan calculation on the resolver
364
+ - change country codes to 3-letter standard
365
+
366
+ Version 1.0.0a48 (released 2021-08-31)
367
+
368
+ - documents: add text field to mapping of conference place
369
+ - loans: reindex all the pending loans on the parent when updating one of them
370
+
371
+ Version 1.0.0a47 (released 2021-07-29)
372
+
373
+ - document api: add discrete references search
374
+ - eitem: add source field and vocab
375
+
376
+ Version 1.0.0a46 (released 2021-07-07)
377
+
378
+ - relations: fix related record deletion
379
+
380
+ Version 1.0.0a45 (released 2021-07-07)
381
+
382
+ - series: add dependency check on delete action
383
+ - fix python dependencies resolution
384
+
385
+ Version 1.0.0a44 (released 2021-06-02)
386
+
387
+ - add identifiers text mapping field
388
+ - add checks on dependencies of documents on delete
389
+
390
+ Version 1.0.0a43 (released 2021-05-27)
391
+
392
+ - add document type to item index and facets
393
+
394
+ Version 1.0.0a42 (released 2021-05-17)
395
+
396
+ - boost search results for identifier fields
397
+
398
+ Version 1.0.0a41 (released 2021-05-12)
399
+
400
+ - send expiring loans reminder only once
401
+ - fix Flask and werkzeug version conflicts via invenio-app
402
+
403
+ Version 1.0.0a40 (released 2021-05-07)
404
+
405
+ - document request add missing email template
406
+ - eliminate stale loan requests
407
+
408
+ Version 1.0.0a39 (released 2021-05-05)
409
+
410
+ - bump invenio-circulation package version
411
+ - reindex all document referenced loans on item indexing
412
+
413
+ Version 1.0.0a38 (released 2021-04-13)
414
+
415
+ - rename e-books vocabularies values
416
+ - rename availability facet
417
+
418
+ Version 1.0.0a37 (released 2021-04-09)
419
+
420
+ - do not require order date in acquisition
421
+
422
+ Version 1.0.0a36 (released 2021-04-07)
423
+
424
+ - add login required to series access_urls
425
+
426
+ Version 1.0.0a35 (released 2021-04-07)
427
+
428
+ - add series type field to series schema
429
+ - add item circulation statistics to loan search index
430
+
431
+ Version 1.0.0a34 (released 2021-03-29)
432
+
433
+ - Updates default loan extension
434
+
435
+ Version 1.0.0a33 (released 2021-03-18)
436
+
437
+ - series: remove electronic volumes description field
438
+
439
+ Version 1.0.0a32 (released 2021-03-16)
440
+
441
+ - change license vocabulary to use resolver
442
+ - rename proceedings and ebooks
443
+ - prepare strings to be inserted in HTML
444
+
445
+ Version 1.0.0a31 (released 2021-03-12)
446
+
447
+ - add volumes description fields to series
448
+ - change conference field type
449
+
450
+ Version 1.0.0a30 (released 2021-03-10)
451
+
452
+ - replace vendors and external libraries with provider record type
453
+ - fix document extensions data schema
454
+ - fix internal search queries
455
+ - add publisher field to document request
456
+
457
+ Version 1.0.0a29 (released 2021-03-04)
458
+
459
+ - update borrowing request schema
460
+ - fix circulation restrictions
461
+ - fix author limit on resolvers
462
+ - fix currency vocabulary
463
+ - add html formatting to the email templates
464
+ - add meta field to document urls
465
+ - add email logging in DB
466
+
467
+ Version 1.0.0a28 (released 2021-02-16)
468
+
469
+ - add cookies config for improved security
470
+ - fix data model extensions facets
471
+ - adapt document data model field physical_description
472
+ - fixes for literature request API
473
+
474
+ Version 1.0.0a27 (released 2021-02-10)
475
+
476
+ - fix max_result_window config
477
+ - restrict system emails from sending to system agents
478
+
479
+ Version 1.0.0a26 (released 2021-02-09)
480
+
481
+ - fix max_result_window config for searches
482
+ - fix boosted search factories for ES v<7.7 compatibility
483
+
484
+ Version 1.0.0a25 (released 2021-02-02)
485
+
486
+ - update invenio to 3.4
487
+ - change language standard to ISO 639-3
488
+ - change eitem urls access_restriction field
489
+ - add item availability to loan search
490
+
491
+
492
+ Version 1.0.0a24 (released 2021-01-25)
493
+
494
+ - add internal_note to document request schema
495
+ - add validation for series mode of issuance
496
+
497
+
498
+ Version 1.0.0a23 (released 2021-01-18)
499
+
500
+ - improve ES mapping
501
+ - constraint parent child relation to one multipart monograph
502
+ - set patron indexer as current_app_ils proxy
503
+
504
+ Version 1.0.0a22 (released 2021-01-13)
505
+
506
+ - improve email templating
507
+ - add ILL loans extension search filter
508
+ - test permissions
509
+ - fix eitem filter
510
+ - change cover placeholder
511
+
512
+ Version 1.0.0a21 (released 2020-10-26)
513
+
514
+ - add library_search_cls as property in current_ils_ill
515
+ - add library_indexer as property in current_ils_ill
516
+ - bump invenio-circulation version
517
+
518
+ Version 1.0.0a20 (released 2020-10-11)
519
+
520
+ - update the constraint on opening hours up to 2 time periods
521
+ - add importer curator type
522
+ - fix patron resolver bug
523
+ - add validation for missing language and edition fields
524
+ - fix deletion of remote token
525
+
526
+ Version 1.0.0a19 (released 2020-10-28)
527
+
528
+ - fix ils search factory with prefixed indices
529
+
530
+ Version 1.0.0a18 (released 2020-10-26)
531
+
532
+ - refactor patrons indexer
533
+ - add overridable footer email template
534
+ - integrate invenio-banners module
535
+ - remove email to send active loans to librarian
536
+ - add missing legacy_id fields to various schema
537
+
538
+ Version 1.0.0a17 (released 2020-10-23)
539
+
540
+ - fix vocabularies for mediums
541
+ - change cron jobs schedule
542
+
543
+ Version 1.0.0a16 (released 2020-10-20)
544
+
545
+ - fix simplejson package version
546
+
547
+ Version 1.0.0a15 (released 2020-10-20)
548
+
549
+ - update sort configuration
550
+ - update ES mappings
551
+ - location closure module fixes
552
+ - add oai-pmh server configuration
553
+ - fixes for celery 5 upgrade
554
+
555
+ Version 1.0.0a14 (released 2020-10-13)
556
+
557
+ - refactor anonymization module
558
+ - fix loan item replace indexing
559
+ - increase rate limit
560
+ - add support postgres 12
561
+
562
+ Version 1.0.0a13 (released 2020-09-29)
563
+
564
+ - protect stats endpoint when document is restricted
565
+ - change schema publication field
566
+ - fix send loan reminder on demand
567
+ - integrate location closures module
568
+
569
+ Version 1.0.0a12 (released 2020-09-16)
570
+
571
+ - bumped invenio-circulation to 1.0.0a27
572
+ - allow to edit loans start and end dates
573
+ - update license field schema definition in Document
574
+ - fix CSP configuration
575
+
576
+ Version 1.0.0a11 (released 2020-09-04)
577
+
578
+ - bumped invenio-stats version to 1.0.0a18
579
+ - add keywords and tags to series
580
+ - enable CSRF support
581
+
582
+ Version 1.0.0a10 (released 2020-08-13)
583
+
584
+ - add anonymisation of user accounts and actions
585
+ - add sorting values
586
+ - add notification emails about unresolved user requests
587
+ - fix user roles fetching
588
+
589
+ Version 1.0.0a9 (released 2020-07-28)
590
+
591
+ - limit version for dependencies to minor
592
+ - add identifiers to e-items
593
+ - add new document circulation endpoint
594
+ - fix isort v5 imports
595
+ - remove ETag/Last-Modified headers
596
+
597
+ Version 1.0.0a8 (released 2020-07-16)
598
+
599
+ - add request type and payment method to document request
600
+ - change keywords field type
601
+
602
+ Version 1.0.0a7 (released 2020-07-14)
603
+
604
+ - add medium field to document request
605
+
606
+ Version 1.0.0a6 (released 2020-07-03)
607
+
608
+ - bugfix minters and fetchers for vocabularies and patrons
609
+
610
+ Version 1.0.0a5 (released 2020-07-01)
611
+
612
+ - config: remove DEFAULT_LOCATION_PID
613
+ - resolvers: bug fix indexing $refs
614
+ - dependencies: upgrade
615
+ - loan: Base32 PIDs
616
+ - cli: option for static pages
617
+ - readme: improvements
618
+
619
+ Version 1.0.0a4 (released 2020-06-19)
620
+
621
+ - ILL: patron can fetch his own borrowing requests
622
+ - document and series metadata extensions
623
+ - loan: auto cancel after expiration day
624
+
625
+ Version 1.0.0a0 (released 2020-06-05)
626
+
627
+ - Initial public release.