Skip to content

Commit

Permalink
4.2.5 changelog. (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxprunayre authored Jul 7, 2023
1 parent a2248ec commit 0460f61
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 1 deletion.
34 changes: 34 additions & 0 deletions source/customizing-application/adding-static-pages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,37 @@ The status of the page can be changed with the method PUT ``/api/pages/{language
- `HIDDEN` - Hidden to anyone

Other methods in the API are to change/delete a page and to GET the list of the pages or the info of a specific one.

Change the menu order in the top toolbar
````````````````````````````````````````


Pages can be inserted in between catalogue default menu which are:


.. code-block:: json
["gn-site-name-menu",
"gn-portal-switcher",
"gn-search-menu",
"gn-map-menu",
"gn-contribute-menu",
"gn-admin-menu"]
Insert a page as a simple menu using its id or as a submenu using an object:

.. code-block:: json
["gn-site-name-menu",
"gn-portal-switcher",
"gn-search-menu",
{"Quick search": [
"searchForAfrica",
"forReview"
]},
"gn-map-menu",
"gn-contribute-menu",
"gn-admin-menu",
"documentation"]
1 change: 1 addition & 0 deletions source/overview/change-log/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ Change log
version-4.2.2.rst
version-4.2.3.rst
version-4.2.4.rst
version-4.2.5.rst
71 changes: 71 additions & 0 deletions source/overview/change-log/version-4.2.5.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
.. _version-425:

Version 4.2.5
#############

GeoNetwork 4.2.5 release is a minor release.

Migration notes
---------------

Database changes
~~~~~~~~~~~~~~~~

* Remove Language table isdefault column (`More information <https://github.com/geonetwork/core-geonetwork/pull/7169>`__).

API changes
~~~~~~~~~~~

* API for link analysis

* ``PUT /records`` when using OVERWRITE mode only the XML of the metadata is updated. Use REMOVE_AND_REPLACE for previous mechanism which remove the existing metadata and inserting the new one. When workflow is enabled, OVERWRITE is not allowed (`More information <https://github.com/geonetwork/core-geonetwork/pull/7178>`__).

Index changes
~~~~~~~~~~~~~

After update, don't forget to go to admin console > tools > Delete index and reindex.


Thesaurus changes
~~~~~~~~~~~~~~~~~

If using the default regions thesaurus, `update the thesaurus dates before starting the application <https://github.com/geonetwork/core-geonetwork/pull/7208/files>`__
(`More information <https://github.com/geonetwork/core-geonetwork/issues/7207>`__).



List of changes
---------------

Major changes:

* `Full text search / Add search by individual name and email <https://github.com/geonetwork/core-geonetwork/pull/7167>`_

* `Map / Layer manager / Add support for multilingual layer title <https://github.com/geonetwork/core-geonetwork/pull/7121>`_

* `RSS / Display RSS links when OGC API Records is installed <https://github.com/geonetwork/core-geonetwork/pull/7094>`_

* `Workflow improvements <https://github.com/geonetwork/core-geonetwork/pulls?q=is%3Apr+milestone%3A4.2.5+is%3Aclosed+workflow>`_

* `CSW / DCAT / Fix for multilingual records <https://github.com/geonetwork/core-geonetwork/pull/7161>`_

* `ATOM feeds / Support elements using anchor <https://github.com/geonetwork/core-geonetwork/pull/7156>`_

* `SEO / Set HTML head title and description <https://github.com/geonetwork/core-geonetwork/pull/7080>`_

* `DOI / Support European Union Publication Office format <https://github.com/geonetwork/core-geonetwork/pull/6979>`_

* `User interface / Update Font-awesome icon library <https://github.com/geonetwork/core-geonetwork/pull/7007>`_

* `Admin / Harvester / Fix log file access <https://github.com/geonetwork/core-geonetwork/pull/7127>`_

* `Admin / Pages / Add support for submenu <https://github.com/geonetwork/core-geonetwork/pull/7138>`_

* `Installation / Database / Add config property to turn off database creation/migration on startup <https://github.com/geonetwork/core-geonetwork/pull/7100>`_




and more ... see `4.2.5 issues <https://github.com/geonetwork/core-geonetwork/issues?q=is%3Aissue+milestone%3A4.2.5+is%3Aclosed>`_ and
`pull requests <https://github.com/geonetwork/core-geonetwork/pulls?page=3&q=is%3Apr+milestone%3A4.2.5+is%3Aclosed>`_ for full details.

9 changes: 8 additions & 1 deletion source/user-guide/associating-resources/doi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ Digital Object Identifier (DOI)
Configuration
-------------

`DataCite API <https://support.datacite.org/docs/mds-api-guide>`_ is used to create DOI.
The catalogue support DOI creation using:

* `DataCite API <https://support.datacite.org/docs/mds-api-guide>`_.

* EU publication office API https://ra.publications.europa.eu/servlet/ws/doidata?api=medra.org



Configure the API access point in the ``admin console > settings``:

.. figure:: img/doi-admin-console.png
Expand Down

0 comments on commit 0460f61

Please sign in to comment.