Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gatsby-plugin-netlify-cms

gatsbyjs12kMITdeprecated7.12.1

The gatsby-plugin-netlify-cms package is now deprecated. This plugin has been renamed and moved to https://www.npmjs.com/package/gatsby-plugin-decap-cms

A Gatsby plugin which generates the Netlify CMS single page app

gatsby, gatsby-plugin, netlify, netlify-cms, cms

readme

⚠️ This package is now deprecated

The gatsby-plugin-netlify-cms package is now deprecated. This plugin has been renamed and moved to Decap CMS. See gatsby-plugin-decap-cms for more information.

gatsby-plugin-netlify-cms

Gatsby v1 and Netlify CMS 1.x require gatsby-plugin-netlify-cms@^2.0.0.

Gatsby v2 and Netlify CMS 2.x require gatsby-plugin-netlify-cms@^3.0.0.

Gatsby v2 and Netlify CMS (netlify-cms-app) 2.9.x required gatsby-plugin-netlify-cms@^4.0.0, which is documented below.

Overview

Automatically generates an admin/index.html with a default Netlify CMS implementation.

Netlify CMS is a React single page app for editing git based content via API. Its built for non-technical and technical editors alike, and its super easy to install and configure. For more details, check out the docs site.

Note: gatsby-plugin-netlify-cms@^4.0.0 changes the requirement for Netlify CMS to use a new library published netlify-cms-app@^2.9.x and is a breaking change.

Install

npm install netlify-cms-app gatsby-plugin-netlify-cms

How to use

Add the Netlify CMS plugin in your gatsby-config.js:

plugins: [`gatsby-plugin-netlify-cms`]

Then add your Netlify CMS configuration file in static/admin/config.yml.

Options

Netlify CMS can be configured via the plugin options below. You can learn about how to pass options to plugins in the Gatsby docs.

modulePath

(optional, type: string | Array<string>, default: undefined)

If you need to customize Netlify CMS, e.g. registering custom widgets or styling the preview pane, you'll need to do so in a JavaScript module and provide Gatsby with the path to your module via the modulePath option. Any styles imported by this module (or by the modules that it imports, all the way down the chain) are automatically applied to the editor preview pane by the plugin.

plugins: [
  {
    resolve: `gatsby-plugin-netlify-cms`,
    options: {
      /**
       * One convention is to place your Netlify CMS customization code in a
       * `src/cms` directory.
       */
      modulePath: `${__dirname}/src/cms/cms.js`,
    },
  },
]

The js module might look like this:

/**
 * The default export of `netlify-cms-app` is an object with all of the Netlify CMS
 * extension registration methods, such as `registerWidget` and
 * `registerPreviewTemplate`.
 */
import CMS from "netlify-cms-app"

/**
 * Any imported styles should be automatically be applied to the editor preview
 * pane thus eliminating the need to use `registerPreviewStyle` for imported
 * styles. However if you are experiencing build errors regarding importing css,
 * sass or scss into a cms module when deploying to the netlify platform, you
 * may need to follow the implementation found in netlify documentation here:
 * https://www.netlifycms.org/docs/beta-features/#raw-css-in-registerpreviewstyle
 * All of the example imports below would result in styles being applied to the
 * preview pane.
 */
import "module-that-imports-styles.js"
import "styles.scss"
import "../other-styles.css"

/**
 * Let's say you've created widget and preview components for a custom image
 * gallery widget in separate files:
 */
import ImageGalleryWidget from "./image-gallery-widget.js"
import ImageGalleryPreview from "./image-gallery-preview.js"

/**
 * Register the imported widget:
 */
CMS.registerWidget(`image-gallery`, ImageGalleryWidget, ImageGalleryPreview)

manualInit

(optional, type: boolean, default: false)

Set this to true If you need to manually initialize Netlify CMS. The plugin will take care of setting window.CMS_MANUAL_INIT to true:

plugins: [
  {
    resolve: `gatsby-plugin-netlify-cms`,
    options: {
      manualInit: true,
    },
  },
]

The js module might look like this:

import CMS from "netlify-cms-app"

/**
 * Optionally pass in a config object. This object will be merged into `config.yml` if it exists
 */

CMS.init({
  config: {
    backend: {
      name: "git-gateway",
    },
  },
})

enableIdentityWidget

(optional, type: boolean, default: true)

enableIdentityWidget is true by default, allowing Netlify Identity to be used without configuration. Disable it when not using Netlify Identity to reduce bundle size.

plugins: [
  {
    resolve: `gatsby-plugin-netlify-cms`,
    options: {
      enableIdentityWidget: true,
    },
  },
]

publicPath

(optional, type: string, default: "admin")

Customize the path to Netlify CMS on your Gatsby site.

htmlTitle

(optional, type: string, default: Content Manager)

Customize the value of the title tag in your CMS HTML (shows in the browser bar).

htmlFavicon

(optional, type: string, default: "")

Customize the value of the favicon tag in your CMS HTML (shows in the browser bar).

includeRobots

(optional, type: boolean, default: false)

By default, the CMS page is not indexed by crawlers. Use this to add a meta tag to invite robots to index the CMS page.

customizeWebpackConfig

(optional, type: function)

Function to customize webpack configuration.

Function parameters:

plugins: [
  {
    resolve: `gatsby-plugin-netlify-cms`,
    options: {
      customizeWebpackConfig: (config, { plugins }) => {
        const Plugin = require("...")

        config.plugins.push(
          plugins.define({
            "process.env.MY_VAR": JSON.stringify("my var value"),
          })
        )

        config.plugins.push(new Plugin())
      },
    },
  },
]

Example

Here is the plugin with example values for all options (note that no option is required):

plugins: [
  {
    resolve: `gatsby-plugin-netlify-cms`,
    options: {
      modulePath: `path/to/custom/script.js`, // default: undefined
      enableIdentityWidget: true,
      publicPath: `admin`,
      htmlTitle: `Content Manager`,
      htmlFavicon: `path/to/favicon`,
      includeRobots: false,
    },
  },
]

Disable widget on site

If you're not using Netlify Identity within your site you have the option to completely disable the widget (and not the CMS). To do so, add the following to gatsby-node.js:

const webpack = require(`webpack`)

exports.onCreateWebpackConfig = ({ actions }) => {
  actions.setWebpackConfig({
    plugins: [
      new webpack.IgnorePlugin({
        resourceRegExp: /^netlify-identity-widget$/,
      }),
    ],
  })
}

Support

For help with integrating Netlify CMS with Gatsby, check out the community Slack.

changelog

Changelog: gatsby-plugin-netlify-cms

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

7.11.0 (2023-06-15)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.10.0 (2023-05-16)

🧾 Release notes

Bug Fixes

  • update dependency html-webpack-plugin to ^5.5.1 for gatsby-plugin-netlify-cms #38001 (0250edc)
  • ignore PartialHydrationPlugin #37962 (a13d1cd)

7.9.0 (2023-04-18)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.8.0 (2023-03-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.7.0 (2023-02-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.6.0 (2023-02-07)

🧾 Release notes

Bug Fixes

  • update babel monorepo #37568 (13a0a9e)
  • update dependency html-webpack-plugin to ^5.5.0 for gatsby-plugin-netlify-cms #37571 (89fdb50)

7.5.0 (2023-01-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.4.0 (2023-01-10)

🧾 Release notes

Chores

7.3.0 (2022-12-13)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.2.0 (2022-11-25)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.1.0 (2022-11-22)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

7.0.0 (2022-11-08)

🧾 Release notes

Features

Chores

6.24.0 (2022-09-27)

🧾 Release notes

Chores

6.23.0 (2022-09-13)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.22.0 (2022-08-30)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.21.0 (2022-08-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.20.0 (2022-08-02)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.19.0 (2022-07-19)

🧾 Release notes

Chores

6.18.0 (2022-07-05)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.17.0 (2022-06-21)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.16.0 (2022-06-07)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.15.0 (2022-05-24)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.14.0 (2022-05-10)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.13.0 (2022-04-26)

🧾 Release notes

Bug Fixes

6.12.1 (2022-04-13)

Note: Version bump only for package gatsby-plugin-netlify-cms

6.12.0 (2022-04-12)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.11.0 (2022-03-29)

🧾 Release notes

Bug Fixes

Chores

  • replace all uses of gatsbyjs.org with gatsbyjs.com #35101 (16cff41)

6.10.0 (2022-03-16)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.9.0 (2022-03-01)

🧾 Release notes

Chores

6.8.0 (2022-02-22)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.7.0 (2022-02-08)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.6.0 (2022-01-25)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.5.0 (2022-01-11)

🧾 Release notes

Bug Fixes

Other Changes

  • Revert "fix(gatsby): Update mini-css-extract-plugin to fix inc builds issue (#33979)" fix #33979 fix #34413 (26a94f2)

6.4.0 (2021-12-14)

🧾 Release notes

Bug Fixes

  • update dependency @soda/friendly-errors-webpack-plugin to v1.8.1 for gatsby-plugin-netlify-cms #34121 (a442b2d)

6.3.0 (2021-12-01)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.2.0 (2021-11-16)

🧾 Release notes

Bug Fixes

  • update minor and patch dependencies for gatsby-plugin-netlify-cms #33769 (d961d7d)

6.1.0 (2021-11-02)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

6.0.0 (2021-10-21)

🧾 Release notes

Chores

5.14.0 (2021-09-18)

🧾 Release notes

Chores

5.13.0 (2021-09-01)

🧾 Release notes

Chores

5.12.0 (2021-08-18)

🧾 Release notes

Bug Fixes

  • update dependency mini-css-extract-plugin to v1.6.2 #32586 (6c6d4e5)
  • update minor and patch dependencies for gatsby-plugin-netlify-cms #32600 (b7b67a9)

Chores

5.11.0 (2021-08-04)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

5.10.0 (2021-07-20)

🧾 Release notes

Chores

5.9.0 (2021-07-07)

🧾 Release notes

Bug Fixes

Chores

5.8.0 (2021-06-23)

🧾 Release notes

Chores

5.7.1 (2021-06-10)

Chores

5.7.0 (2021-06-09)

🧾 Release notes

Chores

5.6.0 (2021-05-25)

🧾 Release notes

Bug Fixes

  • use friendly-errors-webpack-plugin package that satisfies webpack@5 peerDependency #31446 (1a32958)

5.5.0 (2021-05-12)

🧾 Release notes

Bug Fixes

Chores

5.4.1 (2021-05-05)

Chores

5.4.0 (2021-04-28)

🧾 Release notes

Bug Fixes

  • update minor and patch for gatsby-plugin-netlify-cms #30526 (55163ca)

5.3.0 (2021-04-14)

🧾 Release notes

Bug Fixes

5.2.0 (2021-03-30)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

5.1.0 (2021-03-16)

🧾 Release notes

Bug Fixes

Chores

5.0.0 (2021-03-02)

🧾 Release notes

Features

Bug Fixes

Other Changes

  • Move peerdeps to 16.9.0 & 17+ for react & react-dom #29735 (6b86b99)

4.10.1 (2021-04-29)

Bug Fixes

4.10.0 (2021-02-02)

🧾 Release notes

Bug Fixes

  • update minor and patch for gatsby-plugin-netlify-cms #29181 (95dd82e)

4.9.0 (2021-01-20)

🧾 Release notes

Bug Fixes

  • update vulnerable packages, include React 17 in peerDeps #28545 (18b5f30)
  • update minor and patch for gatsby-plugin-netlify-cms #28714 (b2729dd)

4.8.0 (2021-01-06)

🧾 Release notes

Chores

4.7.0 (2020-12-15)

🧾 Release notes

Chores

4.6.0 (2020-12-02)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

4.5.0 (2020-11-20)

🧾 Release notes

Chores

4.4.0 (2020-11-12)

🧾 Release notes

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.17 (2020-10-26)

Bug Fixes

  • gatsby-plugin-netlify-cms: Report URL with expected protocol and port (#27583) (1e5140f)

4.3.16 (2020-10-06)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.15 (2020-09-28)

Bug Fixes

  • deps: update minor and patch for gatsby-plugin-netlify-cms (#27129) (8e52f2a)

4.3.14 (2020-09-15)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.13 (2020-09-07)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.12 (2020-08-28)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.11 (2020-07-09)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.10 (2020-07-02)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.9 (2020-07-01)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.8 (2020-07-01)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.7 (2020-06-24)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.6 (2020-06-22)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.5 (2020-06-09)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.4 (2020-06-02)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.3 (2020-05-20)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.2 (2020-05-13)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.1 (2020-05-05)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.3.0 (2020-04-27)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.2.5 (2020-04-24)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.2.4 (2020-04-17)

Bug Fixes

4.2.3 (2020-04-16)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.2.2 (2020-03-30)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.2.1 (2020-03-23)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.2.0 (2020-03-20)

Features

4.1.44 (2020-03-20)

Bug Fixes

  • plugin-netlify-cms: use 'netlify-identity.js' instead of 'netlify-identity-widget.js' (#22387) (2205811)

4.1.43 (2020-03-18)

Bug Fixes

4.1.42 (2020-03-16)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.41 (2020-03-06)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.40 (2020-02-13)

Bug Fixes

  • gatsby-plugin-netlify-cms: Prevent injected CSS clashes (#21134) (ee833b9)

4.1.39 (2020-02-10)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.38 (2020-02-01)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.37 (2020-01-15)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.36 (2020-01-14)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.35 (2020-01-09)

Bug Fixes

  • netlify-cms-plugin: remove preview styles from global context (#20429) (a4e5fb9)

4.1.34 (2020-01-06)

Bug Fixes

  • plugin-netlify-cms: set global window vars required for Gatsby components (#20264) (06386b6)

4.1.33 (2019-12-10)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.32 (2019-12-10)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.31 (2019-12-02)

Bug Fixes

  • gatsby-plugin-netlify-cms: use require.resolve for modules hoisting. (#19860) (1eb1584)

4.1.30 (2019-11-28)

Bug Fixes

  • gatsby-plugin-netlify-cms: Mark relevant dependencies as externals (#19575) (8137255)

4.1.29 (2019-11-26)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.28 (2019-11-15)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.27 (2019-11-10)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.26 (2019-10-28)

Bug Fixes

4.1.25 (2019-10-14)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.24 (2019-10-14)

Bug Fixes

4.1.23 (2019-10-09)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.22 (2019-10-04)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.21 (2019-09-26)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.20 (2019-09-26)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.19 (2019-09-25)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.18 (2019-09-23)

Features

  • gatsby-plugin-netlify-cms: new option customizeWebpackConfig (#17442) (ffeed10)

4.1.17 (2019-09-20)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.16 (2019-09-16)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.15 (2019-09-13)

Bug Fixes

  • update minor updates in packages except react, babel and eslint (#17601) (588cd8f)

4.1.14 (2019-09-09)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.13 (2019-09-01)

Bug Fixes

  • update minor updates in packages except react, babel and eslint (#17254) (252d867)

4.1.12 (2019-08-29)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.11 (2019-08-23)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.10 (2019-08-23)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.9 (2019-08-22)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.8 (2019-08-20)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.7 (2019-08-16)

Features

  • gatsby-plugin-netlify-cms: Add includeRobots (#16662) (9a5f71d)

4.1.6 (2019-07-13)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.5 (2019-07-12)

Features

  • gatsby-plugin-netlify-cms: add custom favicon to cms (#14883) (2cf13ae)

4.1.4 (2019-07-12)

Bug Fixes

4.1.3 (2019-07-11)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.1.2 (2019-07-10)

Bug Fixes

  • gatsby-plugin-netlify-cms: remove dependency rule from custom compilation (#15591) (5886544)

Features

  • gatsby-plugin-netlify-cms: add deprecation message for netlify-cms (#15588) (7932414)

4.1.1 (2019-07-01)

Bug Fixes

  • gatsby-plugin-netlify-cms: exclude node_modules from cms (#15191) (a767854)

4.1.0 (2019-06-20)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.0.3 (2019-06-18)

Bug Fixes

  • gatsby-plugin-netlify-cms: fix minimizer settings (#14795) (7973165)

4.0.2 (2019-06-14)

Bug Fixes

  • gatsby-plugin-netlify-cms: Fix minimizer for production builds with gatsby-plugins-netlify-cms (#14783) (1520e4a)

4.0.1 (2019-05-09)

Note: Version bump only for package gatsby-plugin-netlify-cms

4.0.0 (2019-05-03)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.18 (2019-04-15)

Bug Fixes

  • gatsby-plugin-netlify-cms: fix hardcoded admin path for localhost (#13324) (1096514), closes #13291

3.0.17 (2019-03-26)

Features

  • gatsby-plugin-netlify-cms: support multiple cms module paths (#12672) (a17df90)

3.0.16 (2019-03-15)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.15 (2019-03-14)

Bug Fixes

  • gatsby: properly support --no-color for pretty-error (#12531) (e493538)

3.0.14 (2019-03-11)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.13 (2019-03-11)

Bug Fixes

  • gatsby-plugin-netlify-cms: Add listener for /admin (#12474) (617df24)

3.0.12 (2019-01-31)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.11 (2019-01-28)

Bug Fixes

  • gatsby-plugin-netlify-cms: exclude gatsby-webpack-stats-extractor from being called (#11288) (658e6d5)

3.0.10 (2019-01-23)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.9 (2018-11-29)

Bug Fixes

  • gatsby-plugin-netlify-cms: dynamically import netlify-identity-widget (#9565) (49100e9)

3.0.8 (2018-11-27)

Bug Fixes

3.0.7 (2018-11-08)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.6 (2018-11-06)

Bug Fixes

3.0.5 (2018-10-29)

Bug Fixes

  • gatsby-plugin-netlify-cms: automatic redirect (#9269) (c6dce1c)

3.0.4 (2018-10-18)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.3 (2018-09-24)

Bug Fixes

  • gatsby-plugin-netlify-cms: ensure login listener is added after logout (9b1a2e7)

3.0.2 (2018-09-18)

Bug Fixes

  • netlify-cms: redirect after git gateway login (#8286) (535b4a7)

3.0.1 (2018-09-18)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0 (2018-09-17)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-rc.5 (2018-09-11)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-rc.4 (2018-09-11)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-rc.3 (2018-09-11)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-rc.2 (2018-09-11)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-rc.1 (2018-08-29)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-rc.0 (2018-08-21)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-beta.4 (2018-08-08)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-beta.3 (2018-08-04)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-beta.2 (2018-08-01)

Note: Version bump only for package gatsby-plugin-netlify-cms

3.0.0-beta.1 (2018-07-31)

Bug Fixes

  • netlify-cms: fix identity default, auto register styles (#6871) (fba1b59)

2.0.0-beta.7 (2018-07-21)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.6 (2018-07-17)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.5 (2018-07-09)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.4 (2018-07-06)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.3 (2018-06-20)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.2 (2018-06-20)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.1 (2018-06-17)

Note: Version bump only for package gatsby-plugin-netlify-cms

2.0.0-beta.0 (2018-06-17)

Note: Version bump only for package gatsby-plugin-netlify-cms