Skip to content

Latest commit

 

History

History
159 lines (86 loc) · 6.9 KB

CHANGELOG.md

File metadata and controls

159 lines (86 loc) · 6.9 KB

astro-netlify-cms

0.5.4

Patch Changes

0.5.3

Patch Changes

0.5.2

Patch Changes

0.5.1

Patch Changes

0.5.0

Minor Changes

  • #53 40d0385 Thanks @delucis! - Don’t automatically inject @astrojs/react integration

    ⚠️ BREAKING CHANGE ⚠️

    Previously, this integration included @astrojs/react and injected it to Astro’s integrations config for you. This is no longer the case.

    If you are using React components and were relying on this, make sure to add the integration when upgrading. The simplest way to do this is to run:

    npx astro add react

0.4.0

Minor Changes

  • #48 a1a0002 Thanks @delucis! - Add support for importing npm packages via previewStyles config

    ⚠️ BREAKING CHANGE ⚠️

    This release changes how you import a local CSS file in previewStyles. These must now be prefixed with a leading /:

    {
      previewStyles: [
    -   'src/styles/base.css',
    +   '/src/styles/base.css',
      ],
    }

    This allows us to support importing CSS you may have installed from an npm module, for example importing font CSS from Fontsource:

    previewStyles: ["@fontsource/roboto"];

0.3.5

Patch Changes

  • #46 cdbf7d6 Thanks @delucis! - Include identity widget on admin route even when disableIdentityWidgetInjection is set to true

0.3.4

Patch Changes

0.3.3

Patch Changes

  • #38 9b2802c Thanks @delucis! - Restart Netlify CMS proxy server when astro.config reloads

0.3.2

Patch Changes

0.3.2-next.0

Patch Changes

0.3.1

Patch Changes

0.3.0

Minor Changes

  • #30 6757440 Thanks @delucis! - Refactor to use Astro’s built-in injectRoute helper to add the admin dashboard.

    Significantly simplifies the Vite plugin logic and should make future improvements easier to implement.

0.2.5

Patch Changes

0.2.4

Patch Changes

0.2.3

Patch Changes

0.2.2

Patch Changes

  • a7c4e43 Thanks @delucis! - Hot fix: remove comment clashing with over-eager whitespace collapsing by astro-compress

0.2.1

Patch Changes

  • cb7adcc Thanks @delucis! - Fix for compression support: end import statements with semi-colons

0.2.0

Minor Changes

  • 0726494 — Update to Astro v1 🚀

Patch Changes

  • f5b06ed — Run netlify-cms-proxy-server in shell on Windows (fixes #13)

0.1.0

Initial release