Release 2.6.0 - #35
Closed
bunnam988 wants to merge 4 commits into
Closed
Conversation
Release 2.5.0 2.5.0
* Add PR Format Check workflow * Add explicit permissions block (least privilege) * Add issues:write for PR comment API * Add issues:write for PR comment API * Add issues:write for PR comment API
Reason for change: Added XER2 platform specific changes in OvsAgent component to get new platform support availability. Test Procedure: This change is part of intial bringup. Able to build full stack image Board is booting up properly and OvsAgent is running Risks: Low Priority: P2 Signed-off-by: Vysakh A V <vysakh.venugopal@sky.uk>
Contributor
There was a problem hiding this comment.
Pull request overview
Prepares the 2.6.0 release by adding XER2 (Arcadyan AYER21BEL) model recognition to OvsAction, extending platform-specific unit tests, updating the changelog, and introducing a PR-format lint workflow.
Changes:
- Add AYER21BEL/XER2 model mapping and include it in Broadcom WiFi model detection.
- Extend parameterized OvsAction unit tests to cover AYER21BEL.
- Update
CHANGELOG.mdfor 2.6.0 and add a GitHub Actions PR format check workflow.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| source/test/OvsAgent/OvsActionTest.cpp | Adds AYER21BEL to parameterized test coverage and Broadcom WiFi flow expectations. |
| source/OvsAction/ovs_action.c | Recognizes AYER21BEL in model parsing and Broadcom WiFi model classification. |
| source/include/OvsDataTypes.h | Adds OVS_AYER21BEL_MODEL enum value for the new platform. |
| CHANGELOG.md | Adds 2.6.0 release notes entry (with a typo and missing date line noted). |
| .github/workflows/pr-lint.yml | Introduces a reusable PR format lint workflow (security hardening recommended). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| #### [2.6.0](https://github.com/rdkcentral/open-virtual-switch-agent/compare/2.5.0...2.6.0) | ||
|
|
||
| - RDKB-65709: In coperate XER2 Platform support in OvsAgent [`#34`](https://github.com/rdkcentral/open-virtual-switch-agent/pull/34) |
Comment on lines
+7
to
+10
| #### [2.6.0](https://github.com/rdkcentral/open-virtual-switch-agent/compare/2.5.0...2.6.0) | ||
|
|
||
| - RDKB-65709: In coperate XER2 Platform support in OvsAgent [`#34`](https://github.com/rdkcentral/open-virtual-switch-agent/pull/34) | ||
| - RDKB-66032 : Add PR Format Check workflow [`#33`](https://github.com/rdkcentral/open-virtual-switch-agent/pull/33) |
Comment on lines
+16
to
+18
| jobs: | ||
| lint: | ||
| uses: rdkcentral/build_tools_workflows/.github/workflows/pr-lint.yml@develop |
Comment on lines
+17
to
+18
| lint: | ||
| uses: rdkcentral/build_tools_workflows/.github/workflows/pr-lint.yml@develop |
Comment on lines
690
to
+693
| INSTANTIATE_TEST_SUITE_P(PlatformSpecificOvsActionTests, ModelNumBasedTestFixture, | ||
| ::testing::Values((char*)"CGM4140COM", (char*)"TG3482G", | ||
| (char*)"CGM4331COM", (char*)"CGM4981COM", (char*)"CGM601TCOM", (char*)"CWA438TCOM", (char*)"SG417DBCT")); | ||
| (char*)"CGM4331COM", (char*)"CGM4981COM", (char*)"CGM601TCOM", (char*)"CWA438TCOM", (char*)"SG417DBCT", | ||
| (char*)"AYER21BEL")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release 2.6.0