7.12.3 • Published 4 months ago

gatsby-source-wordpress v7.12.3

Weekly downloads
13,756
License
MIT
Repository
github
Last release
4 months ago

gatsby-source-wordpress

Source plugin for pulling data into Gatsby from WordPress sites using the WordPress JSON REST API.

An example site for this plugin is available.

Features

  • Pulls data from self-hosted WordPress sites, hosted on wordpress.com or wordpress.org
  • Should work with any number of article and post (tested on a site with 900 posts)
  • Can authenticate to wordpress.com's API using OAuth 2 so media can be queried
  • Easily create responsive images in Gatsby from WordPress images. See image processing section.

WordPress and custom entities

This module currently pulls from WordPress the following entities:

  • All entities are supported (posts, pages, tags, categories, media, types, users, statuses, taxonomies, ...)
  • Any new entity should be pulled as long the IDs are correct.
  • ACF Entities (Advanced Custom Fields)
  • Custom post types (any type you could have declared using WordPress' functions.php)

We welcome PRs adding support for data from other plugins.

Install

npm install --save gatsby-source-wordpress

How to use

// In your gatsby-config.js
plugins: [
  /*
     * Gatsby's data processing layer begins with “source”
     * plugins. Here the site sources its data from Wordpress.
     */
  {
    resolve: "gatsby-source-wordpress",
    options: {
      /*
        * The base URL of the Wordpress site without the trailingslash and the protocol. This is required.
        * Example : 'gatsbyjsexamplewordpress.wordpress.com' or 'www.example-site.com'
        */
      baseUrl: "gatsbyjsexamplewordpress.wordpress.com",
      // The protocol. This can be http or https.
      protocol: "http",
      // Indicates whether the site is hosted on wordpress.com.
      // If false, then the asumption is made that the site is self hosted.
      // If true, then the plugin will source its content on wordpress.com using the JSON REST API V2.
      // If your site is hosted on wordpress.org, then set this to false.
      hostingWPCOM: true,
      // If useACF is true, then the source plugin will try to import the Wordpress ACF Plugin contents.
      // This feature is untested for sites hosted on Wordpress.com.
      // Defaults to true.
      useACF: true,
      auth: {
        // If auth.user and auth.pass are filled, then the source plugin will be allowed
        // to access endpoints that are protected with .htaccess.
        htaccess_user: "your-htaccess-username",
        htaccess_pass: "your-htaccess-password",
        htaccess_sendImmediately: false,

        // If hostingWPCOM is true then you will need to communicate with wordpress.com API
        // in order to do that you need to create an app (of type Web) at https://developer.wordpress.com/apps/
        // then add your clientId, clientSecret, username, and password here
        wpcom_app_clientSecret:
          "NMPnXYFtj2gKas7V1kZyMxr7oLry9V5ZxIyBQGu2txjVHg0GhFz6RYcKopkHICYg",
        wpcom_app_clientId: "54793",
        wpcom_user: "gatsbyjswpexample@gmail.com",
        wpcom_pass: "very-secured-password",
      },
      // Set verboseOutput to true to display a verbose output on `npm run develop` or `npm run build`
      // It can help you debug specific API Endpoints problems
      verboseOutput: false,
      // Search and Replace Urls across WordPress content
      searchAndReplaceContentUrls: {
        sourceUrl: "https://source-url.com",
        replacementUrl: "https://replacement-url.com",
      },
    },
  },
];

WordPress Plugins

These plugins were tested. We welcome PRs adding support for data from other plugins.

  • Custom Post Types : it will work seemlessly, no further option needs to be activated. ("Show in REST API" setting needs to be set to true on the custom post in the plugin settings for this to work. It's set to "false" by default.)

  • ACF The option useACF: true must be activated in your site's gatsby-config.js.

    • You must have the plugin acf-to-rest-api installed in WordPress.
    • Will pull the acf: { ... } fields's contents from any entity which has it attached (pages, posts, medias, ... you choose from in WordPress back-end while creating a Group of Fields).
    • ACF Pro same as ACF :
    • Will work with Flexible content and premium stuff like that (repeater, gallery, ...).
    • Will pull the content attached to the options page.
  • WP-API-MENUS which gives you the menus and menu locations endpoint.

  • WPML-REST-API which adds the current locale and available translations to all post types.

How to use Gatsby with Wordpress.com hosting

Set hostingWPCOM: true.

You will need to provide an (API Key)https://en.support.wordpress.com/api-keys/.

Note : you don't need this for Wordpress.org hosting in which your WordPress will behave like a self-hosted instance.

How to query

You can query nodes created from Wordpress using GraphQL like the following: Note : Learn to use the GraphQL tool and Ctrl+Spacebar at http://localhost:3000/___graphiql to discover the types and properties of your GraphQL model.

Query posts

  allWordpressPost {
    edges {
      node {
        id
        slug
        title
        content
        excerpt
        date
        modified
      }
    }
  }

Query pages

  allWordpressPage {
    edges {
      node {
        id
        title
        content
        excerpt
        date
        modified
        slug
        status
      }
    }
  }

Same thing for other type of entity (tag, media, categories, ...).

Query any other entity

In the following example, ${Manufacturer} will be replaced by the endpoint prefix and ${Endpoint} by the name of the endpoint.

To know what's what, check the URL of the endpoint. You can set verboseOutput: true in order to get more information of what's executed by the source plugin behind the scene.

For example the following URL: http://my-blog.wordpress.com/wp-json/acf/v2/options

  • Manufacturer : acf
  • Endpoint : options
  • Final GraphQL Type : AllWordpressAcfOptions

For example the following URL: http://my-blog.wordpress.com/wp-api-menus/v2/menu-locations

  • Manufacturer : wpapimenus
  • Endpoint : menulocations
  • Final GraphQL Type : AllWordpressWpApiMenusMenuLocations
  allWordpress${Manufacturer}${Endpoint} {
    edges {
      node {
        id
       type
        // Put your fields here
      }
    }
  }

Query posts with the child ACF Fields Node

Mention the apparition of childWordpressAcfField in the query below :

  allWordpressPost {
    edges {
      node {
        id
        slug
        title
        content
        excerpt
        date
        modified
        author
        featured_media
        template
        categories
        tags
        acf {
         // use ___GraphiQL debugger and Ctrl+Spacebar to describe your model.
        }
      }
    }
  }

Query pages with the child ACF Fields Node

Mention the apparition of childWordpressAcfField in the query below :

  allWordpressPage {
    edges {
      node {
        id
        title
        content
        excerpt
        date
        modified
        slug
        author
        featured_media
        template
        acf {
         // use ___GraphiQL debugger and Ctrl+Spacebar to describe your model.
        }
      }
    }
  }

Query with ACF Flexible Content

ACF Flexible Content returns an array of objects with different types and are handled differently than other fields.

To access those fields, instead of using their field name, you need to use [field_name]_[post_type] (if you have field named page_builder in your WordPress pages you would need to use page_builder_page).

To access data stored in these fields, you need to use GraphQL inline fragments. This require you to know types of nodes. The easiest way to get the types of nodes is to use ___GraphiQL debugger and run the below query (adjust post type and field name):

  allWordpressPage {
    edges {
      node {
        title
        acf {
          page_builder_page {
            __typename
          }
        }
      }
    }
  }

When you have node type names, you can use them to create inline fragments.

Full example:

  allWordpressPage {
    edges {
      node {
        title
        acf {
          page_builder_page {
            __typename
            ... on WordPressAcf_hero {
              title
              subtitle
            }
            ... on WordpressAcf_text {
              text
            }
            ... on WordpressAcf_image {
              image {
                localFile {
                  childImageSharp {
                    sizes(maxWidth: 800) {
                      ...GatsbyImageSharpSizes_withWebp
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }

Query posts with the WPML Fields Node

  allWordpressPost {
    edges {
      node {
        id
        slug
        title
        content
        excerpt
        date
        modified
        author
        featured_media
        template
        categories
        tags
        wpml_current_locale
        wpml_translations {
          locale
          wordpress_id
          post_title
          href
        }
      }
    }
  }

Query pages with the WPML Fields Node

  allWordpressPage {
    edges {
      node {
        id
        title
        content
        excerpt
        date
        modified
        slug
        author
        featured_media
        template
        wpml_current_locale
        wpml_translations {
          locale
          wordpress_id
          post_title
          href
        }
      }
    }
  }

Image processing

To use image processing you need gatsby-transformer-sharp and gatsby-plugin-sharp in your gatsby-config.js.

You can apply image processing to:

  • featured images (also known as post thumbnails),
  • ACF fields:
    • Image field type (return value must be set to Image Object or Image URL or field name must be featured_media),
    • Gallery field type.

Image processing of inline images added in wordpress WYSIWIG editor is currently not supported.

To access image processing in your queries you need to use this pattern:

imageFieldName {
  localFile {
    childImageSharp {
      ...
    }
  }
}

Full example:

  allWordpressPost {
    edges {
      node {
        title
        featured_media {
          localFile {
            childImageSharp {
              resolutions(width: 500, height: 300) {
                ...GatsbyImageSharpResolutions_withWebp
              }
            }
          }
        }
        acf {
          image {
            localFile {
              childImageSharp {
                sizes(maxWidth: 500) {
                  ...GatsbyImageSharpSizes_withWebp
                }
              }
            }
          }
          gallery {
            localFile {
              childImageSharp {
                resize(width: 180, height: 180) {
                  src
                }
              }
            }
          }
        }
      }
    }
  }

To learn more about image processing check

Site's gatsby-node.js example

const _ = require(`lodash`);
const Promise = require(`bluebird`);
const path = require(`path`);
const slash = require(`slash`);

// Implement the Gatsby API “createPages”. This is
// called after the Gatsby bootstrap is finished so you have
// access to any information necessary to programmatically
// create pages.
// Will create pages for WordPress pages (route : /{slug})
// Will create pages for WordPress posts (route : /post/{slug})
exports.createPages = ({ graphql, boundActionCreators }) => {
  const { createPage } = boundActionCreators;
  return new Promise((resolve, reject) => {
    // The “graphql” function allows us to run arbitrary
    // queries against the local WordPress graphql schema. Think of
    // it like the site has a built-in database constructed
    // from the fetched data that you can run queries against.

    // ==== PAGES (WORDPRESS NATIVE) ====
    graphql(
      `
        {
          allWordpressPage {
            edges {
              node {
                id
                slug
                status
                template
              }
            }
          }
        }
      `
    )
      .then(result => {
        if (result.errors) {
          console.log(result.errors);
          reject(result.errors);
        }

        // Create Page pages.
        const pageTemplate = path.resolve("./src/templates/page.js");
        // We want to create a detailed page for each
        // page node. We'll just use the WordPress Slug for the slug.
        // The Page ID is prefixed with 'PAGE_'
        _.each(result.data.allWordpressPage.edges, edge => {
          // Gatsby uses Redux to manage its internal state.
          // Plugins and sites can use functions like "createPage"
          // to interact with Gatsby.
          createPage({
            // Each page is required to have a `path` as well
            // as a template component. The `context` is
            // optional but is often necessary so the template
            // can query data specific to each page.
            path: `/${edge.node.slug}/`,
            component: slash(pageTemplate),
            context: {
              id: edge.node.id,
            },
          });
        });
      })
      // ==== END PAGES ====

      // ==== POSTS (WORDPRESS NATIVE AND ACF) ====
      .then(() => {
        graphql(
          `
            {
              allWordpressPost {
                edges {
                  node {
                    id
                    slug
                    status
                    template
                    format
                  }
                }
              }
            }
          `
        ).then(result => {
          if (result.errors) {
            console.log(result.errors);
            reject(result.errors);
          }
          const postTemplate = path.resolve("./src/templates/post.js");
          // We want to create a detailed page for each
          // post node. We'll just use the WordPress Slug for the slug.
          // The Post ID is prefixed with 'POST_'
          _.each(result.data.allWordpressPost.edges, edge => {
            createPage({
              path: `/${edge.node.slug}/`,
              component: slash(postTemplate),
              context: {
                id: edge.node.id,
              },
            });
          });
          resolve();
        });
      });
    // ==== END POSTS ====
  });
};
7.14.0-next.0

4 months ago

7.13.0-next.1

5 months ago

7.12.2

6 months ago

7.12.3

6 months ago

7.12.1

6 months ago

7.12.0

8 months ago

7.11.0-next.1

11 months ago

7.11.0-next.0

11 months ago

7.11.0

10 months ago

7.13.0-next.0

9 months ago

6.25.5

11 months ago

7.10.0

11 months ago

7.10.1

11 months ago

7.12.0-next.0

10 months ago

7.12.0-next.1

10 months ago

7.10.0-next.1

12 months ago

7.10.0-next.0

1 year ago

7.10.0-next.2

12 months ago

7.9.0

1 year ago

7.8.0-next.0

1 year ago

7.8.0

1 year ago

7.9.0-next.1

1 year ago

7.9.0-next.0

1 year ago

6.25.4

1 year ago

7.7.0

1 year ago

7.4.1

1 year ago

7.4.0

1 year ago

7.6.0

1 year ago

7.6.0-next.1

1 year ago

7.6.0-next.0

1 year ago

6.25.3

1 year ago

7.7.0-next.0

1 year ago

7.5.0

1 year ago

7.5.0-next.1

1 year ago

7.2.0-next.1

1 year ago

7.2.0-next.0

1 year ago

6.25.1

1 year ago

6.25.2

1 year ago

6.25.0

1 year ago

7.1.0-next.0

1 year ago

7.4.0-next.0

1 year ago

7.4.0-next.1

1 year ago

7.4.0-next.2

1 year ago

7.0.0

1 year ago

7.2.3

1 year ago

7.2.2

1 year ago

7.2.1

1 year ago

7.2.0

1 year ago

7.3.0-next.2

1 year ago

7.3.0-next.3

1 year ago

7.3.0-next.0

1 year ago

7.3.0-next.1

1 year ago

5.15.0

1 year ago

7.3.1

1 year ago

7.3.0

1 year ago

6.24.2

1 year ago

6.24.1

1 year ago

7.0.0-next.7

1 year ago

7.0.0-next.5

1 year ago

7.0.0-next.6

1 year ago

7.0.0-next.3

1 year ago

7.0.0-next.4

1 year ago

7.0.0-next.1

2 years ago

7.0.0-next.2

2 years ago

7.0.0-next.0

2 years ago

7.1.0

1 year ago

7.3.2

1 year ago

7.5.0-next.0

1 year ago

6.22.0-next.3

2 years ago

6.23.0

2 years ago

6.23.1

2 years ago

6.25.0-next.0

2 years ago

6.23.0-next.1

2 years ago

6.23.0-next.0

2 years ago

6.24.0-next.1

2 years ago

6.24.0-next.0

2 years ago

6.24.0-next.3

2 years ago

6.24.0-next.2

2 years ago

6.24.0

2 years ago

6.22.0

2 years ago

6.22.1

2 years ago

6.21.1

2 years ago

6.18.0-next.0

2 years ago

6.18.0-next.1

2 years ago

6.16.1

2 years ago

6.16.0

2 years ago

6.22.0-next.0

2 years ago

6.22.0-next.1

2 years ago

6.22.0-next.2

2 years ago

6.14.3

2 years ago

6.14.2

2 years ago

6.18.1

2 years ago

6.18.0

2 years ago

6.16.0-next.0

2 years ago

6.16.0-next.3

2 years ago

6.16.0-next.2

2 years ago

6.16.0-next.1

2 years ago

6.20.0-next.3

2 years ago

6.20.0-next.2

2 years ago

6.20.0-next.1

2 years ago

6.20.0-next.0

2 years ago

6.21.0

2 years ago

6.17.0

2 years ago

6.15.1

2 years ago

6.15.0

2 years ago

6.19.0

2 years ago

6.20.0

2 years ago

6.19.0-next.3

2 years ago

6.19.0-next.2

2 years ago

6.19.0-next.1

2 years ago

6.19.0-next.0

2 years ago

6.21.0-next.3

2 years ago

6.21.0-next.0

2 years ago

6.21.0-next.2

2 years ago

6.21.0-next.1

2 years ago

6.17.0-next.1

2 years ago

6.17.0-next.0

2 years ago

6.14.1

2 years ago

6.14.0

2 years ago

6.15.0-next.0

2 years ago

6.15.0-next.1

2 years ago

6.15.0-next.2

2 years ago

6.14.0-next.1

2 years ago

6.14.0-next.2

2 years ago

6.14.0-next.0

2 years ago

6.14.0-next.5

2 years ago

6.14.0-next.3

2 years ago

6.14.0-next.4

2 years ago

6.13.0

2 years ago

6.12.0-next.2

2 years ago

6.12.0-next.1

2 years ago

6.12.0-next.3

2 years ago

6.12.0-next.0

2 years ago

6.10.0-next.3

2 years ago

6.11.0-next.2

2 years ago

6.11.0-next.3

2 years ago

6.11.0-next.0

2 years ago

6.11.0-next.1

2 years ago

6.11.0-next.4

2 years ago

6.9.1

2 years ago

6.13.0-next.0

2 years ago

6.12.0

2 years ago

6.12.2

2 years ago

6.12.1

2 years ago

6.11.1

2 years ago

6.11.0

2 years ago

6.11.2

2 years ago

6.10.2

2 years ago

6.10.1

2 years ago

6.10.0

2 years ago

6.10.0-next.0

2 years ago

6.10.0-next.1

2 years ago

6.10.0-next.2

2 years ago

6.9.0-next.1

2 years ago

6.8.1

2 years ago

6.8.2

2 years ago

6.9.0

2 years ago

6.9.0-next.0

2 years ago

6.6.0-next.3

2 years ago

6.6.0-next.2

2 years ago

6.6.0-next.1

2 years ago

6.6.0-next.0

2 years ago

6.5.0-next.0

2 years ago

6.5.0-next.2

2 years ago

6.5.0-next.1

2 years ago

6.5.0-next.3

2 years ago

6.4.0-next.0

2 years ago

6.4.0-next.1

2 years ago

6.5.0

2 years ago

6.6.0

2 years ago

6.7.0

2 years ago

6.8.0

2 years ago

6.8.0-next.0

2 years ago

6.8.0-next.1

2 years ago

6.8.0-next.2

2 years ago

6.3.0

2 years ago

6.4.0

2 years ago

6.7.0-next.3

2 years ago

6.7.0-next.1

2 years ago

6.7.0-next.2

2 years ago

6.7.0-next.0

2 years ago

6.5.2

2 years ago

6.5.1

2 years ago

6.3.0-next.0

2 years ago

6.3.0-next.1

2 years ago

6.1.2

2 years ago

6.1.1

2 years ago

6.1.3

2 years ago

6.2.0

2 years ago

6.2.0-next.2

2 years ago

6.2.0-next.1

2 years ago

6.1.0-next.1

2 years ago

6.1.0-next.2

2 years ago

6.1.0

2 years ago

5.14.2

2 years ago

6.2.0-next.0

2 years ago

6.0.0

2 years ago

6.0.0-zz-next.5

3 years ago

6.1.0-next.0

2 years ago

6.0.0-zz-next.6

3 years ago

6.0.0-zz-next.7

3 years ago

6.0.0-zz-next.2

3 years ago

6.0.0-zz-next.3

3 years ago

6.0.0-zz-next.4

3 years ago

5.14.1

3 years ago

5.14.0

3 years ago

6.0.0-next.2

3 years ago

6.0.0-zz-next.1

3 years ago

6.0.0-zz-next.0

3 years ago

6.0.0-next.0

3 years ago

6.0.0-next.1

3 years ago

5.14.0-next.4

3 years ago

5.14.0-next.2

3 years ago

5.14.0-next.1

3 years ago

5.13.0

3 years ago

5.13.0-next.4

3 years ago

5.14.0-next.0

3 years ago

5.13.0-next.3

3 years ago

5.12.1

3 years ago

5.13.0-next.2

3 years ago

5.13.0-next.1

3 years ago

5.12.0

3 years ago

5.13.0-next.0

3 years ago

5.12.0-next.3

3 years ago

5.12.0-next.2

3 years ago

5.12.0-next.1

3 years ago

5.11.0

3 years ago

5.12.0-next.0

3 years ago

5.10.0

3 years ago

5.11.0-next.1

3 years ago

5.11.0-next.0

3 years ago

5.10.0-next.3

3 years ago

4.0.8

3 years ago

5.9.2

3 years ago

5.10.0-next.2

3 years ago

4.0.7

3 years ago

5.9.1

3 years ago

5.10.0-next.1

3 years ago

5.9.0

3 years ago

5.10.0-next.0

3 years ago

5.8.0

3 years ago

5.8.0-next.2

3 years ago

5.9.0-next.0

3 years ago

5.7.0-next.2

3 years ago

5.7.0-next.1

3 years ago

5.8.0-next.1

3 years ago

5.8.0-next.0

3 years ago

5.6.0

3 years ago

5.7.1

3 years ago

5.7.0

3 years ago

5.6.0-next.0

3 years ago

5.6.0-next.2

3 years ago

5.6.0-next.1

3 years ago

5.7.0-next.0

3 years ago

5.5.0-next.2

3 years ago

5.5.0-next.0

3 years ago

5.5.0-next.1

3 years ago

5.4.1

3 years ago

5.4.0

3 years ago

5.5.1

3 years ago

5.5.0

3 years ago

5.4.0-next.3

3 years ago

5.3.1

3 years ago

5.4.0-next.1

3 years ago

5.3.0

3 years ago

5.3.0-next.3

3 years ago

5.4.0-next.0

3 years ago

5.2.3

3 years ago

4.0.6

3 years ago

5.2.2

3 years ago

5.3.0-next.2

3 years ago

5.2.1

3 years ago

5.1.1

3 years ago

5.2.0

3 years ago

5.3.0-next.1

3 years ago

5.3.0-next.0

3 years ago

5.2.0-next.1

3 years ago

5.1.0

3 years ago

5.2.0-next.0

3 years ago

5.1.0-next.3

3 years ago

4.0.5

3 years ago

5.0.0

3 years ago

5.0.0-v3rc.3

3 years ago

4.0.4

3 years ago

5.0.0-v3rc.2

3 years ago

5.0.0-v3rc.1

3 years ago

5.1.0-next.2

3 years ago

5.1.0-next.0

3 years ago

5.1.0-next.1

3 years ago

5.0.0-v3rc.0

3 years ago

5.0.0-next.9

3 years ago

4.0.3

3 years ago

4.0.2

3 years ago

5.0.0-next.8

3 years ago

5.0.0-next.7

3 years ago

5.0.0-next.6

3 years ago

5.0.0-next.5

3 years ago

5.0.0-next.4

3 years ago

5.0.0-next.3

3 years ago

5.0.0-next.2

3 years ago

5.0.0-next.1

3 years ago

4.0.1

3 years ago

5.0.0-next.0

3 years ago

4.0.0

3 years ago

4.1.0-next.1

3 years ago

3.11.0

3 years ago

3.12.0-next.0

3 years ago

3.10.0

3 years ago

3.11.0-next.0

3 years ago

3.9.1

3 years ago

3.10.0-next.1

3 years ago

3.9.0

3 years ago

3.10.0-next.0

3 years ago

3.9.0-next.2

3 years ago

3.8.1

3 years ago

3.9.0-next.1

3 years ago

3.8.0

3 years ago

3.9.0-next.0

3 years ago

3.7.0

3 years ago

3.8.0-next.0

3 years ago

3.6.1

3 years ago

3.7.0-next.2

3 years ago

3.6.0

3 years ago

3.7.0-next.1

3 years ago

3.7.0-next.0

3 years ago

3.5.0

3 years ago

3.5.0-next.2

3 years ago

3.6.0-next.0

3 years ago

3.5.0-next.1

3 years ago

3.4.2

3 years ago

3.5.0-next.0

3 years ago

3.4.1

3 years ago

3.3.41

3 years ago

3.4.0

3 years ago

3.3.40

3 years ago

3.3.39

4 years ago

3.3.38

4 years ago

3.3.37

4 years ago

3.3.36

4 years ago

3.3.35

4 years ago

3.3.34

4 years ago

3.3.33

4 years ago

3.3.32

4 years ago

3.3.31

4 years ago

3.3.30

4 years ago

3.3.29

4 years ago

3.3.28

4 years ago

3.3.27

4 years ago

3.3.26

4 years ago

3.3.24

4 years ago

3.3.25

4 years ago

3.3.23

4 years ago

3.3.22

4 years ago

3.3.20

4 years ago

3.3.21

4 years ago

3.3.19

4 years ago

3.3.18

4 years ago

3.3.17

4 years ago

3.3.15

4 years ago

3.3.14

4 years ago

3.3.13

4 years ago

3.3.12

4 years ago

3.3.11

4 years ago

3.3.9

4 years ago

3.3.10

4 years ago

3.3.8

4 years ago

3.3.7

4 years ago

3.3.6

4 years ago

3.3.5

4 years ago

3.3.4

4 years ago

3.3.3

4 years ago

3.3.2

4 years ago

3.3.1

4 years ago

3.3.0

4 years ago

3.2.6

4 years ago

3.2.5

4 years ago

3.2.4

4 years ago

3.2.3

4 years ago

3.2.2

4 years ago

3.2.1

4 years ago

3.2.0

4 years ago

3.1.74

4 years ago

3.1.73

4 years ago

3.1.72

4 years ago

3.1.71

4 years ago

3.1.70

4 years ago

3.1.69

4 years ago

3.1.68

4 years ago

3.1.67

4 years ago

3.1.66

4 years ago

3.1.65

4 years ago

3.1.64

4 years ago

3.1.63

4 years ago

3.1.61

4 years ago

3.1.62

4 years ago

3.1.60

4 years ago

3.1.59

4 years ago

3.1.58

4 years ago

3.1.57

4 years ago

3.1.56

4 years ago

3.1.54

4 years ago

3.1.53

4 years ago

3.1.51

4 years ago

3.1.50

4 years ago

3.1.49

4 years ago

3.1.48

4 years ago

3.1.47

4 years ago

3.1.46

4 years ago

3.1.45

4 years ago

3.1.44

4 years ago

3.1.43

5 years ago

3.1.42

5 years ago

3.1.41

5 years ago

3.1.40

5 years ago

3.1.39

5 years ago

3.1.38

5 years ago

3.1.36

5 years ago

3.1.35

5 years ago

3.1.34

5 years ago

3.1.33

5 years ago

3.1.32

5 years ago

3.1.31

5 years ago

3.1.30

5 years ago

3.1.29

5 years ago

3.1.28

5 years ago

3.1.27

5 years ago

3.1.26

5 years ago

3.1.25

5 years ago

3.1.24

5 years ago

3.1.23

5 years ago

3.1.22

5 years ago

3.1.21

5 years ago

3.1.20

5 years ago

3.1.19

5 years ago

3.1.18

5 years ago

3.1.17

5 years ago

3.1.16

5 years ago

3.1.15

5 years ago

3.1.14

5 years ago

3.1.13

5 years ago

3.1.12

5 years ago

3.1.11

5 years ago

3.1.10

5 years ago

3.1.9

5 years ago

3.1.8

5 years ago

3.1.7

5 years ago

3.1.6

5 years ago

3.1.5

5 years ago

3.1.4

5 years ago

3.1.3

5 years ago

3.1.2

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.69

5 years ago

3.0.68

5 years ago

3.0.67

5 years ago

3.0.66

5 years ago

3.0.65

5 years ago

3.0.64

5 years ago

3.0.63

5 years ago

3.0.62

5 years ago

3.0.61

5 years ago

3.0.60

5 years ago

3.0.59

5 years ago

3.0.58

5 years ago

3.0.57

5 years ago

3.0.56

5 years ago

3.0.55

5 years ago

3.0.54

5 years ago

3.0.53

5 years ago

3.0.52

5 years ago

3.0.51

5 years ago

3.0.50

5 years ago

3.0.49

5 years ago

3.0.48

5 years ago

3.0.47

5 years ago

3.0.46

5 years ago

3.0.45

5 years ago

3.0.44

5 years ago

3.0.43

5 years ago

3.0.42

5 years ago

3.0.42-alpha.0

5 years ago

3.0.41

5 years ago

3.0.40

5 years ago

3.0.39

5 years ago

3.0.38

5 years ago

3.0.37

5 years ago

3.0.36

5 years ago

3.0.35

5 years ago

3.0.34

5 years ago

3.0.33

5 years ago

3.0.32

5 years ago

3.0.31

5 years ago

3.0.30

5 years ago

3.0.29

5 years ago

3.0.28

5 years ago

3.0.27

5 years ago

3.0.25

5 years ago

3.0.22

5 years ago

3.0.21

5 years ago

3.0.20

5 years ago

3.0.19

5 years ago

3.0.18

5 years ago

3.0.17

5 years ago

3.0.16

5 years ago

3.0.15

5 years ago

3.0.14

5 years ago

3.0.13

5 years ago

3.0.12

5 years ago

3.0.11

5 years ago

3.0.10

5 years ago

3.0.9

5 years ago

3.0.8

5 years ago

3.0.7

6 years ago

3.0.6

6 years ago

3.0.5

6 years ago

3.0.4

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

3.0.0-rc.9

6 years ago

3.0.0-rc.8

6 years ago

3.0.0-rc.7

6 years ago

3.0.0-rc.6

6 years ago

3.0.0-rc.2

6 years ago

3.0.0-rc.1

6 years ago

3.0.0-rc.0

6 years ago

3.0.0-beta.21

6 years ago

3.0.0-beta.20

6 years ago

3.0.0-beta.19

6 years ago

3.0.0-beta.18

6 years ago

3.0.0-beta.17

6 years ago

3.0.0-beta.16

6 years ago

3.0.0-beta.15

6 years ago

3.0.0-beta.14

6 years ago

3.0.0-beta.13

6 years ago

3.0.0-beta.12

6 years ago

3.0.0-beta.11

6 years ago

3.0.0-beta.10

6 years ago

3.0.0-beta.9

6 years ago

3.0.0-beta.8

6 years ago

3.0.0-beta.7

6 years ago

3.0.0-beta.6

6 years ago

3.0.0-beta.5

6 years ago

2.0.93

6 years ago

3.0.0-beta.4

6 years ago

3.0.0-beta.3

6 years ago

3.0.0-beta.2

6 years ago

3.0.0-beta.1

6 years ago

3.0.0-beta.0

6 years ago

2.0.92

6 years ago

3.0.0-alpha.2

6 years ago

2.0.57-17

6 years ago

2.0.57-16

6 years ago

2.0.91

6 years ago

2.0.90

6 years ago

2.0.89

6 years ago

2.0.88

6 years ago

2.0.87

6 years ago

2.0.57-15

6 years ago

2.0.57-14

6 years ago

2.0.57-13

6 years ago

2.0.86

6 years ago

2.0.57-12

6 years ago

2.0.57-11

6 years ago

2.0.85

6 years ago

2.0.57-8

6 years ago

2.0.84

6 years ago

2.0.83

6 years ago

2.0.57-7

6 years ago

2.0.57-6

6 years ago

2.0.57-5

6 years ago

2.0.82

6 years ago

2.0.57-4

6 years ago

2.0.81

6 years ago

2.0.80

6 years ago

2.0.79

6 years ago

2.0.78

6 years ago

2.0.77

6 years ago

2.0.76

6 years ago

2.0.75

6 years ago

2.0.74

6 years ago

2.0.57-3

6 years ago

2.0.73

6 years ago

2.0.72

6 years ago

2.0.71

6 years ago

2.0.70

6 years ago

2.0.57-2

6 years ago

2.0.69

6 years ago

2.0.68

6 years ago

2.0.67

6 years ago

2.0.66

6 years ago

2.0.63

6 years ago

2.0.57-1

6 years ago

2.0.62

6 years ago

2.0.61

6 years ago

2.0.60

6 years ago

2.0.59

6 years ago

2.0.58

6 years ago

2.0.57-0

6 years ago

2.0.57

6 years ago

2.0.56

6 years ago

2.0.55

6 years ago

2.0.54

6 years ago

2.0.53

6 years ago

2.0.52

6 years ago

2.0.51

6 years ago

2.0.50

6 years ago

2.0.49

6 years ago

2.0.48

6 years ago

2.0.47

6 years ago

2.0.46

6 years ago

2.0.45

6 years ago

2.0.44

6 years ago

2.0.43

6 years ago

2.0.42

6 years ago

2.0.41

6 years ago

2.0.40

6 years ago

2.0.39

6 years ago

2.0.38

6 years ago

2.0.37

6 years ago

2.0.36

6 years ago

2.0.35

6 years ago

2.0.34

6 years ago

2.0.33

6 years ago

2.0.32

6 years ago

2.0.31

6 years ago

2.0.30

6 years ago

2.0.29

6 years ago

2.0.28

6 years ago

2.0.27

7 years ago

2.0.26

7 years ago

2.0.25

7 years ago

2.0.24

7 years ago

2.0.23

7 years ago

2.0.22

7 years ago

2.0.21

7 years ago

2.0.20

7 years ago

2.0.19

7 years ago

2.0.18

7 years ago

2.0.17

7 years ago

2.0.16

7 years ago

2.0.15

7 years ago

2.0.14

7 years ago

2.0.13

7 years ago

2.0.12

7 years ago

2.0.10

7 years ago

2.0.9

7 years ago

2.0.8

7 years ago

2.0.7

7 years ago

2.0.6

7 years ago

2.0.5

7 years ago

2.0.4

7 years ago

2.0.3

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

1.7.10

7 years ago

1.7.9

7 years ago

1.7.8

7 years ago

1.7.7

7 years ago

2.0.0

7 years ago

1.7.6

7 years ago

1.7.5

7 years ago

1.7.4

7 years ago

1.7.3

7 years ago

1.7.2

7 years ago

1.7.1

7 years ago

1.7.0

7 years ago

1.6.3

7 years ago

1.5.0

7 years ago

1.4.2

7 years ago

1.4.1

7 years ago

1.4.0

7 years ago

1.3.0

7 years ago

1.1.0

7 years ago

1.0.1

7 years ago

1.0.0-beta.7

7 years ago

1.0.0-beta.6

7 years ago

1.0.0-beta.5

7 years ago

1.0.0-beta.4

7 years ago

1.0.0-beta.3

7 years ago

1.0.0-beta.2

7 years ago

1.0.0-beta.1

7 years ago