- Mar 29, 2025
-
-
- Mar 25, 2025
-
-
Moser, Maximilian authored
-
- Mar 20, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* at this point it would be nice to have a common base template for notifications for the greeting, footer, etc.
-
Moser, Maximilian authored
-
- Mar 19, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* return the request/record IDs for which reminders will be sent out, to enable simpler asserts in the tests * handle the case that request topic's PID cannot be resolved - this is likely when the topic has not been published yet * include "today" in the "accepted review" reminder, as too new requests will be filtered out anyway and are not expected to add significant load
-
Moser, Maximilian authored
* it looks like these fields in the name entry records got turned into strings at some point in our TISS sync, causing issues during marshmallow serialization
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* to make SonarQube happy
-
Moser, Maximilian authored
* communities are created by administrators on request
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* what we actually want to do is `removeprefix()` and `removesuffix()`
-
Moser, Maximilian authored
* this is quite a bit simpler than cobbling together the message in a normal python function
-
Moser, Maximilian authored
* whenever somebody other than the record owner publishes an edit for a record, the owner gets a notification with a summary of the changes * if the owner publishes the edit themselves, then no such mail will be sent out - same for the system identity * shared links with "edit" permissions still require a login to access the deposit form anyway, so edits are always backed by users
-
- Mar 18, 2025
-
-
Moser, Maximilian authored
* by temporarily overriding the `notification.type`
-
- Mar 17, 2025
-
-
Moser, Maximilian authored
* because it's very easy to get lost in the code without explanation
-
Moser, Maximilian authored
* so that reviewers know that somebody has started looking at the record and can remove it from their (mental) TODO list
-
- Mar 11, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* the "metadata" service component copies over every field *except for* "version" and "publication_date" from the old record
-
Moser, Maximilian authored
* missing version fields are handled by the UIJSONSerializer by constructing a string of the shape "v{version_index}" * the "metadata" service component removes both the "version" and "publication_date" fields from new versions of records * experience shows that users rarely put in explicit values for the version field, which creates inconsistency
-
- Feb 28, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* with the new rdm-curation workflow, community-submission requests cannot be used to circumvent our mandatory reviews anymore * also, they have been requested as a feature
-
- Feb 13, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* previously, this property was missing from the fake entity which would trip up notification builders
-
Moser, Maximilian authored
* setting an empty value in the settings form previously caused a validation error because the empty string is not a valid email address
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* previously, i forgot to override that configuration item after calculating its value * if not set as configuration explicitly, Invenio-RDM-Records would then set a default value of "127.0.0.1:5000" for it
-
- Feb 11, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* because Invenio-App-RDM sets a default value for that config item mismatching our setup
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* Invenio-Config already takes care of checking the value in real Invenio applications and issues a warning if it's unset
-
Moser, Maximilian authored
* `tuw_config` is a bit nicer than `zzz_invenio_config_tuw`, and should still be the last entry in the list considering the usual naming scheme
-
Moser, Maximilian authored
* previously, our configuration magic was performed as part of the `finalize_app` entrypoint * while this worked well enough for most use cases, some extensions would break this model by caching values during their initialization * especially caching-related extensions like to take eagerly create clients with the current configuration items, which are hard to fix afterwards * keeping track of all the instantiated clients just to change their connection details when we perform our magic really didn't seem like a good approach * so instead, we now made sure that our extension is loaded first and can thus perform its configuration magic before any other extension has a chance of caching values * also, extension loading happens after the configuration loading is done (especially the handling of environment variables)
-
Moser, Maximilian authored
* since we're not quite ready for matrix notifications yet, this wasn't supposed to be added to the code
-
- Feb 10, 2025
-
-
Moser, Maximilian authored
-
Moser, Maximilian authored
* add functionality to assemble some config items (like the DB connection string) from their parts * this was previously implemented in our `invenio.cfg`, but more flaky because it had to deal with parsing and setting environment variables * also refactor the startup module
-
Moser, Maximilian authored
* sometimes the cleanup operations for failed file uploads seem to leave over some `FileInstance` entries in the database that have a null URI * these file instances cause the periodic health checks to fail and trigger warning emails
-
- Feb 08, 2025
-
-
Moser, Maximilian authored
-