Skip to content

Commit 7c4806d

Browse files
committed
docs: updates
1 parent b60d57d commit 7c4806d

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

ChangeLog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
# ChangeLog - FOSSology.REST.dotnet
22

3-
## NEXT
3+
## 1.4.0 (2023-03-21)
44

55
* support REST API 1.5.1 feaures:
66
* support new maintenance endpoint.
77
* support new upload features.
88
* new `GetUploadFileById` to download an upload file.
99
* new `GetUploadCopyrights` to get the copyrights for an upload.
10+
* not yet implemented:
11+
* set permissions for a upload in a folder for different groups (`/uploads/{id}/permissions`)
12+
* get all the groups with their respective permissions for a upload (`/uploads/{id}/perm-groups`)
13+
* create a new user (`POST /users`)
14+
* edit user details by id (`PUT /users`)
15+
* create a new REST API token (`POST /users/tokens`)
16+
* get all the REST API tokens for a user (`/users/tokens/{type}`)
17+
* get all jobs created by all users (`/jobs/all`)
18+
* return jobs for the given upload id (`/jobs/history`)
19+
* delete group by id (`/groups/{id}/user/{userId}`)
20+
* selete group member by groupId and userId (`/groups/{id}/user/{userId}`)
21+
* importing ...
22+
* get a list of license candidates from the database (`/license/admincandidates`)
1023

1124
## 1.3.0 (2022-12-30)
1225

Fossology.Rest.Dotnet.Model/CreateMaintenanceInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ public class CreateMaintenanceInfo
110110
public List<string> Options { get; set; }
111111

112112
/// <summary>
113-
/// Gets or sets the logs date.
113+
/// Gets or sets the date from which to remove older log files from repository.
114114
/// </summary>
115115
[JsonProperty("logsDate")]
116116
public string LogsDate { get; set; }
117117

118118
/// <summary>
119-
/// Gets or sets gold date.
119+
/// Gets or sets date from which to remove older gold files from repository.
120120
/// </summary>
121121
[JsonProperty("goldDate")]
122122
public string GoldDate { get; set; }

0 commit comments

Comments
 (0)