Skip to content

Commit 480e47c

Browse files
committed
Merge branch 'release/1.3.12' into main
2 parents 47ede89 + 2f38918 commit 480e47c

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.3.12](https://github.com/rdkcentral/entservices-apis/compare/1.3.11...1.3.12)
8+
9+
- RDKEMW-4187: Missing error response string in the isClean method [`#194`](https://github.com/rdkcentral/entservices-apis/pull/194)
10+
- Merge tag '1.3.11' into develop [`283e0ce`](https://github.com/rdkcentral/entservices-apis/commit/283e0cedd6c673dc74df4ee0f23fd203a81cfc2a)
11+
712
#### [1.3.11](https://github.com/rdkcentral/entservices-apis/compare/1.3.10...1.3.11)
813

14+
> 20 May 2025
15+
916
- RDK-57748: Add new property in contentPin in Usersettings [`#204`](https://github.com/rdkcentral/entservices-apis/pull/204)
1017
- RDKEMW-3964: Missing the milestones and paramList response string (#190) [`#203`](https://github.com/rdkcentral/entservices-apis/pull/203)
1118
- RDKEMW-3964: Missing the milestones and paramList response string [`#190`](https://github.com/rdkcentral/entservices-apis/pull/190)
1219
- RDKEMW-3813: [AI2.0][RDKWindowManager] Add setVisible thunder interface [`#198`](https://github.com/rdkcentral/entservices-apis/pull/198)
20+
- 1.3.11 release changelog updates [`2fa2632`](https://github.com/rdkcentral/entservices-apis/commit/2fa2632897b226234b98126900682193289b5cd0)
1321
- Merge tag '1.3.10' into develop [`5b42b0a`](https://github.com/rdkcentral/entservices-apis/commit/5b42b0a10ca2195bbe6c1514ca55df6e1b22dba5)
1422

1523
#### [1.3.10](https://github.com/rdkcentral/entservices-apis/compare/1.3.9...1.3.10)

apis/Warehouse/IWarehouse.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ namespace WPEFramework
8080
// @param clean - out - boolean
8181
// @param files - out - string [] of file locations for each file
8282
// @param success - out - boolean
83-
virtual Core::hresult IsClean(const int age, bool &clean /* @out */, IStringIterator*& files /* @out */, bool &success /* @out */) = 0;
83+
// @param error -out - string
84+
virtual Core::hresult IsClean(const int age, bool &clean /* @out */, IStringIterator*& files /* @out */, bool &success /* @out */, string& error /* @out */) = 0;
8485

8586
// @text lightReset
8687
// @brief Resets the application data.

docs/apis/WarehousePlugin.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ No Events
226226
| result.files | array | A string [] of file locations for each file that is found that should have been deleted in the cleaning process. If the `clean` property is `true`, then this array is empty or `null` |
227227
| result.files[#] | string | |
228228
| result.success | boolean | Whether the request succeeded |
229+
| result.error | string | An error message in case of a failure |
229230

230231
### Example
231232

@@ -253,7 +254,8 @@ No Events
253254
"files": [
254255
"/opt/ctrlm.sql"
255256
],
256-
"success": true
257+
"success": true,
258+
"error": "..."
257259
}
258260
}
259261
```

tools/json_generator/output/Warehouse/Warehouse.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,16 @@
104104
},
105105
"success":{
106106
"$ref": "#/common/success"
107+
},
108+
"error":{
109+
"$ref": "#/definitions/error"
107110
}
108111
},
109112
"required": [
110113
"clean",
111114
"files",
112-
"success"
115+
"success",
116+
"error"
113117
]
114118
}
115119
},

0 commit comments

Comments
 (0)