#51978 closed enhancement (fixed)
Add 'development' as accepted vaue for WP_AUTO_UPDATE_CORE
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 5.7 | Priority: | normal |
Severity: | minor | Version: | 5.6 |
Component: | Upgrade/Install | Keywords: | has-patch commit |
Focuses: | Cc: |
Description (last modified by )
knutsp
The 'beta' and 'rc' strings was added to WP_AUTO_UPDATE_CORE constant. Why was 'nightly' not added, too?
dd32 2020-12-09 05:04
That’s a good question :slightly_smiling_face: The main reasoning I didn’t think of even adding it was because if you install a nightly, it stays on nightly forever, there’s no need to opt-in through the constant.
Beta/RC is more complicated as it’s running stable, but augmenting it with Beta/RCs.
https://core.trac.wordpress.org/changeset/49245/trunk/src/wp-includes/update.php could be added to also allow for development or branch-development for nightly/branch nightlies.
The whitelist for that parameter on the dotorg side is: [ 'beta', 'rc', 'stable', 'development', 'branch-development' ]
https://wordpress.slack.com/archives/CULBN711P/p1607486676211300
So I propose this to be implemented, at least 'development'. Reasons:
- Completeness
- Possibility to run a testing site, running latest development version ("nightly builds"), without the Beta Tester plugin.
Attachments (1)
Change History (14)
This ticket was mentioned in Slack in #core-auto-updates by hellofromtonya. View the logs.
4 years ago
This ticket was mentioned in Slack in #core-auto-updates by audrasjb. View the logs.
4 years ago
This ticket was mentioned in Slack in #core-auto-updates by audrasjb. View the logs.
4 years ago
This ticket was mentioned in Slack in #core by hellofromtonya. View the logs.
4 years ago
#8
@
4 years ago
- Keywords has-patch added; needs-patch removed
51978.diff adds development
as an accepted value and adjusts the Site Health test as well.
I believe I didn't miss anything, but if I did feel free to point out and I'll be happy to refresh :).
#12
@
4 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from new to closed
In 50082:
Moving for 5.7 consideration.