Skip to content

Commit f86a8c0

Browse files
Merge branch 'develop' of github.com:rdkcentral/entservices-apis into feature/RDKEMW-1017_1018_miracast_comrpc_support
Signed-off-by: yuvaramachandran_gurusamy <[email protected]>
2 parents 417ce9d + 1e2ba8e commit f86a8c0

File tree

7 files changed

+494
-27
lines changed

7 files changed

+494
-27
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,26 @@ 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.8.0](https://github.com/rdkcentral/entservices-apis/compare/1.7.4...1.8.0)
8+
9+
- * RDKEMW-1015 : HDMICEC SINK COMRPC [`#114`](https://github.com/rdkcentral/entservices-apis/pull/114)
10+
- RDK-57197: Add Analytics sendEvent.appId and update documentation [`#280`](https://github.com/rdkcentral/entservices-apis/pull/280)
11+
- Merge tag '1.7.4' into develop [`501e1b2`](https://github.com/rdkcentral/entservices-apis/commit/501e1b27a3ea1734fff8b3a50d5f1e3e76ec629c)
12+
13+
#### [1.7.4](https://github.com/rdkcentral/entservices-apis/compare/1.7.3...1.7.4)
14+
15+
> 19 June 2025
16+
17+
- RDKEMW-5316 : To list AV1 codec from PlayerInfo [`#299`](https://github.com/rdkcentral/entservices-apis/pull/299)
18+
- 1.7.4 release changelog updates [`f63b249`](https://github.com/rdkcentral/entservices-apis/commit/f63b249ca696bc26ebdf0a1180b7cc49f4450441)
19+
- Merge tag '1.7.3' into develop [`a7adee3`](https://github.com/rdkcentral/entservices-apis/commit/a7adee30028485acad6c9ff95bf9181ab98bc03c)
20+
721
#### [1.7.3](https://github.com/rdkcentral/entservices-apis/compare/1.7.2...1.7.3)
822

23+
> 18 June 2025
24+
925
- RDKEMW-5139: RDKEMW-5139: [RDKM-VA-Devices]EntServices : DeviceInfo.modelid, DeviceInfo.make and DeviceInfo.socname APIs return ERROR_GENERAL response. [`#277`](https://github.com/rdkcentral/entservices-apis/pull/277)
26+
- RDKEMW-5139 - Changelog updates for 1.7.3 [`c4da0dc`](https://github.com/rdkcentral/entservices-apis/commit/c4da0dc64da820d595a810409112f238810f193e)
1027
- Merge tag '1.7.2' into develop [`17895d0`](https://github.com/rdkcentral/entservices-apis/commit/17895d0c89434f22c074df40a14fd0d276d8ab33)
1128

1229
#### [1.7.2](https://github.com/rdkcentral/entservices-apis/compare/1.7.1...1.7.2)
@@ -215,11 +232,17 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
215232
- Merge tag '1.3.1' into develop [`8a2352c`](https://github.com/rdkcentral/entservices-apis/commit/8a2352c5ea75c5827a97130869b6d922d7d0a620)
216233
- RDKEMW-1009 Update DeviceDiagnostics plugin doc [`c6f1756`](https://github.com/rdkcentral/entservices-apis/commit/c6f1756394e386e019575067388affc6d9d39026)
217234

218-
#### [1.3.1](https://github.com/rdkcentral/entservices-apis/compare/1.3.0...1.3.1)
235+
#### [1.3.1](https://github.com/rdkcentral/entservices-apis/compare/1.3.1-RDK7.1...1.3.1)
219236

220237
> 2 April 2025
221238
239+
#### [1.3.1-RDK7.1](https://github.com/rdkcentral/entservices-apis/compare/1.3.0...1.3.1-RDK7.1)
240+
241+
> 18 June 2025
242+
243+
- RDKEMW-5139: [RDKM-VA-Devices]EntServices : DeviceInfo.modelid, DeviceInfo.make and DeviceInfo.socname APIs return ERROR_GENERAL response. [`#304`](https://github.com/rdkcentral/entservices-apis/pull/304)
222244
- RDKEMW-1020: Add COM-RPC support to ScreenCapture plugin [`#76`](https://github.com/rdkcentral/entservices-apis/pull/76)
245+
- RDKEMW-5139 - Changelog updates for 1.3.1-RDK7.1 [`c6aeaa2`](https://github.com/rdkcentral/entservices-apis/commit/c6aeaa2b1484b29c56dbe0af52e810eda90cb6a4)
223246
- 1.3.1 release changelog updates [`3c8ae32`](https://github.com/rdkcentral/entservices-apis/commit/3c8ae32b46cbc3b07bf10955af6824cb1bcab99e)
224247
- Merge tag '1.3.0' into develop [`a90b57f`](https://github.com/rdkcentral/entservices-apis/commit/a90b57f997984acba3039040137c911df17c6c6c)
225248

apis/Analytics/IAnalytics.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ namespace Exchange {
4343
// @param cetList: List of CETs
4444
// @param epochTimestamp: Epoch timestamp of the event
4545
// @param uptimeTimestamp: Uptime timestamp of the event
46+
// @param appId: Durable App Id string
4647
// @param eventPayload: Payload of the event
4748

4849
virtual Core::hresult SendEvent(const string& eventName /* @in */,
@@ -52,6 +53,7 @@ namespace Exchange {
5253
IStringIterator* const& cetList /* @in */,
5354
const uint64_t epochTimestamp /* @in */,
5455
const uint64_t uptimeTimestamp /* @in */,
56+
const string& appId /* @in */,
5557
const string& eventPayload /* @in */ ) = 0;
5658
};
5759
}

0 commit comments

Comments
 (0)