Add notes for 2017-03-09

This commit is contained in:
2017-03-09 14:29:50 +02:00
parent fe1dc3ae37
commit 169a639d79
6 changed files with 59 additions and 10 deletions

View File

@ -139,3 +139,12 @@ google.citation_doi = cg.identifier.doi
- Merge the author separator changes to `5_x-prod`, as everyone has responded positively about it, and it's the default in Mirage2 afterall!
- Cherry pick the `commons-collections` patch from DSpace's `dspace-5_x` branch to address DS-3520: https://jira.duraspace.org/browse/DS-3520
## 2017-03-09
- Export list of sponsors so Peter can clean it up:
```
dspace=# \copy (select text_value, count(*) from metadatavalue where resource_type_id=2 and metadata_field_id IN (select metadata_field_id from metadatafieldregistry where element = 'description' and qualifier = 'sponsorship') group by text_value order by count desc) to /tmp/sponsorship.csv with csv;
COPY 285
```