You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+52Lines changed: 52 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,58 @@ This is the changelog file of the sw360 project. It starts with the first releas
4
4
5
5
https://github.com/sw360/sw360portal/releases
6
6
7
+
## sw360-13.4.0-M1
8
+
9
+
This tag covers many corrections and bug fixes after the 13.3 release. Th eproductive use of 13.3 has revealed a number of issues resulting from the big persistence layer switch.
10
+
11
+
This release provides also features, however, some smaller news are there, for example, new REST endpoints or new functions in the UI.
12
+
13
+
### Migrations
14
+
15
+
For this version, no database migration is necessary.
16
+
17
+
### Credits
18
+
19
+
The following github users have contributed to the source code since the last release (in alphabetical order):
20
+
21
+
```
22
+
abdul.kapti@siemens-healthineers.com
23
+
jaideep.palit@siemens.com
24
+
kumar.ravindra@siemens.com
25
+
michael.c.jaeger@siemens.com
26
+
nam1.nguyenphuong@toshiba.co.jp
27
+
smruti.sahoo@siemens.com
28
+
yosuke.yamada.no@hitachi.com
29
+
```
30
+
31
+
Please note that also many other persons usually contribute to the project with reviews, testing, documentations, conversations or presentations.
32
+
33
+
### Features
34
+
35
+
*`3089008c` feat(rest): Support map of release id to usage as request body in addition to previous array of release id for
36
+
*`df2f6dad` feat(VirusScanSchedulerService): Scheduler Service for deletion of attachment from local FS
37
+
*`276650a9` feat(ObligationHelpTextforProject): Provide the different obligation help text from the Projects Screen
38
+
*`ec37c480` feat(moderations): Pagination in requests tab for moderations
39
+
*`0d739556` feat(obligationlevelhelptext):Provide info text for different obligation Level
40
+
*`83282112` feat(ProjectUI): feature to add License Info to linked releases from License Clearing tab
41
+
*`afdac6f5` feat(ProjectVersion): Added the project version in the search Project filter
42
+
*`4b1a1b3f` feat(ProjectUI): Fixed copy of projects removes linked subprojects
43
+
*`d44b63ba` feat(ProjectGroupFilter):Filter the projects in Advanced Search based on Projects Group
44
+
*`4140a8ad` feat(rest): Added new endpoints to update attachment info of Project, Component, Release
45
+
*`96443359` feat(rest): Added rest endpoint to update project-release-relationship information of linked releases in a project
46
+
*`756190b4` feat(ProjectUI): feature to display the source files linked with the licenses
47
+
48
+
### Corrections
49
+
50
+
*`ef27ad5d` fix(rest): Auto-set release clearing state
51
+
*`debfe70d` Fix: Rest interface can not handle licenses which do not exist in the database #534
52
+
*`2d56d0b4` fix: Wrong error handling when deleting multiple components #851nam1.nguyenphuong@toshiba.co.jp
53
+
*`9a31049d` fix(script): Build failure of sw360dev.Dockerfile and compileWithDocker.sh
54
+
*`9f32b882` fix(readmeossdownload): Null pointer while downloading readme_oss
55
+
*`f0aa5cbf` fix(ui/rest): Issue fetching releases by external ids and null value in external id breaks the release view
56
+
*`baaa9f42` fix(search): search releases while linking to project
57
+
*`00083ea8` fix(backend): Issues with boolean and timestamp field deserialization and get attachment info REST
58
+
7
59
## sw360-13.3.0-M1
8
60
9
61
This tag is applied to have the migration from cloudant to ektorp in one single step. Ektorp is a Java library which provides an object oriented interface to the (REST-based) access to couchdb. It has been used in sw360 from day 1. Now we concluded to replace ektorp: it does not support paging; having our server growing larger and lager and serving more and more users, receiving results sets from a couchdb view without paging is a pain. And it did not look like it will be supported, because the ektorp project looks calm now (last commit to master in 2017). Among the available options for replacing ektorp, we choose the java-client from the open source project cloudant (version 2.19.1, see https://github.com/cloudant/java-cloudant). It supports paging and offers potentially other interesting features (caching, compatibility with MongoDB, etc.).
@@ -23,7 +23,7 @@ It is comprised of one frontend (portal) part, backend (services) part and addit
23
23
* Database: we store software components and metadata about them in CouchDB.
24
24
* Rest: this REST API provides access to project resources for external integration.
25
25
26
-
The reference platform is the Ubuntu server 18.04 (which is an LTS version). However, it runs well on other OSes (see below).
26
+
The reference platform is the Ubuntu server 20.04 (which is an LTS version) as it is supported in sw360vagrant. However, it runs well on other OSes (see below).
27
27
28
28
### Project structure
29
29
@@ -38,8 +38,8 @@ This is a multi module maven file. please consider that we have the following mo
38
38
### Required software
39
39
40
40
* Java 11, tested with OpenJDK
41
-
* CouchDB, at least 2.1 (tested, may work with other releases of CouchDB as well)
42
-
* Liferay Portal CE 7.3.3 GA4
41
+
* CouchDB, at least 2.1 (tested, may work with other releases of CouchDB as well), runs best with 3.1.1
42
+
* Liferay Portal CE 7.3.3 GA4 or 7.3.4 GA5
43
43
* Apache Tomcat 9.0.X (which is bundled with Liferay)
44
44
* couchdb-lucene for search, please refer to installation details in the wiki, because a patch is required
45
45
@@ -51,6 +51,7 @@ In addition, the Liferay instance must provide the following dependecies via OSG
Then, you must install Apache Tomcat, CouchDB. And, Java of course.
70
71
71
-
The software is tested with with debian 8, debian 9, ubuntu 16.04, ubuntu 18.04, macosx 10.8 - 10.14. We run Liferay with PostgreSQL 9.X or 10 as the Liferay CE requires, but HSQL (provided with the liferay bundle) runs also OK.
72
+
The software is tested with with debian 8, debian 9, ubuntu 16.04, ubuntu 18.04, ubuntu 20.04 macosx 10.8 - 10.15. We run Liferay with PostgreSQL 9.X or 10 as the Liferay CE requires, but HSQL (provided with the liferay bundle) runs also OK.
72
73
73
74
### PROBLEMS
74
75
@@ -119,18 +120,18 @@ You may also specify the paths using these properties:
Be aware that you have to deploy the liferay artifacts in the Liferay auto-deploy folder.
123
+
Be aware that you have to deploy the Liferay artifacts in the Liferay auto-deploy folder.
123
124
On the other hand you must not deploy rest and backend artifacts to the auto-deploy folder.
124
125
125
-
**Note:** the test framework for the REST API needs the tests running in order to generate the API documentation. So, for building the REST API artefacts, please switch in the rest subprojects and execute:
126
+
**Note:** the test framework for the REST API needs the tests running in order to generate the API documentation. So, for building the REST API artefacts, please switch in the rest sub projects and execute:
0 commit comments