Skip to content

Commit 95116c0

Browse files
committed
release: v1.23.1
1 parent 34cf6b5 commit 95116c0

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [v1.23.1](https://github.com/rero/rero-ils/tree/v1.23.0) (2024-08-26)
4+
5+
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.23.0...v1.23.1)
6+
7+
**Enhancements:**
8+
* Update rero-ils-ui version to allow older browsers to use the public UI
9+
* Delete useless error log in entities dojson
10+
311
## [v1.23.0](https://github.com/rero/rero-ils/tree/v1.23.0) (2024-08-12)
412

513
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.22.1...v1.23.0)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rero-ils"
3-
version = "1.23.0"
3+
version = "1.23.1"
44
description = "Invenio digital library framework."
55
authors = ["RERO <[email protected]>"]
66
license = "GNU Affero General Public License v3.0"

rero_ils/modules/documents/dojson/contrib/jsontomarc21/model.py

-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,6 @@ def do_contribution(contribution, source_order):
128128
error_print(f'No entity found for pid:{pid} {ref}')
129129
return None, None, False, False
130130
if not (preferred_name := entity.get('preferred_name')):
131-
error_print(
132-
f'JSON to MARC21 contribution no preferred_name: {entity}')
133131
preferred_name = entity.get(
134132
f'authorized_access_point_{to_marc21.language}')
135133
result = {}

rero_ils/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
from __future__ import absolute_import, print_function
2525

26-
__version__ = "1.23.0"
26+
__version__ = "1.23.1"

scripts/bootstrap

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ then
151151
info_msg "Install RERO-ILS-UI from tgz: ${tgz_file}"
152152
npm install --no-save --only=prod --no-fund --no-audit "${tgz_file}" --prefix "${static_folder}"
153153
else
154-
npm install --no-save --only=prod --no-fund --no-audit @rero/[email protected].0 --prefix "${static_folder}"
154+
npm install --no-save --only=prod --no-fund --no-audit @rero/[email protected].1 --prefix "${static_folder}"
155155
fi
156156

157157
# build the web assets

scripts/test

+3-2
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,10 @@ function pretests () {
8989
# Vulnerability ID: 71594
9090
# -> Vulnerability found in werkzeug version 2.2.3
9191
# Vulnerability ID: 71595
92-
# ADVISORY: Black before 24.3.0 have a security vulnerability where
92+
# -> Vulnerability found in sentry-sdk version 1.45.1
93+
# Vulnerability ID: 72260
9394
info_msg "Check vulnerabilities:"
94-
safety_exceptions="-i 40459 -i 42194 -i 42852 -i 51457 -i 51668 -i 62019 -i 66742 -i 70612 -i 70624 -i 71594 -i 71595"
95+
safety_exceptions="-i 40459 -i 70624 -i 51668 -i 42194 -i 42852 -i 71594 -i 62019 -i 71595 -i 70612 -i 51457 -i 72260"
9596
msg=$(safety check -o text ${safety_exceptions}) || {
9697
echo "Safety vulnerabilites found for packages:" $(safety check -o bare ${safety_exceptions})
9798
echo "Run: \"safety check -o screen ${safety_exceptions} | grep -i vulnerability\" for more details"

0 commit comments

Comments
 (0)