invenio-app-ils 6.1.0__py2.py3-none-any.whl → 6.1.1__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.
@@ -7,6 +7,6 @@
7
7
 
8
8
  """invenio-app-ils."""
9
9
 
10
- __version__ = "6.1.0"
10
+ __version__ = "6.1.1"
11
11
 
12
12
  __all__ = ("__version__",)
@@ -13,7 +13,19 @@ from flask import url_for
13
13
  def build_ils_demo_cover_urls(metadata):
14
14
  """Build working ulrs for demo data."""
15
15
  cover_metadata = metadata.get("cover_metadata", {})
16
- isbn = cover_metadata.get("ISBN", "")
16
+
17
+ isbn = (
18
+ cover_metadata.get("ISBN", "")
19
+ or cover_metadata.get("isbn", "")
20
+ or metadata.get("isbn", "")
21
+ or ""
22
+ )
23
+ identifiers = metadata.get("identifiers", [])
24
+ if not isbn and identifiers:
25
+ for identifier in identifiers:
26
+ if identifier.get("scheme") == "ISBN":
27
+ isbn = identifier.get("value", "")
28
+ break
17
29
  if isbn:
18
30
  return build_openlibrary_urls(isbn)
19
31
  return build_placeholder_urls()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invenio-app-ils
3
- Version: 6.1.0
3
+ Version: 6.1.1
4
4
  Summary: Invenio Integrated Library System.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-ils
6
6
  Author: CERN
@@ -28,7 +28,7 @@ Requires-Dist: invenio-theme<5.0.0,>=4.3.0
28
28
  Requires-Dist: invenio-access<5.0.0,>=4.1.0
29
29
  Requires-Dist: invenio-accounts<7.0.0,>=6.1.1
30
30
  Requires-Dist: invenio-oauth2server<4.0.0,>=3.2.0
31
- Requires-Dist: invenio-oauthclient<6.0.0,>=5.1.0
31
+ Requires-Dist: invenio-oauthclient<7.0.0,>=6.0.0
32
32
  Requires-Dist: invenio-userprofiles<5.0.0,>=4.0.0
33
33
  Requires-Dist: invenio-indexer<4.0.0,>=3.1.0
34
34
  Requires-Dist: invenio-jsonschemas<3.0.0,>=2.1.0
@@ -95,7 +95,7 @@ https://invenioils.docs.cern.ch
95
95
 
96
96
 
97
97
  ..
98
- Copyright (C) 2018-2024 CERN.
98
+ Copyright (C) 2018-2025 CERN.
99
99
 
100
100
  invenio-app-ils is free software; you can redistribute it and/or modify it
101
101
  under the terms of the MIT License; see LICENSE file for more details.
@@ -103,6 +103,12 @@ https://invenioils.docs.cern.ch
103
103
  Changes
104
104
  =======
105
105
 
106
+ Version 6.1.1 (released 2025-12-10)
107
+
108
+ - tests: move covers builder test into correct folder
109
+ - setup: bump oauthclient major version
110
+ - global: bump OpenSearch to v3.2.0
111
+
106
112
  Version 6.1.0 (released 2025-10-05)
107
113
 
108
114
  - fix: make terms query that gets eitems by creator use correct keyword
@@ -1,4 +1,4 @@
1
- invenio_app_ils/__init__.py,sha256=3tt_Rb6riwShcmz5O5Mf00XKZ4aQ2Lj7M0FETDnpJSE,285
1
+ invenio_app_ils/__init__.py,sha256=aUR3Bj9BAjXvgK6UWWHG518slgtK6nFjMi9QDrxgSlI,285
2
2
  invenio_app_ils/cli.py,sha256=GGXMuXUlO9i8S9fpBXwj5wfPcK8aYe0leSDB3V--7Bs,58609
3
3
  invenio_app_ils/config.py,sha256=aMdID-W4Jm8zI5K4Nvwvk86SG5OCuRZFS7wTWnXrAKM,45294
4
4
  invenio_app_ils/errors.py,sha256=HB_iWj-aYxzTzzO6hWb66mUPZdqpWYHgmr2H2t3j3wU,13293
@@ -261,7 +261,7 @@ invenio_app_ils/items/serializers/__init__.py,sha256=OxfwU0rGarUnBvznMmiGaJx6uMw
261
261
  invenio_app_ils/items/serializers/item.py,sha256=8qHJp4SFxJj_qM-Pf-Om98KYc5ytweNLJiD94ksGslQ,2967
262
262
  invenio_app_ils/literature/__init__.py,sha256=GELxzVtOq8G2O7Uvs_mLsj0wPnS5l-6ns9mLFDGMEmQ,231
263
263
  invenio_app_ils/literature/api.py,sha256=gbLMK36fN0KXUmygRLadeejPnJ_3CSU_8WFrgxwQ_j4,862
264
- invenio_app_ils/literature/covers_builder.py,sha256=_MzoKZik_7UZRKl8szuhcLSD-o8reRSyV8VSbcIbh8g,1285
264
+ invenio_app_ils/literature/covers_builder.py,sha256=eBDfWVFnMswDJ6efk1PdMLI3ut7MSziVDnznb4-CW-E,1640
265
265
  invenio_app_ils/literature/search.py,sha256=Ny49TUkTsJB34REm-ZgahOcIeJDvH-zZk6mXKHBF47Q,1860
266
266
  invenio_app_ils/literature/serializers/__init__.py,sha256=CnJdYvVa433JbQb-dZciGDGAdtg0-bEhjtW8fK8rZy4,931
267
267
  invenio_app_ils/literature/serializers/csv.py,sha256=dkV5p5H5tCxLcj9bKQDbGeqwfuytfWGyPLy4YDFhZig,1130
@@ -455,10 +455,10 @@ invenio_app_ils/vocabularies/sources/__init__.py,sha256=EMLoLQGiq9_qoZ4lKqO_J0u2
455
455
  invenio_app_ils/vocabularies/sources/base.py,sha256=kmNg85cjrxqc8VErFP2SUtlyo1PnmzOBQgfoSpfTPh4,1418
456
456
  invenio_app_ils/vocabularies/sources/json.py,sha256=KGLTJ4AX8zEDdkpi3v92oHGs-h2dUzHbNPSg99-j8o0,1021
457
457
  invenio_app_ils/vocabularies/sources/opendefinition.py,sha256=9zbRXuTr0i5lVLt596oUhsLQPiJVf9jiM9-C7T6zbXA,2151
458
- invenio_app_ils-6.1.0.dist-info/licenses/AUTHORS.rst,sha256=BaXCGzdHCmiMOl4qtVlh1qrfy2ROMVOQp6ylzy1m0ww,212
459
- invenio_app_ils-6.1.0.dist-info/licenses/LICENSE,sha256=9OdaPOAO1ZOJcRQ8BrGj7QAdaJc8SRSUgBtdom49MrI,1062
460
- invenio_app_ils-6.1.0.dist-info/METADATA,sha256=OOedket0em7jsbxIAWgpwBpJgMTDbvCG3RYujoPd2Zs,18095
461
- invenio_app_ils-6.1.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
462
- invenio_app_ils-6.1.0.dist-info/entry_points.txt,sha256=L36OnFZlrAnCaQpXnWoLmYYJ1U6Y1K_TDUZB0nnWeO0,7748
463
- invenio_app_ils-6.1.0.dist-info/top_level.txt,sha256=p-lnzfSHaDER0BHbQvDV6dvUW7_Q0prMDFaqPhBSK50,16
464
- invenio_app_ils-6.1.0.dist-info/RECORD,,
458
+ invenio_app_ils-6.1.1.dist-info/licenses/AUTHORS.rst,sha256=BaXCGzdHCmiMOl4qtVlh1qrfy2ROMVOQp6ylzy1m0ww,212
459
+ invenio_app_ils-6.1.1.dist-info/licenses/LICENSE,sha256=9OdaPOAO1ZOJcRQ8BrGj7QAdaJc8SRSUgBtdom49MrI,1062
460
+ invenio_app_ils-6.1.1.dist-info/METADATA,sha256=WQMIQ4Em9Y-ocitjv3a7QiopaJFJfwlWZnr4MH6087o,18263
461
+ invenio_app_ils-6.1.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
462
+ invenio_app_ils-6.1.1.dist-info/entry_points.txt,sha256=L36OnFZlrAnCaQpXnWoLmYYJ1U6Y1K_TDUZB0nnWeO0,7748
463
+ invenio_app_ils-6.1.1.dist-info/top_level.txt,sha256=p-lnzfSHaDER0BHbQvDV6dvUW7_Q0prMDFaqPhBSK50,16
464
+ invenio_app_ils-6.1.1.dist-info/RECORD,,