-
Notifications
You must be signed in to change notification settings - Fork 51
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
feat: handle user nicename change #3725
Conversation
Just found an edge case. If the term slug we want to rename the term to already exists, the script will fail to change the term slug and the posts will no longer be assigned to the user. This will only happen in a broken database... but that's the kind of database where we want to use this tool |
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.
Works as described!
Sorry @dkoo . I removed the Needs review label because I wanted to make some adjustments... I added it back again now. The CLI will now check the availability of the nicename, including looking for CAP terms, before doing anything. WP will already do it for the nicename itself, and add a suffix to avoid conflict, but it ignores the CAP terms... so I added this check |
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.
Re-tested and it still works! Good call on adding the checks for preexisting nicenames.
Hey @leogermani, good job getting this PR merged! 🎉 Now, the Please check if this PR needs to be included in the "Upcoming Changes" and "Release Notes" doc. If it doesn't, simply remove the label. If it does, please add an entry to our shared document, with screenshots and testing instructions if applicable, then remove the label. Thank you! ❤️ |
# [6.0.0-alpha.1](v5.14.2...v6.0.0-alpha.1) (2025-02-20) ### Bug Fixes * **campaigns:** remove placeholder Analytics admin page ([#3729](#3729)) ([abd1bc2](abd1bc2)) * **corrections:** address feedbacks on improving code ([b84fab2](b84fab2)) * **corrections:** improve code formatting ([11ed58c](11ed58c)) * **donations:** handle trashed products and avoid creating dupes ([#3760](#3760)) ([5e78832](5e78832)) * **esp-sync:** transform outgoing dates to site timzeone ([#3728](#3728)) ([77dc361](77dc361)) * **perfmatters:** default for lazyload img setting parent selector ([#3753](#3753)) ([491e335](491e335)) * **recaptcha:** improvements for reCAPTCHA v2 + modal checkout ([#3692](#3692)) ([c4738a7](c4738a7)) * **recaptcha:** no need to scroll to top when showing v2 widget ([#3741](#3741)) ([882d55c](882d55c)) * **woocommerce:** add team name to checkouts for memberships-for-teams ([#3752](#3752)) ([e3661c6](e3661c6)) ### Features * **corrections-modal:** refactor corrections admin UI ([0adac63](0adac63)) * **corrections:** add date handling to corrections and enhance UI ([4c77020](4c77020)) * **corrections:** add site timezone handling logic for correction date ([28d3bb9](28d3bb9)) * **corrections:** update style of modal in the editor ([#3766](#3766)) ([0aee542](0aee542)) * **esp-sync:** queue data events sync to run once ([#3661](#3661)) ([dd2b499](dd2b499)) * fixes and improvements for WooCommerce Subscriptions Gifting ([#3747](#3747)) ([49c4b35](49c4b35)) * handle user nicename change ([#3725](#3725)) ([cb045a3](cb045a3)) * **my-account:** add email change feature flag ([#3758](#3758)) ([21f2c30](21f2c30)) * rate limit adding new payment methods by user ([#3679](#3679)) ([0fd5ea5](0fd5ea5)) ### BREAKING CHANGES * **recaptcha:** shippable product orders will auto-complete by default after this change. * chore: undo unwanted change
🎉 This PR is included in version 6.0.0-alpha.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
* feat: handle user nicename change * feat: check username availability on CLI * docs: improve doc block
* feat: handle user nicename change (#3725) * feat: handle user nicename change * feat: check username availability on CLI * docs: improve doc block * Feat/change nicename UI (#3740) * feat: handle user nicename change * feat: check username availability on CLI * docs: improve doc block * feat: add experimental UI to change nicename * Update src/nicename-change/index.js Co-authored-by: Derrick Koo <[email protected]> * Update src/nicename-change/index.js Co-authored-by: Derrick Koo <[email protected]> --------- Co-authored-by: Derrick Koo <[email protected]> --------- Co-authored-by: Derrick Koo <[email protected]>
All Submissions:
Changes proposed in this Pull Request:
This PR adds some special handling to allow for a safe change of a user's nicename.
User nicename is used to build the user author archive URL, and it's also what CoAuthors Plus use to create the taxonomy that handles posts authorship.
With this PR, when a user_nicename changes:
author
)How to test the changes in this Pull Request:
wp newspack nicename-change <user_id> <new_nicename>
Test check nicename
wp newspack nicename-check <nicename>
with a username you know is in use and confirm you see the appropriate outputcap-joe
exists, runwp newspack nicename-check joe
andwp newspack nicename-check cap-joe
.Other information: