Skip to content

RDKEMW-10596: Merge Release branch to Main for MW 8.4.2.0 Q4 Monthly Develop Release#886

Merged
divyang-public merged 133 commits intomainfrom
release/1.13.0
Nov 28, 2025
Merged

RDKEMW-10596: Merge Release branch to Main for MW 8.4.2.0 Q4 Monthly Develop Release#886
divyang-public merged 133 commits intomainfrom
release/1.13.0

Conversation

@divyang-public
Copy link
Contributor

No description provided.

rdkcm-rdke and others added 30 commits October 19, 2025 15:55
RDKEMW-8528 - Auto PR for rdkcentral/meta-rdk 304
…ic-support_pr_1939

RDKEMW-9510 - Auto PR for rdkcentral/meta-middleware-generic-support 1939
RDKEMW-8528 - Auto PR for rdkcentral/meta-rdk 306
…ideo_issue_1877

RDKEMW-7763 - Auto PR for rdkcentral/meta-rdk-video 1877
RDKEMW-3485 - Auto PR for rdkcentral/meta-rdk 301
…ic-support_pr_1920

RDKEMW-3485 - Auto PR for rdkcentral/meta-middleware-generic-support 1920
…eware-generic-support_issue_1626

RDKEMW-8349 - Auto PR for rdkcentral/meta-middleware-generic-support 1626
…ideo_issue_1880

RDKEMW-9003 - Auto PR for rdkcentral/meta-rdk-video 1880
RDKEMW-9603 - Auto PR for rdkcentral/meta-rdk-video 1882
…ic-support_pr_1955

RDKEMW-8850 - Auto PR for rdkcentral/meta-middleware-generic-support 1955
…ideo_issue_1881

RDKEMW-9411 - Auto PR for rdkcentral/meta-rdk-video 1881
RDKEMW-8425 - Auto PR for rdkcentral/meta-rdk-video 1691
…eware-generic-support_issue_1814

RDKEMW-6120 - Auto PR for rdkcentral/meta-middleware-generic-support 1814
…ic-support_pr_1928

RDKEMW-9418 - Auto PR for rdkcentral/meta-middleware-generic-support 1928
rdkcm-rdke and others added 20 commits November 12, 2025 19:31
…eware-generic-support_issue_2115

RDKEMW-7765 - Auto PR for rdkcentral/meta-middleware-generic-support 2115
RDKEMW-10309 - Auto PR for rdkcentral/meta-rdk-video 2016
…eware-generic-support_issue_2161

RDKEMW-10176 - Auto PR for rdkcentral/meta-middleware-generic-support 2161
…ideo_issue_1995

RDKEMW-9964 - Auto PR for rdkcentral/meta-rdk-video 1995
…eware-generic-support_issue_2171

RDKEMW-10189 - Auto PR for rdkcentral/meta-middleware-generic-support 2171
* RDKEMW-10068: Submanifest and Changelog Updates for MW 8.4.1.1 Q4 Patch Release

Signed-off-by: Divyang Abhay Sarangi <divyangabhay_sarangi@comcast.com>

* RDKEMW-10068: Submanifest and Changelog Updates for MW 8.4.1.1 Q4 Patch Release

Signed-off-by: Divyang Abhay Sarangi <divyangabhay_sarangi@comcast.com>

* RDKEMW-10068: Submanifest Update for MW 8.4.1.1 Q4 Patch Release

Signed-off-by: Divyang Abhay Sarangi <divyangabhay_sarangi@comcast.com>

---------

Signed-off-by: Divyang Abhay Sarangi <divyangabhay_sarangi@comcast.com>
Co-authored-by: plaksh002c-public <prajwal.lakshmin@wipro.com>
Co-authored-by: svc_rdkgerrit02 <Alexey_Sergeev@cable.comcast.com>
Co-authored-by: Divyang Abhay Sarangi <divyangabhay_sarangi@comcast.com>
…eware-generic-manifest_issue_820

RDKEMW-10068 - Auto PR for rdkcentral/rdke-middleware-generic-manifest 820
…ideo_issue_2057

RDKEMW-9431 - Auto PR for rdkcentral/meta-rdk-video 2057
…ic-support_pr_2179

RDKEMW-10453 - Auto PR for rdkcentral/meta-middleware-generic-support 2179
…ideo_issue_1951

RDKEMW-10507 - Auto PR for rdkcentral/meta-rdk-video 1951
Copilot AI review requested due to automatic review settings November 28, 2025 03:17
@divyang-public divyang-public requested review from a team as code owners November 28, 2025 03:17
@divyang-public divyang-public merged commit 45b1b02 into main Nov 28, 2025
2 checks passed
@divyang-public divyang-public deleted the release/1.13.0 branch November 28, 2025 03:19
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR merges the release branch to main for the MW 8.4.2.0 Q4 Monthly Develop Release, updating version references and adding a PR validation workflow.

  • Updates three meta-layer projects from version 1.12.0 to 1.13.0
  • Updates changelog to reflect version 1.12.2 and adds historical version entries
  • Adds a GitHub Actions workflow to validate PR titles and descriptions

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
middleware-generic.xml Updates revision tags from 1.12.0 to 1.13.0 for meta-middleware-generic-support, meta-rdk, and meta-rdk-video
CHANGELOG.md Updates version header to 1.12.2 and adds extensive changelog entries for versions 1.12.1, 1.12.0, 1.11.1, and 1.11.0-community
.github/workflows/validate_pr_desc.yml Adds new PR description validation workflow to enforce ticket ID format in PR titles and descriptions

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


echo ""
echo "=== Validation Summary ==="
echo "PR Title: $([ "$TITLE_VALID" = true ] && echo "PASSED" || echo " FAILED")"
Copy link

Copilot AI Nov 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent spacing in output format. Line 102 has an extra space before 'FAILED' (' FAILED') while line 103 does not ('FAILED'). Remove the extra space from line 102 for consistent output formatting.

Suggested change
echo "PR Title: $([ "$TITLE_VALID" = true ] && echo "PASSED" || echo " FAILED")"
echo "PR Title: $([ "$TITLE_VALID" = true ] && echo "PASSED" || echo "FAILED")"

Copilot uses AI. Check for mistakes.
fi

# Extract ticket ID from the text
local ticket_prefix=$(echo "$text" | sed -n 's/^\([A-Z0-9]\+\)-[0-9]\+[[:space:]]*:.*$/\1/p')
Copy link

Copilot AI Nov 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Command substitution should use double quotes to prevent word splitting. Change to local ticket_prefix="$(echo "$text" | sed -n 's/^\([A-Z0-9]\+\)-[0-9]\+[[:space:]]*:.*$/\1/p')" to follow shell scripting best practices.

Suggested change
local ticket_prefix=$(echo "$text" | sed -n 's/^\([A-Z0-9]\+\)-[0-9]\+[[:space:]]*:.*$/\1/p')
local ticket_prefix="$(echo "$text" | sed -n 's/^\([A-Z0-9]\+\)-[0-9]\+[[:space:]]*:.*$/\1/p')"

Copilot uses AI. Check for mistakes.
@github-actions github-actions bot locked and limited conversation to collaborators Nov 28, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants