Plugin Directory

Changeset 2861055


Ignore:
Timestamp:
02/06/2023 09:20:11 PM (3 years ago)
Author:
ash_hitch
Message:

Update to version 4.22.0 from GitHub

Location:
add-wpgraphql-seo
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • add-wpgraphql-seo/tags/4.22.0/CHANGELOG.md

    r2844702 r2861055  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.22.0] - 2022-02-06
     9
     10### Added
     11
     12-   `Date archive` title and description
    713
    814## [4.21.0] - 2022-01-06
  • add-wpgraphql-seo/tags/4.22.0/README.md

    r2823146 r2861055  
    259259                title
    260260            }
     261            date {
     262                description
     263                title
     264            }
    261265            config {
    262266                separator
  • add-wpgraphql-seo/tags/4.22.0/package.json

    r2740469 r2861055  
    11{
    22    "name": "wp-graphql-yoast-seo",
    3     "version": "4.13.1",
     3    "version": "4.22.0",
    44    "description": "A WPGraphQL Extension that adds support for Yoast SEO",
    55    "scripts": {
  • add-wpgraphql-seo/tags/4.22.0/readme.txt

    r2844702 r2861055  
    55Tested up to: 6.1.1
    66Requires PHP: 7.1
    7 Stable tag: 4.21.0
     7Stable tag: 4.22.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/tags/4.22.0/wp-graphql-yoast-seo.php

    r2844702 r2861055  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.21.0
     11 * Version:         4.22.0
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    324324            ],
    325325        ]);
     326        register_graphql_object_type('SEOGlobalMetaDate', [
     327            'description' => __('The Yoast SEO Date data', 'wp-graphql-yoast-seo'),
     328            'fields' => [
     329                'title' => ['type' => 'String'],
     330                'description' => ['type' => 'String'],
     331            ],
     332        ]);
    326333        register_graphql_object_type('SEOGlobalMetaConfig', [
    327334            'description' => __('The Yoast SEO meta config data', 'wp-graphql-yoast-seo'),
     
    342349                'homepage' => ['type' => 'SEOGlobalMetaHome'],
    343350                'author' => ['type' => 'SEOGlobalMetaAuthor'],
     351                'date' => ['type' => 'SEOGlobalMetaDate'],
    344352                'config' => ['type' => 'SEOGlobalMetaConfig'],
    345353                'notFound' => ['type' => 'SEOGlobalMeta404'],
     
    624632                    'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-author-wpseo'])),
    625633                ];
     634                $date = [
     635                    'title' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['title-archive-wpseo'])),
     636                    'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-archive-wpseo'])),
     637                ];
    626638                $config = [
    627639                    'separator' => wp_gql_seo_format_string($all['separator']),
     
    637649                        'homepage' => $homepage,
    638650                        'author' => $author,
     651                        'date' => $date,
    639652                        'config' => $config,
    640653                        'notFound' => $notFound,
  • add-wpgraphql-seo/trunk/CHANGELOG.md

    r2844702 r2861055  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [4.22.0] - 2022-02-06
     9
     10### Added
     11
     12-   `Date archive` title and description
    713
    814## [4.21.0] - 2022-01-06
  • add-wpgraphql-seo/trunk/README.md

    r2823146 r2861055  
    259259                title
    260260            }
     261            date {
     262                description
     263                title
     264            }
    261265            config {
    262266                separator
  • add-wpgraphql-seo/trunk/package.json

    r2740469 r2861055  
    11{
    22    "name": "wp-graphql-yoast-seo",
    3     "version": "4.13.1",
     3    "version": "4.22.0",
    44    "description": "A WPGraphQL Extension that adds support for Yoast SEO",
    55    "scripts": {
  • add-wpgraphql-seo/trunk/readme.txt

    r2844702 r2861055  
    55Tested up to: 6.1.1
    66Requires PHP: 7.1
    7 Stable tag: 4.21.0
     7Stable tag: 4.22.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php

    r2844702 r2861055  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.21.0
     11 * Version:         4.22.0
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    324324            ],
    325325        ]);
     326        register_graphql_object_type('SEOGlobalMetaDate', [
     327            'description' => __('The Yoast SEO Date data', 'wp-graphql-yoast-seo'),
     328            'fields' => [
     329                'title' => ['type' => 'String'],
     330                'description' => ['type' => 'String'],
     331            ],
     332        ]);
    326333        register_graphql_object_type('SEOGlobalMetaConfig', [
    327334            'description' => __('The Yoast SEO meta config data', 'wp-graphql-yoast-seo'),
     
    342349                'homepage' => ['type' => 'SEOGlobalMetaHome'],
    343350                'author' => ['type' => 'SEOGlobalMetaAuthor'],
     351                'date' => ['type' => 'SEOGlobalMetaDate'],
    344352                'config' => ['type' => 'SEOGlobalMetaConfig'],
    345353                'notFound' => ['type' => 'SEOGlobalMeta404'],
     
    624632                    'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-author-wpseo'])),
    625633                ];
     634                $date = [
     635                    'title' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['title-archive-wpseo'])),
     636                    'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-archive-wpseo'])),
     637                ];
    626638                $config = [
    627639                    'separator' => wp_gql_seo_format_string($all['separator']),
     
    637649                        'homepage' => $homepage,
    638650                        'author' => $author,
     651                        'date' => $date,
    639652                        'config' => $config,
    640653                        'notFound' => $notFound,
Note: See TracChangeset for help on using the changeset viewer.