File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
Fossology.Rest.Dotnet.Model Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog - FOSSology.REST.dotnet
2
2
3
- ## NEXT
3
+ ## 1.4.0 (2023-03-21)
4
4
5
5
* support REST API 1.5.1 feaures:
6
6
* support new maintenance endpoint.
7
7
* support new upload features.
8
8
* new ` GetUploadFileById ` to download an upload file.
9
9
* 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 ` )
10
23
11
24
## 1.3.0 (2022-12-30)
12
25
Original file line number Diff line number Diff line change @@ -110,13 +110,13 @@ public class CreateMaintenanceInfo
110
110
public List < string > Options { get ; set ; }
111
111
112
112
/// <summary>
113
- /// Gets or sets the logs date.
113
+ /// Gets or sets the date from which to remove older log files from repository .
114
114
/// </summary>
115
115
[ JsonProperty ( "logsDate" ) ]
116
116
public string LogsDate { get ; set ; }
117
117
118
118
/// <summary>
119
- /// Gets or sets gold date .
119
+ /// Gets or sets date from which to remove older gold files from repository .
120
120
/// </summary>
121
121
[ JsonProperty ( "goldDate" ) ]
122
122
public string GoldDate { get ; set ; }
You can’t perform that action at this time.
0 commit comments