v2.0.1.pre-release
·
1384 commits
to refs/heads/main
since this release
🐛 Hotfixes
- Bug fix in v2.0.0.pre-release and Update to v2.0.1.pre-release @hyeinlee00 @FOSSLight-dev @Min-Kyungsun (#1052)
- Fix wrong column name in fosslight_create.sql
- Bug fix in API V2
- Change 3rd party search API return value type
- Fix the bug that source code analysis result was uploaded to BIN tab
- Bug fix in email format
- Bug fix in review report
- Bug fix in search bar in Opensource menu
- Bug fix in SPDX document
Known Issue
Issue1
- Issue: Recent FOSSLight scanner report file format, which includes TLSH and checksum data, cannot be uploaded to the BIN tab.
- Reason: The
TLSHandCHECK_SUMcolumns are not included in theOSS_COMPONENTStable. - Workaround: Manually add the following columns to the
OSS_COMPONENTStable:- `TLSH`text DEFAULT NULL
- `CHECK_SUM` text DEFAULT NULL
Issue2
- Issue: User custom column in list view doesn't work
- Reason: USER_COLUMNS table is not included in fosslight_create.sql
- Note: The table is already included in the migration script 20240401085317_update_2.0.0-beta.sql
- Workaround: Manually add the following SQL script to fosslight_create.sql or create table in DB:
CREATE TABLE `USER_COLUMNS` (
`COLUMNS` longtext DEFAULT NULL,
`LIST_TYPE` varchar(20) NOT NULL DEFAULT '',
`CREATED_DATE` datetime NOT NULL DEFAULT current_timestamp(),
`UPDATED_DATE` datetime NOT NULL DEFAULT current_timestamp(),
`USER_ID` varchar(45) NOT NULL DEFAULT '',
PRIMARY KEY (`LIST_TYPE`,`USER_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Fixed Version
Above issues will be resolved in the official version 2.0.0.