Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
282 changes: 172 additions & 110 deletions composer.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion includes/class-instant-indexing.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class RM_GIAPI {
*
* @var string
*/
public $version = '1.1.17';
public $version = '1.1.18';

/**
* Holds the admin menu hook suffix for the "dummy" dashboard.
Expand Down
2 changes: 1 addition & 1 deletion instant-indexing.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Instant Indexing
* Plugin URI: https://rankmath.com/wordpress/plugin/instant-indexing/
* Description: Get your website crawled immediately by Google using their NEW Indexing APIs.
* Version: 1.1.17
* Version: 1.1.18
* Author: Rank Math
* Author URI: https://s.rankmath.com/home
* License: GPL v3
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Contributors: rankmath
Plugin link: https://rankmath.com/wordpress/plugin/instant-indexing/
Tags: indexing api, crawling, live streaming, fast indexing, job posting
Tested up to: 6.2.2
Tested up to: 6.4.1
Requires at least: 5.6
Requires PHP: 7.2.5
Stable tag: 1.1.17
Stable tag: 1.1.18
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.txt

Expand Down Expand Up @@ -106,6 +106,9 @@ Technically, yes. That's what the plugin is made to do. But, please note that we

== Changelog ==

= v1.1.18 [Nov 15, 2023] =
Fixed: Compatibility issues with other plugins due to the old vendor packages used in the plugin

= v1.1.17 [May 31, 2023] =
* Fixed: PHP notice on the plugin settings page.
* Fixed: Double submission of posts to the Google Indexing API.
Expand Down
18 changes: 18 additions & 0 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

// autoload.php @generated by Composer

if (PHP_VERSION_ID < 50600) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, $err);
} elseif (!headers_sent()) {
echo $err;
}
}
trigger_error(
$err,
E_USER_ERROR
);
}

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInit1cfac4bac5a1827f26c0b477558bd882::getLoader();
Loading