Skip to content

Commit d604d09

Browse files
committed
Merge branch 'release/1.10.1' into main
2 parents b7965f4 + 57602bc commit d604d09

File tree

7 files changed

+577
-555
lines changed

7 files changed

+577
-555
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ 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.10.1](https://github.com/rdkcentral/entservices-apis/compare/1.10.0...1.10.1)
8+
9+
- RDKEMW-3904: rateLimit Call Not Having Any Effect [`#339`](https://github.com/rdkcentral/entservices-apis/pull/339)
10+
- Topic/5072 [`#355`](https://github.com/rdkcentral/entservices-apis/pull/355)
11+
- RDKEMW-5807 Update the LEDControl plugin entservice-apis doc [`#349`](https://github.com/rdkcentral/entservices-apis/pull/349)
12+
- RDK-55551-RDKEMW-1012: update FrameRate plugin documentation [`#338`](https://github.com/rdkcentral/entservices-apis/pull/338)
13+
- Merge tag '1.10.0' into develop [`96bed70`](https://github.com/rdkcentral/entservices-apis/commit/96bed70f55007b2f558a353058fc55357cd702b6)
14+
715
#### [1.10.0](https://github.com/rdkcentral/entservices-apis/compare/1.9.1...1.10.0)
816

17+
> 2 July 2025
18+
919
- Revert "RDKEMW-2854 : IXCast.h interface headers not following coding… [`#337`](https://github.com/rdkcentral/entservices-apis/pull/337)
1020
- RDKEMW-1017 RDKEMW-1018: Miracast COMRPC support [`#261`](https://github.com/rdkcentral/entservices-apis/pull/261)
1121
- Rebase with Develop branch [`#335`](https://github.com/rdkcentral/entservices-apis/pull/335)

apis/PackageManager/IAppPackageManager.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ namespace Exchange {
144144
// @brief RateLimit
145145
// @text rateLimit
146146
// @param downloadId: Download id
147-
virtual Core::hresult RateLimit(const string &downloadId, uint64_t &limit /* @out */) = 0;
147+
// @param limit: Limit
148+
virtual Core::hresult RateLimit(const string &downloadId, const uint64_t &limit) = 0;
148149
};
149150

150151

apis/common.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,15 @@
188188
"default": null,
189189
"description": "Always null"
190190
}
191+
},
192+
"result": {
193+
"type": "boolean",
194+
"default": true,
195+
"description": "Always true"
196+
},
197+
"success": {
198+
"type": "boolean",
199+
"default": true,
200+
"description": "Indicates success"
191201
}
192202
}

0 commit comments

Comments
 (0)