Changeset 3359222
- Timestamp:
- 09/10/2025 01:40:59 PM (7 months ago)
- Location:
- gatographql
- Files:
-
- 20 deleted
- 4 edited
- 1 copied
-
tags/12.12.0.1 (copied) (copied from gatographql/trunk)
-
tags/12.12.0.1/assets (deleted)
-
tags/12.12.0.1/blocks (deleted)
-
tags/12.12.0.1/bundle-extensions (deleted)
-
tags/12.12.0.1/config (deleted)
-
tags/12.12.0.1/docs (deleted)
-
tags/12.12.0.1/gatographql.php (modified) (4 diffs)
-
tags/12.12.0.1/includes (deleted)
-
tags/12.12.0.1/languages (deleted)
-
tags/12.12.0.1/packages (deleted)
-
tags/12.12.0.1/readme.txt (modified) (2 diffs)
-
tags/12.12.0.1/src (deleted)
-
tags/12.12.0.1/vendor (deleted)
-
trunk/assets (deleted)
-
trunk/blocks (deleted)
-
trunk/bundle-extensions (deleted)
-
trunk/config (deleted)
-
trunk/docs (deleted)
-
trunk/gatographql.php (modified) (4 diffs)
-
trunk/includes (deleted)
-
trunk/languages (deleted)
-
trunk/packages (deleted)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src (deleted)
-
trunk/vendor (deleted)
Legend:
- Unmodified
- Added
- Removed
-
gatographql/tags/12.12.0.1/gatographql.php
r3331271 r3359222 5 5 GitHub Plugin URI: https://github.com/GatoGraphQL/GatoGraphQL 6 6 Description: Powerful and flexible GraphQL server for WordPress. 7 Version: 1 3.2.07 Version: 12.12.0.1 8 8 Requires at least: 6.1 9 Requires PHP: 7.49 Requires PHP: 8.1 10 10 Author: Gato GraphQL 11 11 Author URI: https://gatographql.com … … 24 24 exit; 25 25 } 26 27 add_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 }); 33 return; 26 34 27 35 /** … … 49 57 * @gatographql-readonly-code 50 58 */ 51 $pluginVersion = '1 3.2.0';59 $pluginVersion = '14.0.0'; 52 60 $pluginName = 'Gato GraphQL'; 53 61 … … 92 100 * @gatographql-readonly-code 93 101 */ 94 $commitHash = '9 d148e5bb7a1fa516f2a8fd90d2dc2d29c4347f4';102 $commitHash = '9697b658ebb177a78d813698e55e1cf1d96c6809'; 95 103 96 104 // Load Composer’s autoloader -
gatographql/tags/12.12.0.1/readme.txt
r3331271 r3359222 4 4 Requires at least: 6.1 5 5 Tested up to: 6.8 6 Stable tag: 1 3.2.07 Requires PHP: 7.46 Stable tag: 12.12.0.1 7 Requires PHP: 8.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 220 220 221 221 == 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) 222 254 223 255 = 13.2.0 = -
gatographql/trunk/gatographql.php
r3331271 r3359222 5 5 GitHub Plugin URI: https://github.com/GatoGraphQL/GatoGraphQL 6 6 Description: Powerful and flexible GraphQL server for WordPress. 7 Version: 1 3.2.07 Version: 12.12.0.1 8 8 Requires at least: 6.1 9 Requires PHP: 7.49 Requires PHP: 8.1 10 10 Author: Gato GraphQL 11 11 Author URI: https://gatographql.com … … 24 24 exit; 25 25 } 26 27 add_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 }); 33 return; 26 34 27 35 /** … … 49 57 * @gatographql-readonly-code 50 58 */ 51 $pluginVersion = '1 3.2.0';59 $pluginVersion = '14.0.0'; 52 60 $pluginName = 'Gato GraphQL'; 53 61 … … 92 100 * @gatographql-readonly-code 93 101 */ 94 $commitHash = '9 d148e5bb7a1fa516f2a8fd90d2dc2d29c4347f4';102 $commitHash = '9697b658ebb177a78d813698e55e1cf1d96c6809'; 95 103 96 104 // Load Composer’s autoloader -
gatographql/trunk/readme.txt
r3331271 r3359222 4 4 Requires at least: 6.1 5 5 Tested up to: 6.8 6 Stable tag: 1 3.2.07 Requires PHP: 7.46 Stable tag: 12.12.0.1 7 Requires PHP: 8.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 220 220 221 221 == 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) 222 254 223 255 = 13.2.0 =
Note: See TracChangeset
for help on using the changeset viewer.