From c072d12e0a60705286640126975721fa68cb3333 Mon Sep 17 00:00:00 2001 From: "token-generator-app[bot]" <82042599+token-generator-app[bot]@users.noreply.github.com> Date: Mon, 25 Apr 2022 09:37:24 +0000 Subject: [PATCH 1/2] chore(main): release plugin-nextjs 4.4.3 --- .release-please-manifest.json | 2 +- plugin/CHANGELOG.md | 7 +++++++ plugin/package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2b534bd191..3d27ac14c1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "plugin": "4.4.2" + "plugin": "4.4.3" } diff --git a/plugin/CHANGELOG.md b/plugin/CHANGELOG.md index 4113f74f7a..8822c49cb9 100644 --- a/plugin/CHANGELOG.md +++ b/plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [4.4.3](https://github.com/netlify/netlify-plugin-nextjs/compare/plugin-nextjs-v4.4.2...plugin-nextjs-v4.4.3) (2022-04-25) + + +### Bug Fixes + +* pass x-middleware-rewrite header to client ([#1322](https://github.com/netlify/netlify-plugin-nextjs/issues/1322)) ([ed17658](https://github.com/netlify/netlify-plugin-nextjs/commit/ed176586916aef892d3c126e10ac0e0b97875510)) + ### [4.4.2](https://github.com/netlify/netlify-plugin-nextjs/compare/plugin-nextjs-v4.4.1...plugin-nextjs-v4.4.2) (2022-04-19) diff --git a/plugin/package.json b/plugin/package.json index 57430babdb..1b51aabd2f 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@netlify/plugin-nextjs", - "version": "4.4.2", + "version": "4.4.3", "description": "Run Next.js seamlessly on Netlify", "main": "lib/index.js", "files": [ From aa1d3b329cd3487c9ffe2878f9b7262b331ea931 Mon Sep 17 00:00:00 2001 From: Matt Kane Date: Mon, 25 Apr 2022 10:52:06 +0100 Subject: [PATCH 2/2] ci: don't use husky when publishing --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index e98e7815a8..81cb0c42fa 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -27,7 +27,7 @@ jobs: registry-url: 'https://registry.npmjs.org' if: ${{ steps.release.outputs.releases_created }} - name: Install dependencies - run: npm ci + run: CI=1 npm ci working-directory: plugin if: ${{ steps.release.outputs.releases_created }} - run: npm publish