Changeset 3454146
- Timestamp:
- 02/04/2026 09:54:16 PM (8 weeks ago)
- Location:
- add-wpgraphql-seo
- Files:
-
- 12 edited
- 1 copied
-
tags/5.0.2 (copied) (copied from add-wpgraphql-seo/trunk)
-
tags/5.0.2/CHANGELOG.md (modified) (1 diff)
-
tags/5.0.2/includes/resolvers/root-query.php (modified) (1 diff)
-
tags/5.0.2/package.json (modified) (1 diff)
-
tags/5.0.2/pnpm-lock.yaml (modified) (5 diffs)
-
tags/5.0.2/readme.txt (modified) (1 diff)
-
tags/5.0.2/wp-graphql-yoast-seo.php (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/includes/resolvers/root-query.php (modified) (1 diff)
-
trunk/package.json (modified) (1 diff)
-
trunk/pnpm-lock.yaml (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-graphql-yoast-seo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
add-wpgraphql-seo/tags/5.0.2/CHANGELOG.md
r3436300 r3454146 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [5.0.2] - 2026-02-04 9 10 ### Fixed 11 12 - Fix "NOTICE: PHP message: PHP Warning: Attempt to read property "schema" on bool 7 13 8 14 ## [5.0.1] - 2026-01-09 -
add-wpgraphql-seo/tags/5.0.2/includes/resolvers/root-query.php
r3364564 r3454146 175 175 ), 176 176 'resolve' => function () use ($post_type) { 177 $schemaArray = YoastSEO()->meta->for_post_type_archive($post_type)->schema; 177 $meta = YoastSEO()->meta->for_post_type_archive($post_type); 178 $schemaArray = $meta !== false ? $meta->schema : []; 178 179 179 180 return [ -
add-wpgraphql-seo/tags/5.0.2/package.json
r3436300 r3454146 1 1 { 2 2 "name": "wp-graphql-yoast-seo", 3 "version": "v5.0. 1",3 "version": "v5.0.2", 4 4 "description": "A WPGraphQL Extension that adds support for Yoast SEO", 5 5 "scripts": { -
add-wpgraphql-seo/tags/5.0.2/pnpm-lock.yaml
r3436300 r3454146 11 11 '@prettier/plugin-php': 12 12 specifier: ^0.24.0 13 version: 0.24.0(prettier@3. 7.4)13 version: 0.24.0(prettier@3.8.0) 14 14 husky: 15 15 specifier: '>=8.0.1' … … 20 20 prettier: 21 21 specifier: ^3.7.4 22 version: 3. 7.422 version: 3.8.0 23 23 24 24 packages: … … 135 135 hasBin: true 136 136 137 prettier@3. 7.4:138 resolution: {integrity: sha512- v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==}137 prettier@3.8.0: 138 resolution: {integrity: sha512-yEPsovQfpxYfgWNhCfECjG5AQaO+K3dp6XERmOepyPDVqcJm+bjyCVO3pmU+nAPe0N5dDvekfGezt/EIiRe1TA==} 139 139 engines: {node: '>=14'} 140 140 hasBin: true … … 186 186 snapshots: 187 187 188 '@prettier/plugin-php@0.24.0(prettier@3. 7.4)':188 '@prettier/plugin-php@0.24.0(prettier@3.8.0)': 189 189 dependencies: 190 190 linguist-languages: 8.2.0 191 191 php-parser: 3.2.5 192 prettier: 3. 7.4192 prettier: 3.8.0 193 193 194 194 ansi-escapes@7.2.0: … … 285 285 pidtree@0.6.0: {} 286 286 287 prettier@3. 7.4: {}287 prettier@3.8.0: {} 288 288 289 289 restore-cursor@5.1.0: -
add-wpgraphql-seo/tags/5.0.2/readme.txt
r3436300 r3454146 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.1 7 Stable tag: 5.0. 17 Stable tag: 5.0.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/tags/5.0.2/wp-graphql-yoast-seo.php
r3436300 r3454146 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: v5.0. 111 * Version: v5.0.2 12 12 * Requires Plugins: wp-graphql, wordpress-seo 13 13 * -
add-wpgraphql-seo/trunk/CHANGELOG.md
r3436300 r3454146 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [5.0.2] - 2026-02-04 9 10 ### Fixed 11 12 - Fix "NOTICE: PHP message: PHP Warning: Attempt to read property "schema" on bool 7 13 8 14 ## [5.0.1] - 2026-01-09 -
add-wpgraphql-seo/trunk/includes/resolvers/root-query.php
r3364564 r3454146 175 175 ), 176 176 'resolve' => function () use ($post_type) { 177 $schemaArray = YoastSEO()->meta->for_post_type_archive($post_type)->schema; 177 $meta = YoastSEO()->meta->for_post_type_archive($post_type); 178 $schemaArray = $meta !== false ? $meta->schema : []; 178 179 179 180 return [ -
add-wpgraphql-seo/trunk/package.json
r3436300 r3454146 1 1 { 2 2 "name": "wp-graphql-yoast-seo", 3 "version": "v5.0. 1",3 "version": "v5.0.2", 4 4 "description": "A WPGraphQL Extension that adds support for Yoast SEO", 5 5 "scripts": { -
add-wpgraphql-seo/trunk/pnpm-lock.yaml
r3436300 r3454146 11 11 '@prettier/plugin-php': 12 12 specifier: ^0.24.0 13 version: 0.24.0(prettier@3. 7.4)13 version: 0.24.0(prettier@3.8.0) 14 14 husky: 15 15 specifier: '>=8.0.1' … … 20 20 prettier: 21 21 specifier: ^3.7.4 22 version: 3. 7.422 version: 3.8.0 23 23 24 24 packages: … … 135 135 hasBin: true 136 136 137 prettier@3. 7.4:138 resolution: {integrity: sha512- v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==}137 prettier@3.8.0: 138 resolution: {integrity: sha512-yEPsovQfpxYfgWNhCfECjG5AQaO+K3dp6XERmOepyPDVqcJm+bjyCVO3pmU+nAPe0N5dDvekfGezt/EIiRe1TA==} 139 139 engines: {node: '>=14'} 140 140 hasBin: true … … 186 186 snapshots: 187 187 188 '@prettier/plugin-php@0.24.0(prettier@3. 7.4)':188 '@prettier/plugin-php@0.24.0(prettier@3.8.0)': 189 189 dependencies: 190 190 linguist-languages: 8.2.0 191 191 php-parser: 3.2.5 192 prettier: 3. 7.4192 prettier: 3.8.0 193 193 194 194 ansi-escapes@7.2.0: … … 285 285 pidtree@0.6.0: {} 286 286 287 prettier@3. 7.4: {}287 prettier@3.8.0: {} 288 288 289 289 restore-cursor@5.1.0: -
add-wpgraphql-seo/trunk/readme.txt
r3436300 r3454146 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.1 7 Stable tag: 5.0. 17 Stable tag: 5.0.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php
r3436300 r3454146 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: v5.0. 111 * Version: v5.0.2 12 12 * Requires Plugins: wp-graphql, wordpress-seo 13 13 *
Note: See TracChangeset
for help on using the changeset viewer.