Compare commits

..

4 Commits

Author SHA1 Message Date
Mojib Wali
d5fcf60cf7 v0.8.0 2022-02-09 16:29:35 +01:00
David Eckhard
772b21c93a config: add OAISERVER_ADMIN_EMAIL 2021-12-16 11:54:46 +01:00
mb-wali
c39221378f v0.7.1 2021-12-07 09:54:26 +01:00
mb-wali
a42f86fcdf configs: adds new & changed configs for v7 2021-12-06 14:44:05 +01:00
4 changed files with 28 additions and 4 deletions

View File

@@ -7,6 +7,14 @@
Changes
=======
Version 0.8.0 (released 2022-02-09)
- dep: bump rdm-records version
Version 0.7.1 (released 2021-12-07)
- configs: adds new & changed configs for v7 #76
Version 0.7.0 (released 2021-12-06)
- fix: update blueprint reorder #74

View File

@@ -236,7 +236,7 @@ password from ``users.yaml`` will be used. If that is also absent, a password
will be generated randomly.
"""
RDM_RECORDS_DOI_DATACITE_FORMAT = "{prefix}/{id}"
DATACITE_FORMAT = "{prefix}/{id}"
"""Customize the generated DOI string."""
# Invenio-app-rdm
@@ -315,10 +315,26 @@ reopened regularly.
See https://docs.sqlalchemy.org/en/latest/core/engines.html.
"""
# Redis (cache)
# ========
# Cache or Redis configurations
RATELIMIT_AUTHENTICATED_USER = "25000 per hour;1000 per minute"
"""Increase defaults for authenticated users."""
RATELIMIT_GUEST_USER = "5000 per hour;500 per minute"
"""Increase defaults for guest users."""
# OAI-PMH
# =======
# See https://github.com/inveniosoftware/invenio-oaiserver/blob/master/invenio_oaiserver/config.py
# TODO: move to gitlab
OAISERVER_ID_PREFIX = "repository.tugraz.at"
"""The prefix that will be applied to the generated OAI-PMH ids."""
OAISERVER_ADMIN_EMAILS = [
'oai@repository.tugraz.at',
]
"""The e-mail addresses of administrators of the repository.
It **must** include one or more instances.
"""

View File

@@ -12,4 +12,4 @@ This file is imported by ``invenio_config_tugraz.__init__``,
and parsed by ``setup.py``.
"""
__version__ = "0.7.0"
__version__ = "0.8.0"

View File

@@ -51,7 +51,7 @@ setup_requires = [
install_requires = [
# keep this in sync with invenioRDM release
"invenio-rdm-records>=0.33.2,<0.34.0",
"invenio-rdm-records>=0.34.4,<0.35.0",
"invenio-cache>=1.1.0"
]