diff --git a/.changeset/upset-states-fry.md b/.changeset/upset-states-fry.md deleted file mode 100644 index e834f6e..0000000 --- a/.changeset/upset-states-fry.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@axistaylor/nextpress-wordpress": patch -"@axistaylor/nextpress": patch ---- - -Scope WordPress CSS to [data-content] to prevent style leakage into the Next.js app layout. Proxied CSS files are wrapped in @scope([data-content]) at the middleware level, and inline styles from RenderStylesheets are scoped at render time. Add woocommerce_ajax_get_endpoint filter to route WC AJAX URLs through the /atx/{slug}/wc proxy. Add style-isolation e2e test suite and update existing tests for /atx/ proxy paths. diff --git a/packages/js/CHANGELOG.md b/packages/js/CHANGELOG.md index 29bb60a..e23498a 100644 --- a/packages/js/CHANGELOG.md +++ b/packages/js/CHANGELOG.md @@ -1,5 +1,11 @@ # @axistaylor/nextpress +## 1.0.1 + +### Patch Changes + +- [#12](https://github.com/AxisTaylor/nextpress/pull/12) [`3fe4d99`](https://github.com/AxisTaylor/nextpress/commit/3fe4d9928cdd5a5896fb467b82421fa3486d8b96) Thanks [@kidunot89](https://github.com/kidunot89)! - Scope WordPress CSS to [data-content] to prevent style leakage into the Next.js app layout. Proxied CSS files are wrapped in @scope([data-content]) at the middleware level, and inline styles from RenderStylesheets are scoped at render time. Add woocommerce_ajax_get_endpoint filter to route WC AJAX URLs through the /atx/{slug}/wc proxy. Add style-isolation e2e test suite and update existing tests for /atx/ proxy paths. + ## 1.0.0 ### Major Changes diff --git a/packages/js/package.json b/packages/js/package.json index 7395827..449d8f8 100644 --- a/packages/js/package.json +++ b/packages/js/package.json @@ -1,6 +1,6 @@ { "name": "@axistaylor/nextpress", - "version": "1.0.0", + "version": "1.0.1", "description": "Render WordPress Gutenberg content 1:1 in Next.js. Automatic script/stylesheet loading, middleware proxy, and multi-WordPress support.", "keywords": [ "wordpress", diff --git a/packages/wordpress/CHANGELOG.md b/packages/wordpress/CHANGELOG.md index 31817d4..4b37a47 100644 --- a/packages/wordpress/CHANGELOG.md +++ b/packages/wordpress/CHANGELOG.md @@ -1,5 +1,11 @@ # @axistaylor/nextpress-wordpress +## 1.0.3 + +### Patch Changes + +- [#12](https://github.com/AxisTaylor/nextpress/pull/12) [`3fe4d99`](https://github.com/AxisTaylor/nextpress/commit/3fe4d9928cdd5a5896fb467b82421fa3486d8b96) Thanks [@kidunot89](https://github.com/kidunot89)! - Scope WordPress CSS to [data-content] to prevent style leakage into the Next.js app layout. Proxied CSS files are wrapped in @scope([data-content]) at the middleware level, and inline styles from RenderStylesheets are scoped at render time. Add woocommerce_ajax_get_endpoint filter to route WC AJAX URLs through the /atx/{slug}/wc proxy. Add style-isolation e2e test suite and update existing tests for /atx/ proxy paths. + ## 1.0.2 ### Patch Changes diff --git a/packages/wordpress/nextpress.php b/packages/wordpress/nextpress.php index df1e199..36ac59b 100644 --- a/packages/wordpress/nextpress.php +++ b/packages/wordpress/nextpress.php @@ -3,7 +3,7 @@ * Plugin Name: NextPress * Plugin URI: https://github.com/axistaylor/nextpress * Description: Render WordPress Gutenberg content 1:1 in Next.js. Extends WPGraphQL with enqueued asset queries for headless WordPress implementations. - * Version: 1.0.2 + * Version: 1.0.3 * Author: AxisTaylor * Author URI: https://axistaylor.com * Text Domain: nextpress @@ -46,7 +46,7 @@ function constants() { // Plugin version. if ( ! defined( 'NEXTPRESS_VERSION' ) ) { - define( 'NEXTPRESS_VERSION', '1.0.2' ); + define( 'NEXTPRESS_VERSION', '1.0.3' ); } // Plugin Folder Path. if ( ! defined( 'NEXTPRESS_PLUGIN_DIR' ) ) { diff --git a/packages/wordpress/package.json b/packages/wordpress/package.json index 27efd9d..c6b1090 100644 --- a/packages/wordpress/package.json +++ b/packages/wordpress/package.json @@ -1,6 +1,6 @@ { "name": "@axistaylor/nextpress-wordpress", - "version": "1.0.2", + "version": "1.0.3", "private": true, "description": "A WPGraphQL extension. Adds the queries needed to render WP content on a 1:1 scale in a headless environment.", "author": "Geoff Taylor",