Skip to content

Commit

Permalink
release: v1.8.0
Browse files Browse the repository at this point in the history
Co-Authored-by: Pascal Repond <pascal.repond@rero.ch>
  • Loading branch information
PascalRepond committed Sep 27, 2022
1 parent fbd90c9 commit f23183b
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# Changelog

## [v1.8.0](https://github.com/rero/sonar/tree/v1.8.0) (2022-08-30)

[Full Changelog](https://github.com/rero/sonar/compare/v1.7.0...v1.8.0)

**New features:**

* Display in pro and public detailed view the number of views and downloads per file (stats) [\#400](https://github.com/rero/sonar/issues/400) (by @jma)
* Add a field `relatedTo` to the document, allowing to refer to related material, such as a dataset. [\#544](https://github.com/rero/sonar/issues/544) (by @Garfield-fr)

**Enhancements:**

* Small improvement in the deposit editor [\#715](https://github.com/rero/sonar/issues/715) (by @PascalRepond)
* Add the software version in the first page footer [\#806](https://github.com/rero/sonar/issues/806) (by @PascalRepond)
* Add 2 document types: conference object, book review [\#881](https://github.com/rero/sonar/issues/881) (by @PascalRepond)
* Remove the preview area in the "diffusion" step of the deposit process [1] [\#263](https://github.com/rero/sonar/issues/263) (by @PascalRepond)
* Editor: adapt to new ng-core version [\#860](https://github.com/rero/sonar/issues/860) (by @PascalRepond)
* Optimise Google Scholar indexation [\#798](https://github.com/rero/sonar/issues/798) (by @Garfield-fr)
* document: update of the abstract display [\#845](https://github.com/rero/sonar/pull/845) (by @Garfield-fr)
* Allow to relaunch a search by clicking on the author's name [\#744](https://github.com/rero/sonar/issues/744) (by @Garfield-fr)
* Add direct link to main file in `oai_dc` export (OAI-PMH) [\#800](https://github.com/rero/sonar/issues/800) (by @Garfield-fr)

**Fixes:**

* templates: fix display problems [\#895](https://github.com/rero/sonar/pull/895) (by @PascalRepond)
* dependencies: fix vulnerabilities [\#897](https://github.com/rero/sonar/pull/897) (by @jma)
* controlled affiliations: fix USI affiliation name [\#880](https://github.com/rero/sonar/pull/880) (by @PascalRepond)
* Problems in the document editor within field `partOf` [\#626](https://github.com/rero/sonar/issues/626) (by @PascalRepond, @jma)
* Impossible to submit a research project (hepvs): it spins forever [\#858](https://github.com/rero/sonar/issues/858) (by @vgranata)
* Field `volume` in the deposit should not be stricter than its equivalent in the document [\#878](https://github.com/rero/sonar/issues/878) (by @PascalRepond)
* Truncated values in autocomplete lists [\#853](https://github.com/rero/sonar/issues/853) (by @Garfield-fr)
* Activate the recording of file access statistics [\#829](https://github.com/rero/sonar/issues/829) (by @jma)
* tests: fix csv serializer test [\#892](https://github.com/rero/sonar/pull/892) (by @PascalRepond)
* documents api: fix missing contribution [\#889](https://github.com/rero/sonar/pull/889) (by @jma)
* Problem with login via SWITCH edu-ID [\#844](https://github.com/rero/sonar/issues/844) (by @jma)

**Other changes:**

* organisations: fix editor ValidationError [\#888](https://github.com/rero/sonar/pull/888) (by @PascalRepond)
* update flask-wiki to 0.2.1 [\#869](https://github.com/rero/sonar/pull/869) (by @PascalRepond)
* module: invenio-record-resources [\#786](https://github.com/rero/sonar/pull/786) (by @rerowep)
* templates: update footer info [\#872](https://github.com/rero/sonar/pull/872) (by @PascalRepond)
* uwsgi: suppress unimportant errors [\#865](https://github.com/rero/sonar/pull/865) (by @rerowep)
* footer: update links [\#868](https://github.com/rero/sonar/pull/868) (by @PascalRepond)

## [v1.7.0](https://github.com/rero/sonar/tree/v1.7.0) (2022-05-05)

[Full Changelog](https://github.com/rero/sonar/compare/v1.6.0...v1.7.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "SONAR"
version = "1.7.0"
version = "1.8.0"
description = "SONAR is an archive of scholarly publications. It intends to collect, promote and preserve the publications of authors affiliated with Swiss public research institutions."
authors = ["RERO <software@rero.ch>"]
license = "GNU Affero General Public License v3.0"
Expand Down
2 changes: 1 addition & 1 deletion sonar/config_sonar.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@
"""Disable permission checks during API calls. Useful when API is test from
command line or progams like postman."""

SONAR_APP_UI_VERSION = '1.5.0'
SONAR_APP_UI_VERSION = '1.6.0'

SONAR_APP_DEFAULT_ORGANISATION = 'global'
"""Default organisation key."""
Expand Down
2 changes: 1 addition & 1 deletion sonar/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@

from __future__ import absolute_import, print_function

__version__ = '1.7.0'
__version__ = '1.8.0'

0 comments on commit f23183b

Please sign in to comment.