Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/upset-states-fry.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/js/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/wordpress/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/wordpress/nextpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion packages/wordpress/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down