-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modules: hostap: Add support for WPA Auto security #14896
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Test specificationCI/Jenkins/NRF
CI/Jenkins/integration
Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't the commit description be :
"Support WPA Auto security mode wherein supplicant can
implicitly choose the highest security among WPA, WPA2 and WPA3 for association
with a network based on network support." ?
8a05f50
to
3daed92
Compare
3daed92
to
45ff0ee
Compare
0bea90b
to
affc498
Compare
affc498
to
7e70d0f
Compare
6e27d69
to
8479d6f
Compare
8479d6f
to
707c5e9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there is any changelog entry required for this update, please add and for 2.6.1, add a comment in #14941.
707c5e9
to
7ac0595
Compare
doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst
Outdated
Show resolved
Hide resolved
7ac0595
to
2633ed1
Compare
Support WPA Auto security mode wherein supplicant can implicitly choose the highest security among WPA, WPA2 and WPA3 for association with a network based on network support. Fixes SHEL-1131. Signed-off-by: Ravi Dondaputi <[email protected]>
The `connect` command has been updated to take key-value style arguments. Update the description to include this information. Fixes SHEL-2699. Signed-off-by: Ravi Dondaputi <[email protected]>
Add changelog entry for the changes done to `wifi connect` command. Signed-off-by: Ravi Dondaputi <[email protected]>
2633ed1
to
a7f2390
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-v2.6-branch v2.6-branch
# Navigate to the new working tree
cd .worktrees/backport-v2.6-branch
# Create a new branch
git switch --create backport-14896-to-v2.6-branch
# Cherry-pick the merged commits of this pull request and resolve the conflicts
git cherry-pick 048d6f767e5aee8f4a36c58aaef61abb9ee3c84f~3..048d6f767e5aee8f4a36c58aaef61abb9ee3c84f
# Push it to GitHub
git push --set-upstream origin backport-14896-to-v2.6-branch
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-v2.6-branch Then, create a pull request where the |
Support WPA Auto security mode wherein supplicant can
implicitly choose one of WPA, WPA2 and WPA3 for association
with a network.
Fixes SHEL-1131.