Plugin Directory

Changeset 2365465


Ignore:
Timestamp:
08/20/2020 05:17:25 AM (6 years ago)
Author:
ash_hitch
Message:

Update to version 4.5.5 from GitHub

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

Legend:

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

    r2365209 r2365465  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
     8## [4.5.5] - 2020-08-20
     9
     10### Changed
     11
     12- Updated readme.txt and readme.md for consistency and display issues.
     13
     14## [4.5.4] - 2020-08-19
     15
     16### Changed
     17
     18- Readme.md update
     19
     20## [4.5.3] - 2020-08-19
     21
     22### Changed
     23
     24- Build
     25
     26## [4.5.2] - 2020-08-19
     27
     28### Changed
     29
     30- Build
     31
     32### Added
     33
     34- Added logos for WordPress
     35
     36### Changed
     37
     38- Changed Plugin Name: property to comply with WordPress.org
     39
    840## [4.5.1] - 2020-07-28
     41
     42### Added
    943
    1044- Added inLanguage to Schema
  • add-wpgraphql-seo/tags/4.5.5/README.md

    r2365209 r2365465  
    2020- Posts
    2121- Custom post types
     22- Products (WooCommerce)
    2223- Categories
    2324- Custom taxonomies
     
    3334## Quick Install
    3435
    35 1. Install & activate [WPGraphQL](https://www.wpgraphql.com/)
    36 2. Clone or download the zip of this repository into your WordPress plugin directory & activate the **WP GraphQL Yoast SEO** plugin
     36- Install from the [WordPress Plugin Directory](https://wordpress.org/plugins/add-wpgraphql-seo/)
     37- Clone or download the zip of this repository into your WordPress plugin directory & activate the **WP GraphQL Yoast SEO** plugin
     38- Install & activate [WPGraphQL](https://www.wpgraphql.com/)
    3739
    3840## Composer
     
    298300
    299301![contributors.svg](./contributors.svg)
     302
     303> Please Note: Yoast and WPGraphQL and their logos are copyright to their respective owners.
  • add-wpgraphql-seo/tags/4.5.5/readme.txt

    r2365220 r2365465  
    1 === WpGraphQL Yoast SEO Addon ===
     1=== WPGraphQL Yoast SEO Addon ===
    22Contributors: ash_hitch
    3 Tags: SEO, Yoast, WpGraphQL, GraphQL, Headless WordPress, Decoupled WordPress, JAMStack
     3Tags: SEO, Yoast, WPGraphQL, GraphQL, Headless WordPress, Decoupled WordPress, JAMStack
    44Requires at least: 5.0
    55Tested up to: 5.4
     
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    11 This plugin enables Yoast SEO Support for WpGraphQL.
     11This plugin enables Yoast SEO Support for WPGraphQL.
    1212
    1313== Description ==
    1414
    15 This plugin enables Yoast SEO Support for WpGraphQL
     15This plugin enables Yoast SEO Support for WPGraphQL
    1616
    1717This is an extension to the WPGraphQL plugin (https://github.com/wp-graphql/wp-graphql) that returns Yoast SEO data.
     18
     19**Currently returning SEO data for:**
     20
     21- Pages
     22- Posts
     23- Custom post types
     24- Products (WooCommerce)
     25- Categories
     26- Custom taxonomies
     27- WooCommerce Products
     28- Yoast Configuration
     29  - Webmaster verification
     30  - Social profiles
     31  - Schemas
     32  - Breadcrumbs
     33
     34  > Please Note: Yoast and WPGraphQL and their logos are copyright to their respective owners.
    1835
    1936== Installation ==
     
    2542To query for the Yoast Data simply add the seo object to your query:
    2643
    27 ```
     44`
    2845{
    2946  pages(first: 10) {
     
    146163    }
    147164  }
    148 }```
     165}
     166`
    149167
    150168To query for the site configuration data you can query from the root.
    151169
    152 ```
     170`
    153171{
    154172  posts {
     
    246264  }
    247265}
    248 ```
     266`
    249267
    250268== Upgrade Notice ==
    251 ## Please note version 14 of the Yoast Plugin is a major update so is now required to run this plugin
     269Please note version 14 of the Yoast Plugin is a major update so is now required to run this plugin
  • add-wpgraphql-seo/tags/4.5.5/wp-graphql-yoast-seo.php

    r2365220 r2365465  
    22
    33/**
    4  * Plugin Name:     WPGraphql SEO
     4 * Plugin Name:     Add WPGraphQL SEO
    55 * Plugin URI:      https://github.com/ashhitch/wp-graphql-yoast-seo
    66 * Description:     A WPGraphQL Extension that adds support for Yoast SEO
     
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.5.4
     11 * Version:         4.5.5
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
  • add-wpgraphql-seo/trunk/CHANGELOG.md

    r2365209 r2365465  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
     8## [4.5.5] - 2020-08-20
     9
     10### Changed
     11
     12- Updated readme.txt and readme.md for consistency and display issues.
     13
     14## [4.5.4] - 2020-08-19
     15
     16### Changed
     17
     18- Readme.md update
     19
     20## [4.5.3] - 2020-08-19
     21
     22### Changed
     23
     24- Build
     25
     26## [4.5.2] - 2020-08-19
     27
     28### Changed
     29
     30- Build
     31
     32### Added
     33
     34- Added logos for WordPress
     35
     36### Changed
     37
     38- Changed Plugin Name: property to comply with WordPress.org
     39
    840## [4.5.1] - 2020-07-28
     41
     42### Added
    943
    1044- Added inLanguage to Schema
  • add-wpgraphql-seo/trunk/README.md

    r2365209 r2365465  
    2020- Posts
    2121- Custom post types
     22- Products (WooCommerce)
    2223- Categories
    2324- Custom taxonomies
     
    3334## Quick Install
    3435
    35 1. Install & activate [WPGraphQL](https://www.wpgraphql.com/)
    36 2. Clone or download the zip of this repository into your WordPress plugin directory & activate the **WP GraphQL Yoast SEO** plugin
     36- Install from the [WordPress Plugin Directory](https://wordpress.org/plugins/add-wpgraphql-seo/)
     37- Clone or download the zip of this repository into your WordPress plugin directory & activate the **WP GraphQL Yoast SEO** plugin
     38- Install & activate [WPGraphQL](https://www.wpgraphql.com/)
    3739
    3840## Composer
     
    298300
    299301![contributors.svg](./contributors.svg)
     302
     303> Please Note: Yoast and WPGraphQL and their logos are copyright to their respective owners.
  • add-wpgraphql-seo/trunk/readme.txt

    r2365220 r2365465  
    1 === WpGraphQL Yoast SEO Addon ===
     1=== WPGraphQL Yoast SEO Addon ===
    22Contributors: ash_hitch
    3 Tags: SEO, Yoast, WpGraphQL, GraphQL, Headless WordPress, Decoupled WordPress, JAMStack
     3Tags: SEO, Yoast, WPGraphQL, GraphQL, Headless WordPress, Decoupled WordPress, JAMStack
    44Requires at least: 5.0
    55Tested up to: 5.4
     
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    11 This plugin enables Yoast SEO Support for WpGraphQL.
     11This plugin enables Yoast SEO Support for WPGraphQL.
    1212
    1313== Description ==
    1414
    15 This plugin enables Yoast SEO Support for WpGraphQL
     15This plugin enables Yoast SEO Support for WPGraphQL
    1616
    1717This is an extension to the WPGraphQL plugin (https://github.com/wp-graphql/wp-graphql) that returns Yoast SEO data.
     18
     19**Currently returning SEO data for:**
     20
     21- Pages
     22- Posts
     23- Custom post types
     24- Products (WooCommerce)
     25- Categories
     26- Custom taxonomies
     27- WooCommerce Products
     28- Yoast Configuration
     29  - Webmaster verification
     30  - Social profiles
     31  - Schemas
     32  - Breadcrumbs
     33
     34  > Please Note: Yoast and WPGraphQL and their logos are copyright to their respective owners.
    1835
    1936== Installation ==
     
    2542To query for the Yoast Data simply add the seo object to your query:
    2643
    27 ```
     44`
    2845{
    2946  pages(first: 10) {
     
    146163    }
    147164  }
    148 }```
     165}
     166`
    149167
    150168To query for the site configuration data you can query from the root.
    151169
    152 ```
     170`
    153171{
    154172  posts {
     
    246264  }
    247265}
    248 ```
     266`
    249267
    250268== Upgrade Notice ==
    251 ## Please note version 14 of the Yoast Plugin is a major update so is now required to run this plugin
     269Please note version 14 of the Yoast Plugin is a major update so is now required to run this plugin
  • add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php

    r2365220 r2365465  
    22
    33/**
    4  * Plugin Name:     WPGraphql SEO
     4 * Plugin Name:     Add WPGraphQL SEO
    55 * Plugin URI:      https://github.com/ashhitch/wp-graphql-yoast-seo
    66 * Description:     A WPGraphQL Extension that adds support for Yoast SEO
     
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.5.4
     11 * Version:         4.5.5
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
Note: See TracChangeset for help on using the changeset viewer.