Skip to content

Commit

Permalink
Merge pull request #36 from FAIRDataTeam/release/1.13.0
Browse files Browse the repository at this point in the history
Release 1.13.0
  • Loading branch information
MarekSuchanek authored May 2, 2022
2 parents f1a805f + 34ca83c commit 2324300
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Dutch Techcentre for Life Sciences'

# The full version, including alpha/beta/rc tags
release = '1.12.0'
release = '1.13.0'


# -- General configuration ---------------------------------------------------
Expand Down
10 changes: 5 additions & 5 deletions docs/deployment/advanced-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ To enable FDP Index mode on your FDP server, just simply adjust your ``applicati
# application.yml
fdp-index:
enabled: true
instance:
index: true
Then for the FDP client, you need to use ``fairdata/fairdatapoint-index-client`` Docker image for browsing indexed FDPs and searching harvested metadata. In case you want to use your deployment both as FDP and FDP Index, you can deploy both FDP and FDP Index client applications. The configuration of both clients are identical.
Expand All @@ -167,7 +167,7 @@ Then for the FDP client, you need to use ``fairdata/fairdatapoint-index-client``
# ...
index_client:
image: fairdata/fairdatapoint-index-client:1.12.0
image: fairdata/fairdatapoint-index-client:1.13
restart: always
# ...
Expand Down Expand Up @@ -308,13 +308,13 @@ have to set ``PUBLIC\_PATH`` ENV variable, in this example to
version: '3'
services:
fdp:
image: fairdata/fairdatapoint:1.12.0
image: fairdata/fairdatapoint:1.13
volumes:
- ./application.yml:/fdp/application.yml:ro
# ... other volumes
fdp-client:
image: fairdata/fairdatapoint-client:1.12.0
image: fairdata/fairdatapoint-client:1.13
ports:
- 80:80
environment:
Expand Down
16 changes: 8 additions & 8 deletions docs/deployment/local-deployment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Here is an example of the simplest `Docker Compose <https://docs.docker.com/comp
services:
fdp:
image: fairdata/fairdatapoint:1.12.0
image: fairdata/fairdatapoint:1.13
fdp-client:
image: fairdata/fairdatapoint-client:1.12.0
image: fairdata/fairdatapoint-client:1.13
ports:
- 80:80
environment:
Expand Down Expand Up @@ -67,12 +67,12 @@ Then, we need to mount the application config into the FDP container and update
services:
fdp:
image: fairdata/fairdatapoint:1.12.0
image: fairdata/fairdatapoint:1.13
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.12.0
image: fairdata/fairdatapoint-client:1.13
ports:
- 8080:80
environment:
Expand Down Expand Up @@ -105,10 +105,10 @@ Here is the updated docker-compose file:
services:
fdp:
image: fairdata/fairdatapoint:1.12.0
image: fairdata/fairdatapoint:1.13
fdp-client:
image: fairdata/fairdatapoint-client:1.12.0
image: fairdata/fairdatapoint-client:1.13
ports:
- 80:80
environment:
Expand Down Expand Up @@ -153,12 +153,12 @@ We now need to update our ``docker-compose.yml`` file, we add a new volume for t
services:
fdp:
image: fairdata/fairdatapoint:1.12.0
image: fairdata/fairdatapoint:1.13
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.12.0
image: fairdata/fairdatapoint-client:1.13
ports:
- 80:80
environment:
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/production-deployment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ We have certificates generated and configuration for proxy ready. Now we need to
- /etc/letsencrypt:/etc/letsencrypt:ro
fdp:
image: fairdata/fairdatapoint:1.12.0
image: fairdata/fairdatapoint:1.13
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.12.0
image: fairdata/fairdatapoint-client:1.13
environment:
- FDP_HOST=fdp
Expand Down
8 changes: 8 additions & 0 deletions docs/development/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ Overview

Here we summarize the key features and changes for each FAIR Data Point release. For details including bugfixes and minor changes, see :ref:`detailed-changelog`.

1.13.0
------

- Added restriction to URL prefixes of Resource Definitions ([a-zA-Z_-]*)
- Upgraded Java JDK from 16 to 17, updated SpringDoc OpenAPI UI and several other dependencies
- Compliance with FDP-O ontology (fdp-o:FAIRDataPoint)
- Added form preview to shape edit

1.12.0
------

Expand Down

0 comments on commit 2324300

Please sign in to comment.