#50350 closed defect (bug) (fixed)
Provide plugin and theme versions informations in auto-updates email notifications
Reported by: | audrasjb | Owned by: | desrosj |
---|---|---|---|
Milestone: | 5.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Upgrade/Install | Keywords: | has-patch has-screenshots commit |
Focuses: | Cc: |
Description
It would be useful to provide version informations in the themes and plugins auto-updates email notification.
Probably something like:
The following plugins were successfully updated:
- Hello Dolly (from 1.7 to 1.7.1)
Attachments (2)
Change History (19)
#3
@
4 years ago
Quoting from the referenced GitHub issue:
Including the version updated FROM would help admins manually rollback if they later discover the update causes problems on the site (it's pretty likely they won't remember what version they were running before the update).
#4
@
4 years ago
Further to discussions on #50268,
I agree it would sound more professional to change the word "Howdy", to "Hello".
So instead of something like
<?php $body[] = sprintf( /* translators: %s: Home URL. */ __( 'Howdy! Failures occurred when attempting to update plugins/themes on your site at %s.', 'wp-autoupdates' ), home_url() );
We would instead have something like
<?php $body[] = sprintf( /* translators: %s: Home URL. */ __( 'Hello,', 'wp-autoupdates' ) ); $body[] = "\n"; $body[] = sprintf( /* translators: %s: Home URL. */ __( 'Failures occurred when attempting to update plugins/themes on your site at %s.', 'wp-autoupdates' ), home_url() );
@audrasjb
#5
@
4 years ago
@stuffradio thanks!
This is not in this ticket's scope, because there is a bunch of other use of "Howdy!" in WordPress. This should be handled in a dedicated ticket.
For now, let's keep it as it for consistency with other email notification in WordPress core :)
#6
@
4 years ago
- Milestone changed from 5.5 to Future Release
With 5.5 Beta 1 releasing tomorrow ans this still needing a refresh and a review, this is being moved to Future Release
. If any maintainer or committer feels the remainder of this ticket can be resolved in time, or wishes to assume ownership during a specific cycle, feel free to update the milestone accordingly.
#8
@
4 years ago
- Milestone changed from Future Release to 5.5
- Type changed from enhancement to defect (bug)
#11
@
4 years ago
The original suggestion was to include the version being updated from and the new version.
Was there a discussion around this that lead to the current patch without the previous version?
#12
@
4 years ago
Yes, that was the original suggestion. However, by the time the email is generated, the version updated FROM is not available.
So, in the weekly meeting on Jun 30, it was decided to add TO for 5.5, and work on FROM in 5.6.
#15
@
4 years ago
@desrosj should this ticket be opened up again for adding the FROM version in 5.6? Or should we create another ticket for that?
For reference, see https://github.com/WordPress/wp-autoupdates/issues/88 and #50268