Plugin Directory

Changeset 2802466


Ignore:
Timestamp:
10/21/2022 01:32:17 PM (3 years ago)
Author:
ash_hitch
Message:

Update to version 4.19.0 from GitHub

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

Legend:

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

    r2740469 r2802466  
    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.19.0] - 2022-10-21
     9
     10### Added
     11
     12-   Added "Other" Soical Profiles after Yoast change
    713
    814## [4.18.0] - 2022-06-10
  • add-wpgraphql-seo/tags/4.19.0/README.md

    r2740469 r2802466  
    318318                url
    319319            }
     320            otherSocials
    320321        }
    321322        openGraph {
  • add-wpgraphql-seo/tags/4.19.0/readme.txt

    r2741712 r2802466  
    33Tags: SEO, Yoast, WPGraphQL, GraphQL, Headless WordPress, Decoupled WordPress, JAMStack
    44Requires at least: 5.0
    5 Tested up to: 5.7
     5Tested up to: 6
    66Requires PHP: 7.1
    7 Stable tag: 4.18.1
     7Stable tag: 4.19.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/tags/4.19.0/wp-graphql-yoast-seo.php

    r2741712 r2802466  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.18.1
     11 * Version:         4.19.0
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    446446                'youTube' => ['type' => 'SEOSocialYoutube'],
    447447                'wikipedia' => ['type' => 'SEOSocialWikipedia'],
     448                'otherSocials' => [
     449                    'type' => [
     450                        'list_of' => 'String',
     451                    ],
     452                ],
    448453            ],
    449454        ]);
     
    642647                            'url' => wp_gql_seo_format_string($all['wikipedia_url']),
    643648                        ],
     649                        'otherSocials' => !empty($all['other_social_urls']) ? $all['other_social_urls'] : [],
    644650                    ],
    645651                    'breadcrumbs' => [
  • add-wpgraphql-seo/trunk/CHANGELOG.md

    r2740469 r2802466  
    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.19.0] - 2022-10-21
     9
     10### Added
     11
     12-   Added "Other" Soical Profiles after Yoast change
    713
    814## [4.18.0] - 2022-06-10
  • add-wpgraphql-seo/trunk/README.md

    r2740469 r2802466  
    318318                url
    319319            }
     320            otherSocials
    320321        }
    321322        openGraph {
  • add-wpgraphql-seo/trunk/readme.txt

    r2741712 r2802466  
    33Tags: SEO, Yoast, WPGraphQL, GraphQL, Headless WordPress, Decoupled WordPress, JAMStack
    44Requires at least: 5.0
    5 Tested up to: 5.7
     5Tested up to: 6
    66Requires PHP: 7.1
    7 Stable tag: 4.18.1
     7Stable tag: 4.19.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php

    r2741712 r2802466  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.18.1
     11 * Version:         4.19.0
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    446446                'youTube' => ['type' => 'SEOSocialYoutube'],
    447447                'wikipedia' => ['type' => 'SEOSocialWikipedia'],
     448                'otherSocials' => [
     449                    'type' => [
     450                        'list_of' => 'String',
     451                    ],
     452                ],
    448453            ],
    449454        ]);
     
    642647                            'url' => wp_gql_seo_format_string($all['wikipedia_url']),
    643648                        ],
     649                        'otherSocials' => !empty($all['other_social_urls']) ? $all['other_social_urls'] : [],
    644650                    ],
    645651                    'breadcrumbs' => [
Note: See TracChangeset for help on using the changeset viewer.