Skip to content

Commit

Permalink
release: v1.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalRepond committed Aug 26, 2024
1 parent 34cf6b5 commit 95116c0
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v1.23.1](https://github.com/rero/rero-ils/tree/v1.23.0) (2024-08-26)

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

**Enhancements:**
* Update rero-ils-ui version to allow older browsers to use the public UI
* Delete useless error log in entities dojson

## [v1.23.0](https://github.com/rero/rero-ils/tree/v1.23.0) (2024-08-12)

[Full Changelog](https://github.com/rero/rero-ils/compare/v1.22.1...v1.23.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rero-ils"
version = "1.23.0"
version = "1.23.1"
description = "Invenio digital library framework."
authors = ["RERO <software@rero.ch>"]
license = "GNU Affero General Public License v3.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@ def do_contribution(contribution, source_order):
error_print(f'No entity found for pid:{pid} {ref}')
return None, None, False, False
if not (preferred_name := entity.get('preferred_name')):
error_print(
f'JSON to MARC21 contribution no preferred_name: {entity}')
preferred_name = entity.get(
f'authorized_access_point_{to_marc21.language}')
result = {}
Expand Down
2 changes: 1 addition & 1 deletion rero_ils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@

from __future__ import absolute_import, print_function

__version__ = "1.23.0"
__version__ = "1.23.1"
2 changes: 1 addition & 1 deletion scripts/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ then
info_msg "Install RERO-ILS-UI from tgz: ${tgz_file}"
npm install --no-save --only=prod --no-fund --no-audit "${tgz_file}" --prefix "${static_folder}"
else
npm install --no-save --only=prod --no-fund --no-audit @rero/rero-ils-ui@17.1.0 --prefix "${static_folder}"
npm install --no-save --only=prod --no-fund --no-audit @rero/rero-ils-ui@17.1.1 --prefix "${static_folder}"
fi

# build the web assets
Expand Down
5 changes: 3 additions & 2 deletions scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ function pretests () {
# Vulnerability ID: 71594
# -> Vulnerability found in werkzeug version 2.2.3
# Vulnerability ID: 71595
# ADVISORY: Black before 24.3.0 have a security vulnerability where
# -> Vulnerability found in sentry-sdk version 1.45.1
# Vulnerability ID: 72260
info_msg "Check vulnerabilities:"
safety_exceptions="-i 40459 -i 42194 -i 42852 -i 51457 -i 51668 -i 62019 -i 66742 -i 70612 -i 70624 -i 71594 -i 71595"
safety_exceptions="-i 40459 -i 70624 -i 51668 -i 42194 -i 42852 -i 71594 -i 62019 -i 71595 -i 70612 -i 51457 -i 72260"
msg=$(safety check -o text ${safety_exceptions}) || {
echo "Safety vulnerabilites found for packages:" $(safety check -o bare ${safety_exceptions})
echo "Run: \"safety check -o screen ${safety_exceptions} | grep -i vulnerability\" for more details"
Expand Down

0 comments on commit 95116c0

Please sign in to comment.