Skip to content

Commit

Permalink
Merge pull request #20 from FAIRDataTeam/release/1.7.0
Browse files Browse the repository at this point in the history
Release 1.7.0
  • Loading branch information
MarekSuchanek authored Feb 17, 2021
2 parents 738df34 + ae2f681 commit 0d86ecd
Show file tree
Hide file tree
Showing 8 changed files with 90 additions and 19 deletions.
2 changes: 1 addition & 1 deletion docs/about/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ About FAIR Data Point
**FAIRDataPoint** is a REST API and Web Client for creating, storing, and serving
**FAIR metadata**. The metadata contents are generated
**semi-automatically** according to the `FAIR Data Point software
specification <https://dtl-fair.atlassian.net/wiki/display/FDP/FAIR+Data+Point+software+specification>`__
specification <https://github.com/FAIRDataTeam/FAIRDataPoint-Spec>`__
document.


Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'FAIR Data Point'
copyright = '2020, Dutch Techcentre for Life Sciences'
copyright = '2021, Dutch Techcentre for Life Sciences'
author = 'Dutch Techcentre for Life Sciences'

# The full version, including alpha/beta/rc tags
release = '1.6.0'
release = '1.7.0'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/advanced-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,13 @@ have to set ``PUBLIC\_PATH`` ENV variable, in this example to
version: '3'
services:
fdp:
image: fairdata/fairdatapoint:1.6.0
image: fairdata/fairdatapoint:1.7.0
volumes:
- ./application.yml:/fdp/application.yml:ro
# ... other volumes
fdp-client:
image: fairdata/fairdatapoint-client:1.6.0
image: fairdata/fairdatapoint-client:1.7.0
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.6.0
image: fairdata/fairdatapoint:1.7.0
fdp-client:
image: fairdata/fairdatapoint-client:1.6.0
image: fairdata/fairdatapoint-client:1.7.0
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.6.0
image: fairdata/fairdatapoint:1.7.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.6.0
image: fairdata/fairdatapoint-client:1.7.0
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.6.0
image: fairdata/fairdatapoint:1.7.0
fdp-client:
image: fairdata/fairdatapoint-client:1.6.0
image: fairdata/fairdatapoint-client:1.7.0
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.6.0
image: fairdata/fairdatapoint:1.7.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.6.0
image: fairdata/fairdatapoint-client:1.7.0
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.6.0
image: fairdata/fairdatapoint:1.7.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.6.0
image: fairdata/fairdatapoint-client:1.7.0
environment:
- FDP_HOST=fdp
Expand Down
74 changes: 74 additions & 0 deletions docs/development/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
*********
Changelog
*********

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.7.0
-----

- Including FDP Index functionality into FAIR Data Point with harvesting metadata
- Metadata search including RDF types
- Possibility to change profile and password for current user

1.6.0
-----

- API keys for making integrations with FDP easier
- State "draft" for created metadata

1.5.0
-----

- Support for editable resource definitions
- Possibility to specify custom storage in OpenRefine using frontend

1.4.0
-----

- Ping service for *call home* functionality
- Suggesting prefixes for namespaces

1.3.0
-----

- Introduced `DASH <http://datashapes.org/dash>`_ and dynamic SHACL shapes
- Audit log in OpenRefine extension to keep track of actions performed

1.2.0
-----

- Option to customize metamodel (metadata layers)
- Possibility to delete and create metadata entities

1.1.0
-----

- New monitoring and configuration for client application
- Several further improvements in terms of technical debt
- Enhanced connecting to FDP from OpenRefine extension and update to OpenRefine 3.3

1.0.0
-----

- User management, enhanced security, and ACL
- Huge refactoring and upgrades of previously accumulated features and technical debt
- Separate project for `FAIR Data Point Client <https://github.com/FAIRDataTeam/FAIRDataPoint-client>`_ (frontend application using FDP API)
- New `OpenRefine Metadata Extension <https://github.com/FAIRDataTeam/OpenRefine-metadata-extension>`_ as a replacement for the deprecated FAIRifier


.. _detailed-changelog:

Detailed changelog
==================

Each of components developed has its own Changelog based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
and our projects adhere to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_. It is recommended to use matching
versions of all components.

- `FAIR Data Point Changelog <https://github.com/FAIRDataTeam/FAIRDataPoint/blob/develop/CHANGELOG.md>`_
- `FAIR Data Point Client Changelog <https://github.com/FAIRDataTeam/FAIRDataPoint-client/blob/develop/CHANGELOG.md>`_
- `OpenRefine Metadata Extensions Changelog <https://github.com/FAIRDataTeam/OpenRefine-metadata-extension/blob/develop/CHANGELOG.md>`_
3 changes: 0 additions & 3 deletions docs/development/roadmap.rst

This file was deleted.

2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ FAIR Data Point Reference Implementation Documentation
:maxdepth: 2

development/contributing
development/roadmap
development/changelog

0 comments on commit 0d86ecd

Please sign in to comment.