Make WordPress Core

Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#40957 closed defect (bug) (fixed)

WordPress 4.8 Git Tag is on wrong commit on Github Mirror

Reported by: ikappas's profile ikappas Owned by: markjaquith's profile markjaquith
Milestone: 4.8 Priority: normal
Severity: major Version: 4.8
Component: General Keywords:
Focuses: Cc:

Description

The git tag for WordPress 4.8 is on commit e83ff8597ad73fa019062a9e44ddea34576d2e92 which has the following version.php:

<?php
/**
 * The WordPress version string
 *
 * @global string $wp_version
 */
$wp_version = '4.9-alpha-40885';

/**
 * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
 *
 * @global int $wp_db_version
 */
$wp_db_version = 38590;

/**
 * Holds the TinyMCE version
 *
 * @global string $tinymce_version
 */
$tinymce_version = '4603-20170530';

/**
 * Holds the required PHP version
 *
 * @global string $required_php_version
 */
$required_php_version = '5.2.4';

/**
 * Holds the required MySQL version
 *
 * @global string $required_mysql_version
 */
$required_mysql_version = '5.0';

`
The 4.8 release should probably be tagged on the 4.8 branch on commit b15040f1b24b66c2d2b4817144dce1e799b05923

Change History (16)

#1 @ikappas
8 years ago

  • Severity changed from normal to major

Please note that anything relying on the Github Mirror for building automated Docker Images for WordPress 4.8 may be broken. (ours is at least since we are fetching the wrong commit)

#2 @netweb
8 years ago

It doesn't appear to be an issue on the develop mirror

Also checked 4.5 down to 4.0 and each of these have the correct version in version.php

This ticket was mentioned in Slack in #core by netweb. View the logs.


8 years ago

#4 @SergeyBiryukov
8 years ago

It was an issue with [40889], which created the tag from trunk instead of the branch.

It was fixed later in [40890] and [40891], the GitHub mirror needs to be refreshed somehow.

#5 @dd32
8 years ago

  • Owner set to @…
  • Status changed from new to reviewing

#6 @dd32
8 years ago

  • Owner changed from @… to markjaquith

This ticket was mentioned in Slack in #core by boone. View the logs.


8 years ago

#8 @ikappas
8 years ago

Any update on this ?

#9 @ocean90
8 years ago

Instead of waiting for a fix, I suggest you use the official git mirror: git://core.git.wordpress.org/.

#10 @ikappas
8 years ago

@ocean90 Thank you for the info :)

This ticket was mentioned in Slack in #core by dd32. View the logs.


8 years ago

#12 follow-up: @andyexeter
8 years ago

@ocean90 Is it possible to download zip archives using the official git mirror?

Currently managing a composer based WP install that downloads https://github.com/WordPress/WordPress/archive/4.8.zip - can the equivalent be downloaded through core.git.wordpress.org?

This ticket was mentioned in Slack in #core by netweb. View the logs.


8 years ago

#14 in reply to: ↑ 12 @Otto42
8 years ago

Replying to andyexeter:

@ocean90 Is it possible to download zip archives using the official git mirror?

Currently managing a composer based WP install that downloads https://github.com/WordPress/WordPress/archive/4.8.zip - can the equivalent be downloaded through core.git.wordpress.org?

If you need to download the ZIP files, you can find their URLs on the release-archive page:
https://wordpress.org/download/release-archive/

You will note that the format of these filenames is always the same, and the official ZIP can be downloaded directly from WordPress.org, without going through a git system.

Example: https://wordpress.org/wordpress-4.8.zip

#15 @joemcgill
8 years ago

  • Resolution set to fixed
  • Status changed from reviewing to closed

#16 @SergeyBiryukov
8 years ago

  • Milestone changed from Awaiting Review to 4.8
Note: See TracTickets for help on using tickets.