Skip to content

v1.12.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Nov 13:30
· 1067 commits to main since this release

This is version 1.12.0 of the Research Software Directory as a service. Main improvements are:

  • Improved handling of image data:
    • identical images are only stored once
    • unused images are removed from the database automatically.
  • show ORCID for contact persons if available
  • improved handling of code blocks in markdown text

This release requires an update to the database. A migration script from 1.11.1 to 1.12.0 can be found at: https://github.com/research-software-directory/RSD-production/blob/main/database-migration/migration-scripts/1.11.1-to-1.12.0.sql.

This version is production ready. If you starting a new RSD instance (without historical data) you can use docker-compose.yml provided in the deployment.zip file.

If you are migrating from an older version you need to adjust the format of the ".env" file used to configure the RSD containers. You can use this migration script to update your environment. Please add the following lines (or see env.example):

# consumed by services: backend
POSTGRES_DB_HOST=database
# consumed by services: backend
POSTGRES_DB_HOST_PORT=5432

Bug Fixes

  • adapt the data generation script to the new database structure (381a0ad)
  • long code block in markdown breaks page layout (0ae46af)
  • show ORCID in contact person card (54b0d5f)

Features

  • add env vars to specify db host and port (40995c5), closes #671