Plugin Directory

Changeset 3359222


Ignore:
Timestamp:
09/10/2025 01:40:59 PM (7 months ago)
Author:
leoloso
Message:

Update to version 12.12.0.1 from GitHub

Location:
gatographql
Files:
20 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gatographql/tags/12.12.0.1/gatographql.php

    r3331271 r3359222  
    55GitHub Plugin URI: https://github.com/GatoGraphQL/GatoGraphQL
    66Description: Powerful and flexible GraphQL server for WordPress.
    7 Version: 13.2.0
     7Version: 12.12.0.1
    88Requires at least: 6.1
    9 Requires PHP: 7.4
     9Requires PHP: 8.1
    1010Author: Gato GraphQL
    1111Author URI: https://gatographql.com
     
    2424    exit;
    2525}
     26
     27add_action('admin_notices', function () {
     28    printf(
     29        '<div class="notice notice-warning"><p>%s</p></div>',
     30        __('This is a temporary version of Gato GraphQL, to finish the deployment of v14.0 to the WP.org directory. You cannot use it. Wait until v14.0 is released, and install that one.', 'gatographql')
     31    );
     32});
     33return;
    2634
    2735/**
     
    4957 * @gatographql-readonly-code
    5058 */
    51 $pluginVersion = '13.2.0';
     59$pluginVersion = '14.0.0';
    5260$pluginName = 'Gato GraphQL';
    5361
     
    92100 * @gatographql-readonly-code
    93101 */
    94 $commitHash = '9d148e5bb7a1fa516f2a8fd90d2dc2d29c4347f4';
     102$commitHash = '9697b658ebb177a78d813698e55e1cf1d96c6809';
    95103
    96104// Load Composer’s autoloader
  • gatographql/tags/12.12.0.1/readme.txt

    r3331271 r3359222  
    44Requires at least: 6.1
    55Tested up to: 6.8
    6 Stable tag: 13.2.0
    7 Requires PHP: 7.4
     6Stable tag: 12.12.0.1
     7Requires PHP: 8.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    220220
    221221== Changelog ==
     222
     223= 14.0.0 =
     224* Breaking change: Upgraded min PHP version from 7.4 to 8.1 (#3200)
     225* Breaking change: Pass `object` param to `resolveMetaKeysValue` (#3177)
     226* Added `parent` field to `CustomPost` (#3159)
     227* Pass parent on custom post mutations (#3160)
     228* Added `slugPath` field to CustomPost (comprising the slug for all ancestor posts) (#3163)
     229* Added fields `GenericCustomPost.ancestors` and `Page.ancestors` (#3167)
     230* Added fields `children` and `childCount` to `GenericCustomPost` (#3168)
     231* Added field `Category.ancestors` (#3169)
     232* Added field `CustomPost.menuOrder` (#3172)
     233* Added `menuOrder` arg to custom post mutations (#3173)
     234* Append selected option value in dropdown in Settings if it doesn't exist (#3178)
     235* Allow storing JSON data for options in Settings (#3179)
     236* Upgrade plugin to latest dependencies for PHP 8.1 (#3202)
     237* Print body of failing requests in error logs (#3155)
     238* Support executing bulk actions with custom settings (#3156)
     239* Support reading just-updated plugin settings in options.php (#3157)
     240* Added convenient method to handle Ajax Requests (#3180)
     241* Allow executing further functionality on the Settings page (#3181)
     242* Show notification labels in different colors for different severities (#3184)
     243* Enable log notifications for warnings by default (#3185)
     244* Support executing WP-CLI commands (#3188)
     245* Validate the domain in the active license corresponds to the current site (for commercial extensions) (#3192)
     246* Don't trigger license check if never run before (#3194)
     247* Set `WithMeta.metaKeys` as sensitive field (#3197)
     248* Move `isOneOf` introspection field out of `extensions` (as feature has been merged to GraphQL spec) (#3198)
     249* Fixed bug where querying `post(by: { id: 0 })` returns `null` (instead of the post in the loop) (#3165)
     250* Fixed plugin not working with PHP 7.4 (#3182)
     251* Fixed updating posts storing wrong date (#3186)
     252* Fixed - User authentication when executing query triggered via the WP REST API (#3187)
     253* Fixed - Requesting GraphQL endpoint using Application Passwords didn't work when WooCommerce is installed (#3195)
    222254
    223255= 13.2.0 =
  • gatographql/trunk/gatographql.php

    r3331271 r3359222  
    55GitHub Plugin URI: https://github.com/GatoGraphQL/GatoGraphQL
    66Description: Powerful and flexible GraphQL server for WordPress.
    7 Version: 13.2.0
     7Version: 12.12.0.1
    88Requires at least: 6.1
    9 Requires PHP: 7.4
     9Requires PHP: 8.1
    1010Author: Gato GraphQL
    1111Author URI: https://gatographql.com
     
    2424    exit;
    2525}
     26
     27add_action('admin_notices', function () {
     28    printf(
     29        '<div class="notice notice-warning"><p>%s</p></div>',
     30        __('This is a temporary version of Gato GraphQL, to finish the deployment of v14.0 to the WP.org directory. You cannot use it. Wait until v14.0 is released, and install that one.', 'gatographql')
     31    );
     32});
     33return;
    2634
    2735/**
     
    4957 * @gatographql-readonly-code
    5058 */
    51 $pluginVersion = '13.2.0';
     59$pluginVersion = '14.0.0';
    5260$pluginName = 'Gato GraphQL';
    5361
     
    92100 * @gatographql-readonly-code
    93101 */
    94 $commitHash = '9d148e5bb7a1fa516f2a8fd90d2dc2d29c4347f4';
     102$commitHash = '9697b658ebb177a78d813698e55e1cf1d96c6809';
    95103
    96104// Load Composer’s autoloader
  • gatographql/trunk/readme.txt

    r3331271 r3359222  
    44Requires at least: 6.1
    55Tested up to: 6.8
    6 Stable tag: 13.2.0
    7 Requires PHP: 7.4
     6Stable tag: 12.12.0.1
     7Requires PHP: 8.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    220220
    221221== Changelog ==
     222
     223= 14.0.0 =
     224* Breaking change: Upgraded min PHP version from 7.4 to 8.1 (#3200)
     225* Breaking change: Pass `object` param to `resolveMetaKeysValue` (#3177)
     226* Added `parent` field to `CustomPost` (#3159)
     227* Pass parent on custom post mutations (#3160)
     228* Added `slugPath` field to CustomPost (comprising the slug for all ancestor posts) (#3163)
     229* Added fields `GenericCustomPost.ancestors` and `Page.ancestors` (#3167)
     230* Added fields `children` and `childCount` to `GenericCustomPost` (#3168)
     231* Added field `Category.ancestors` (#3169)
     232* Added field `CustomPost.menuOrder` (#3172)
     233* Added `menuOrder` arg to custom post mutations (#3173)
     234* Append selected option value in dropdown in Settings if it doesn't exist (#3178)
     235* Allow storing JSON data for options in Settings (#3179)
     236* Upgrade plugin to latest dependencies for PHP 8.1 (#3202)
     237* Print body of failing requests in error logs (#3155)
     238* Support executing bulk actions with custom settings (#3156)
     239* Support reading just-updated plugin settings in options.php (#3157)
     240* Added convenient method to handle Ajax Requests (#3180)
     241* Allow executing further functionality on the Settings page (#3181)
     242* Show notification labels in different colors for different severities (#3184)
     243* Enable log notifications for warnings by default (#3185)
     244* Support executing WP-CLI commands (#3188)
     245* Validate the domain in the active license corresponds to the current site (for commercial extensions) (#3192)
     246* Don't trigger license check if never run before (#3194)
     247* Set `WithMeta.metaKeys` as sensitive field (#3197)
     248* Move `isOneOf` introspection field out of `extensions` (as feature has been merged to GraphQL spec) (#3198)
     249* Fixed bug where querying `post(by: { id: 0 })` returns `null` (instead of the post in the loop) (#3165)
     250* Fixed plugin not working with PHP 7.4 (#3182)
     251* Fixed updating posts storing wrong date (#3186)
     252* Fixed - User authentication when executing query triggered via the WP REST API (#3187)
     253* Fixed - Requesting GraphQL endpoint using Application Passwords didn't work when WooCommerce is installed (#3195)
    222254
    223255= 13.2.0 =
Note: See TracChangeset for help on using the changeset viewer.